Oval Definition:oval:org.opensuse.security:def:25277
Revision Date:2020-12-01Version:1
Title:Security update for git (Important)
Description:

This update for git fixes the following issues:

Security issue fixed:

- CVE-2020-5260: With a crafted URL that contains a newline in it, the credential helper machinery can be fooled to give credential information for a wrong host (bsc#1168930).

Non-security issue fixed:

git was updated to 2.26.0 for SHA256 support (bsc#1167890, jsc#SLE-11608):

- the xinetd snippet was removed - the System V init script for the git-daemon was replaced by a systemd service file of the same name.

git 2.26.0:

'git rebase' now uses a different backend that is based on the 'merge' machinery by default. The 'rebase.backend' configuration variable reverts to old behaviour when set to 'apply' * Improved handling of sparse checkouts * Improvements to many commands and internal features

git 2.25.1:

'git commit' now honors advise.statusHints * various updates, bug fixes and documentation updates

git 2.25.0:

The branch description ('git branch --edit-description') has been used to fill the body of the cover letters by the format-patch command; this has been enhanced so that the subject can also be filled. * A few commands learned to take the pathspec from the standard input or a named file, instead of taking it as the command line arguments, with the '--pathspec-from-file' option. * Test updates to prepare for SHA-2 transition continues. * Redo 'git name-rev' to avoid recursive calls. * When all files from some subdirectory were renamed to the root directory, the directory rename heuristics would fail to detect that as a rename/merge of the subdirectory to the root directory, which has been corrected. * HTTP transport had possible allocator/deallocator mismatch, which has been corrected.

git 2.24.1:

CVE-2019-1348: The --export-marks option of fast-import is exposed also via the in-stream command feature export-marks=... and it allows overwriting arbitrary paths (bsc#1158785) * CVE-2019-1349: on Windows, when submodules are cloned recursively, under certain circumstances Git could be fooled into using the same Git directory twice (bsc#1158787) * CVE-2019-1350: Incorrect quoting of command-line arguments allowed remote code execution during a recursive clone in conjunction with SSH URLs (bsc#1158788) * CVE-2019-1351: on Windows mistakes drive letters outside of the US-English alphabet as relative paths (bsc#1158789) * CVE-2019-1352: on Windows was unaware of NTFS Alternate Data Streams (bsc#1158790) * CVE-2019-1353: when run in the Windows Subsystem for Linux while accessing a working directory on a regular Windows drive, none of the NTFS protections were active (bsc#1158791) * CVE-2019-1354: on Windows refuses to write tracked files with filenames that contain backslashes (bsc#1158792) * CVE-2019-1387: Recursive clones vulnerability that is caused by too-lax validation of submodule names, allowing very targeted attacks via remote code execution in recursive clones (bsc#1158793) * CVE-2019-19604: a recursive clone followed by a submodule update could execute code contained within the repository without the user explicitly having asked for that (bsc#1158795)

- Fix building with asciidoctor and without DocBook4 stylesheets.

git 2.24.0

The command line parser learned '--end-of-options' notation. * A mechanism to affect the default setting for a (related) group of configuration variables is introduced. * 'git fetch' learned '--set-upstream' option to help those who first clone from their private fork they intend to push to, add the true upstream via 'git remote add' and then 'git fetch' from it. * fixes and improvements to UI, workflow and features, bash completion fixes * part of it merged upstream * the Makefile attempted to download some documentation, banned

git 2.23.0:

The '--base' option of 'format-patch' computed the patch-ids for prerequisite patches in an unstable way, which has been updated to compute in a way that is compatible with 'git patch-id --stable'. * The 'git log' command by default behaves as if the --mailmap option was given. * fixes and improvements to UI, workflow and features

git 2.22.1:

A relative pathname given to 'git init --template= ' ought to be relative to the directory 'git init' gets invoked in, but it instead was made relative to the repository, which has been corrected. * 'git worktree add' used to fail when another worktree connected to the same repository was corrupt, which has been corrected. * 'git am -i --resolved' segfaulted after trying to see a commit as if it were a tree, which has been corrected. * 'git merge --squash' is designed to update the working tree and the index without creating the commit, and this cannot be countermanded by adding the '--commit' option; the command now refuses to work when both options are given. * Update to Unicode 12.1 width table. * 'git request-pull' learned to warn when the ref we ask them to pull from in the local repository and in the published repository are different. * 'git fetch' into a lazy clone forgot to fetch base objects that are necessary to complete delta in a thin packfile, which has been corrected. * The URL decoding code has been updated to avoid going past the end of the string while parsing %-- sequence. * 'git clean' silently skipped a path when it cannot lstat() it; now it gives a warning. * 'git rm' to resolve a conflicted path leaked an internal message 'needs merge' before actually removing the path, which was confusing. This has been corrected. * Many more bugfixes and code cleanups.

- removal of SuSEfirewall2 service, since SuSEfirewall2 has been replaced by firewalld, see [1]. [1]: https://lists.opensuse.org/opensuse-factory/2019-01/msg00490.html

git 2.22.0:

The filter specification '--filter=sparse:path=' used to create a lazy/partial clone has been removed. Using a blob that is part of the project as sparse specification is still supported with the '--filter=sparse:oid=' option * 'git checkout --no-overlay' can be used to trigger a new mode of checking out paths out of the tree-ish, that allows paths that match the pathspec that are in the current index and working tree and are not in the tree-ish. * Four new configuration variables {author,committer}.{name,email} have been introduced to override user.{name,email} in more specific cases. * 'git branch' learned a new subcommand '--show-current'. * The command line completion (in contrib/) has been taught to complete more subcommand parameters. * The completion helper code now pays attention to repository-local configuration (when available), which allows --list-cmds to honour a repository specific setting of completion.commands, for example. * The list of conflicted paths shown in the editor while concluding a conflicted merge was shown above the scissors line when the clean-up mode is set to 'scissors', even though it was commented out just like the list of updated paths and other information to help the user explain the merge better. * 'git rebase' that was reimplemented in C did not set ORIG_HEAD correctly, which has been corrected. * 'git worktree add' used to do a 'find an available name with stat and then mkdir', which is race-prone. This has been fixed by using mkdir and reacting to EEXIST in a loop.

- update git-web AppArmor profile for bash and tar usrMerge (bsc#1132350)

git 2.21.0:

Historically, the '-m' (mainline) option can only be used for 'git cherry-pick' and 'git revert' when working with a merge commit. This version of Git no longer warns or errors out when working with a single-parent commit, as long as the argument to the '-m' option is 1 (i.e. it has only one parent, and the request is to pick or revert relative to that first parent). Scripts that relied on the behaviour may get broken with this change. * Small fixes and features for fast-export and fast-import. * The 'http.version' configuration variable can be used with recent enough versions of cURL library to force the version of HTTP used to talk when fetching and pushing. * 'git push $there $src:$dst' rejects when $dst is not a fully qualified refname and it is not clear what the end user meant. * Update 'git multimail' from the upstream. * A new date format '--date=human' that morphs its output depending on how far the time is from the current time has been introduced. '--date=auto:human' can be used to use this new format (or any existing format) when the output is going to the pager or to the terminal, and otherwise the default format.

- Fix worktree creation race (bsc#1114225).

git 2.20.1:

portability fixes * 'git help -a' did not work well when an overly long alias was defined * no longer squelched an error message when the run_command API failed to run a missing command

git 2.20.0:

'git help -a' now gives verbose output (same as 'git help -av'). Those who want the old output may say 'git help --no-verbose -a'.. * 'git send-email' learned to grab address-looking string on any trailer whose name ends with '-by'. * 'git format-patch' learned new '--interdiff' and '--range-diff' options to explain the difference between this version and the previous attempt in the cover letter (or after the three-dashes as a comment). * Developer builds now use -Wunused-function compilation option. * Fix a bug in which the same path could be registered under multiple worktree entries if the path was missing (for instance, was removed manually). Also, as a convenience, expand the number of cases in which --force is applicable. * The overly large Documentation/config.txt file have been split into million little pieces. This potentially allows each individual piece to be included into the manual page of the command it affects more easily. * Malformed or crafted data in packstream can make our code attempt to read or write past the allocated buffer and abort, instead of reporting an error, which has been fixed. * Fix for a long-standing bug that leaves the index file corrupt when it shrinks during a partial commit. * 'git merge' and 'git pull' that merges into an unborn branch used to completely ignore '--verify-signatures', which has been corrected. * ...and much more features and fixes

- fix CVE-2018-19486 (bsc#1117257)

git 2.19.2:

various bug fixes for multiple subcommands and operations

git 2.19.1:

CVE-2018-17456: Specially crafted .gitmodules files may have allowed arbitrary code execution when the repository is cloned with --recurse-submodules (bsc#1110949)

git 2.19.0:

'git diff' compares the index and the working tree. For paths added with intent-to-add bit, the command shows the full contents of them as added, but the paths themselves were not marked as new files. They are now shown as new by default. * 'git apply' learned the '--intent-to-add' option so that an otherwise working-tree-only application of a patch will add new paths to the index marked with the 'intent-to-add' bit. * 'git grep' learned the '--column' option that gives not just the line number but the column number of the hit. * The '-l' option in 'git branch -l' is an unfortunate short-hand for '--create-reflog', but many users, both old and new, somehow expect it to be something else, perhaps '--list'. This step warns when '-l' is used as a short-hand for '--create-reflog' and warns about the future repurposing of the it when it is used. * The userdiff pattern for .php has been updated. * The content-transfer-encoding of the message 'git send-email' sends out by default was 8bit, which can cause trouble when there is an overlong line to bust RFC 5322/2822 limit. A new option 'auto' to automatically switch to quoted-printable when there is such a line in the payload has been introduced and is made the default. * 'git checkout' and 'git worktree add' learned to honor checkout.defaultRemote when auto-vivifying a local branch out of a remote tracking branch in a repository with multiple remotes that have tracking branches that share the same names. (merge 8d7b558bae ab/checkout-default-remote later to maint). * 'git grep' learned the '--only-matching' option. * 'git rebase --rebase-merges' mode now handles octopus merges as well. * Add a server-side knob to skip commits in exponential/fibbonacci stride in an attempt to cover wider swath of history with a smaller number of iterations, potentially accepting a larger packfile transfer, instead of going back one commit a time during common ancestor discovery during the 'git fetch' transaction. (merge 42cc7485a2 jt/fetch-negotiator-skipping later to maint). * A new configuration variable core.usereplacerefs has been added, primarily to help server installations that want to ignore the replace mechanism altogether. * Teach 'git tag -s' etc. a few configuration variables (gpg.format that can be set to 'openpgp' or 'x509', and gpg..program that is used to specify what program to use to deal with the format) to allow x.509 certs with CMS via 'gpgsm' to be used instead of openpgp via 'gnupg'. * Many more strings are prepared for l10n. * 'git p4 submit' learns to ask its own pre-submit hook if it should continue with submitting. * The test performed at the receiving end of 'git push' to prevent bad objects from entering repository can be customized via receive.fsck.* configuration variables; we now have gained a counterpart to do the same on the 'git fetch' side, with fetch.fsck.* configuration variables. * 'git pull --rebase=interactive' learned 'i' as a short-hand for 'interactive'. * 'git instaweb' has been adjusted to run better with newer Apache on RedHat based distros. * 'git range-diff' is a reimplementation of 'git tbdiff' that lets us compare individual patches in two iterations of a topic. * The sideband code learned to optionally paint selected keywords at the beginning of incoming lines on the receiving end. * 'git branch --list' learned to take the default sort order from the 'branch.sort' configuration variable, just like 'git tag --list' pays attention to 'tag.sort'. * 'git worktree' command learned '--quiet' option to make it less verbose.

git 2.18.0:

improvements to rename detection logic * When built with more recent cURL, GIT_SSL_VERSION can now specify 'tlsv1.3' as its value. * 'git mergetools' learned talking to guiffy. * various other workflow improvements and fixes * performance improvements and other developer visible fixes

Update to git 2.16.4: security fix release

git 2.17.1:

Submodule 'names' come from the untrusted .gitmodules file, but we blindly append them to $GIT_DIR/modules to create our on-disk repo paths. This means you can do bad things by putting '../' into the name. We now enforce some rules for submodule names which will cause Git to ignore these malicious names (CVE-2018-11235, bsc#1095219) * It was possible to trick the code that sanity-checks paths on NTFS into reading random piece of memory (CVE-2018-11233, bsc#1095218) * Support on the server side to reject pushes to repositories that attempt to create such problematic .gitmodules file etc. as tracked contents, to help hosting sites protect their customers by preventing malicious contents from spreading.

git 2.17.0:

'diff' family of commands learned '--find-object=' option to limit the findings to changes that involve the named object. * 'git format-patch' learned to give 72-cols to diffstat, which is consistent with other line length limits the subcommand uses for its output meant for e-mails. * The log from 'git daemon' can be redirected with a new option; one relevant use case is to send the log to standard error (instead of syslog) when running it from inetd. * 'git rebase' learned to take '--allow-empty-message' option. * 'git am' has learned the '--quit' option, in addition to the existing '--abort' option; having the pair mirrors a few other commands like 'rebase' and 'cherry-pick'. * 'git worktree add' learned to run the post-checkout hook, just like 'git clone' runs it upon the initial checkout. * 'git tag' learned an explicit '--edit' option that allows the message given via '-m' and '-F' to be further edited. * 'git fetch --prune-tags' may be used as a handy short-hand for getting rid of stale tags that are locally held. * The new '--show-current-patch' option gives an end-user facing way to get the diff being applied when 'git rebase' (and 'git am') stops with a conflict. * 'git add -p' used to offer '/' (look for a matching hunk) as a choice, even there was only one hunk, which has been corrected. Also the single-key help is now given only for keys that are enabled (e.g. help for '/' won't be shown when there is only one hunk). * Since Git 1.7.9, 'git merge' defaulted to --no-ff (i.e. even when the side branch being merged is a descendant of the current commit, create a merge commit instead of fast-forwarding) when merging a tag object. This was appropriate default for integrators who pull signed tags from their downstream contributors, but caused an unnecessary merges when used by downstream contributors who habitually 'catch up' their topic branches with tagged releases from the upstream. Update 'git merge' to default to --no-ff only when merging a tag object that does *not* sit at its usual place in refs/tags/ hierarchy, and allow fast-forwarding otherwise, to mitigate the problem. * 'git status' can spend a lot of cycles to compute the relation between the current branch and its upstream, which can now be disabled with '--no-ahead-behind' option. * 'git diff' and friends learned funcname patterns for Go language source files. * 'git send-email' learned '--reply-to=
' option. * Funcname pattern used for C# now recognizes 'async' keyword. * In a way similar to how 'git tag' learned to honor the pager setting only in the list mode, 'git config' learned to ignore the pager setting when it is used for setting values (i.e. when the purpose of the operation is not to 'show'). - Use %license instead of %doc [bsc#1082318]

git 2.16.3:

'git status' after moving a path in the working tree (hence making it appear 'removed') and then adding with the -N option (hence making that appear 'added') detected it as a rename, but did not report the old and new pathnames correctly. * 'git commit --fixup' did not allow '-m' option to be used at the same time; allow it to annotate resulting commit with more text. * When resetting the working tree files recursively, the working tree of submodules are now also reset to match. * Fix for a commented-out code to adjust it to a rather old API change around object ID. * When there are too many changed paths, 'git diff' showed a warning message but in the middle of a line. * The http tracing code, often used to debug connection issues, learned to redact potentially sensitive information from its output so that it can be more safely sharable. * Crash fix for a corner case where an error codepath tried to unlock what it did not acquire lock on. * The split-index mode had a few corner case bugs fixed. * Assorted fixes to 'git daemon'. * Completion of 'git merge -s' (in contrib/) did not work well in non-C locale. * Workaround for segfault with more recent versions of SVN. * Recently introduced leaks in fsck have been plugged. * Travis CI integration now builds the executable in 'script' phase to follow the established practice, rather than during 'before_script' phase. This allows the CI categorize the failures better ('failed' is project's fault, 'errored' is build environment's).

- Drop superfluous xinetd snippet, no longer used (bsc#1084460)

- Build with asciidoctor for the recent distros (bsc#1075764)

- Move %{?systemd_requires} to daemon subpackage - Create subpackage for libsecret credential helper.

git 2.16.2:

An old regression in 'git describe --all $annotated_tag^0' has been fixed. * 'git svn dcommit' did not take into account the fact that a svn+ssh:// URL with a username@ (typically used for pushing) refers to the same SVN repository without the username@ and failed when svn.pushmergeinfo option is set. * 'git merge -Xours/-Xtheirs' learned to use our/their version when resolving a conflicting updates to a symbolic link. * 'git clone $there $here' is allowed even when here directory exists as long as it is an empty directory, but the command incorrectly removed it upon a failure of the operation. * 'git stash -- ' incorrectly blew away untracked files in the directory that matched the pathspec, which has been corrected. * 'git add -p' was taught to ignore local changes to submodules as they do not interfere with the partial addition of regular changes anyway.

git 2.16.1:

'git clone' segfaulted when cloning a project that happens to track two paths that differ only in case on a case insensitive filesystem

git 2.16.0 (CVE-2017-15298, bsc#1063412):

See https://raw.github.com/git/git/master/Documentation/RelNotes/2.16.0.txt

git 2.15.1:

fix 'auto' column output * fixes to moved lines diffing * documentation updates * fix use of repositories immediately under the root directory * improve usage of libsecret * fixes to various error conditions in git commands

- Rewrite from sysv init to systemd unit file for git-daemon (bsc#1069803)

- Replace references to /var/adm/fillup-templates with new %_fillupdir macro (bsc#1069468)

- split off p4 to a subpackage (bsc#1067502)

- Build with the external libsha1detectcoll (bsc#1042644)

git 2.15.0:

Use of an empty string as a pathspec element that is used for 'everything matches' is still warned and Git asks users to use a more explicit '.' for that instead. Removal scheduled for 2.16 * Git now avoids blindly falling back to '.git' when the setup sequence said we are _not_ in Git repository (another corner case removed) * 'branch --set-upstream' was retired, deprecated since 1.8 * many other improvements and updates

git 2.14.3:

git send-email understands more cc: formats * fixes so gitk --bisect * git commit-tree fixed to handle -F file alike * Prevent segfault in 'git cat-file --textconv' * Fix function header parsing for HTML * Various small fixes to user commands and and internal functions

git 2.14.2:

fixes to color output * http.{sslkey,sslCert} now interpret '~[username]/' prefix * fixes to walking of reflogs via 'log -g' and friends * various fixes to output correctness * 'git push --recurse-submodules $there HEAD:$target' is now propagated down to the submodules * 'git clone --recurse-submodules --quiet' c$how propagates quiet option down to submodules. * 'git svn --localtime' correctness fixes * 'git grep -L' and 'git grep --quiet -L' now report same exit code * fixes to 'git apply' when converting line endings * Various Perl scripts did not use safe_pipe_capture() instead of backticks, leaving them susceptible to end-user input. CVE-2017-14867 bsc#1061041 * 'git cvsserver' no longer is invoked by 'git daemon' by default

git 2.14.1 (bsc#1052481): * Security fix for CVE-2017-1000117: A malicious third-party can give a crafted 'ssh://...' URL to an unsuspecting victim, and an attempt to visit the URL can result in any program that exists on the victim's machine being executed. Such a URL could be placed in the .gitmodules file of a malicious project, and an unsuspecting victim could be tricked into running 'git clone --recurse-submodules' to trigger the vulnerability. * A 'ssh://...' URL can result in a 'ssh' command line with a hostname that begins with a dash '-', which would cause the 'ssh' command to instead (mis)treat it as an option. This is now prevented by forbidding such a hostname (which should not impact any real-world usage). * Similarly, when GIT_PROXY_COMMAND is configured, the command is run with host and port that are parsed out from 'ssh://...' URL; a poorly written GIT_PROXY_COMMAND could be tricked into treating a string that begins with a dash '-' as an option. This is now prevented by forbidding such a hostname and port number (again, which should not impact any real-world usage). * In the same spirit, a repository name that begins with a dash '-' is also forbidden now.

git 2.14.0:

Use of an empty string as a pathspec element that is used for 'everything matches' is deprecated, use '.' * Avoid blindly falling back to '.git' when the setup sequence indicates operation not on a Git repository * 'indent heuristics' are now the default. * Builds with pcre2 * Many bug fixes, improvements and updates

git 2.13.4:

Update the character width tables. * Fix an alias that contained an uppercase letter * Progress meter fixes * git gc concurrency fixes

git 2.13.3:

various internal bug fixes * Fix a regression to 'git rebase -i' * Correct unaligned 32-bit access in pack-bitmap code * Tighten error checks for invalid 'git apply' input * The split index code did not honor core.sharedrepository setting correctly * Fix 'git branch --list' handling of color.branch.local

git 2.13.2:

'collision detecting' SHA-1 update for platform fixes * 'git checkout --recurse-submodules' did not quite work with a submodule that itself has submodules. * The 'run-command' API implementation has been made more robust against dead-locking in a threaded environment. * 'git clean -d' now only cleans ignored files with '-x' * 'git status --ignored' did not list ignored and untracked files without '-uall' * 'git pull --rebase --autostash' didn't auto-stash when the local history fast-forwards to the upstream. * 'git describe --contains' gives as much weight to lightweight tags as annotated tags * Fix 'git stash push ' from a subdirectory

git 2.13.1:

Setting 'log.decorate=false' in the configuration file did not take effect in v2.13, which has been corrected. * corrections to documentation and command help output * garbage collection fixes * memory leaks fixed * receive-pack now makes sure that the push certificate records the same set of push options used for pushing * shell completion corrections for git stash * fix 'git clone --config var=val' with empty strings * internal efficiency improvements * Update sha1 collision detection code for big-endian platforms and platforms not supporting unaligned fetches

- Fix packaging of documentation

git 2.13.0:

* empty string as a pathspec element for 'everything matches' is still warned, for future removal. * deprecated argument order 'git merge HEAD ...' was removed * default location '~/.git-credential-cache/socket' for the socket used to communicate with the credential-cache daemon moved to '~/.cache/git/credential/socket'. * now avoid blindly falling back to '.git' when the setup sequence indicated otherwise * many workflow features, improvements and bug fixes * add a hardened implementation of SHA1 in response to practical collision attacks (CVE-2005-4900, bsc#1042640) * CVE-2017-8386: On a server running git-shell as login shell to restrict user to git commands, remote users may have been able to have git service programs spawn an interactive pager and thus escape the shell restrictions. (bsc#1038395)

Changes in pcre2:

- Include the libraries, development and tools packages. git uses only libpcre2-8 so far, but this allows further application usage of pcre2.

Family:unixClass:patch
Status:Reference(s):1005776
1006867
1012382
1012829
1027054
1031717
1034503
1035432
1040105
1042090
1042286
1043353
1043354
1043441
1043960
1045330
1046303
1046856
1047908
1050037
1050072
1050098
1050100
1050244
1050635
1051442
1051510
1051858
1052470
1052708
1052717
1052721
1052768
1052777
1052781
1054600
1055068
1055120
1055374
1055455
1055456
1057000
1058115
1060162
1061840
1062752
1062840
1065600
1065615
1065729
1066223
1066674
1067118
1067906
1068032
1068273
1068569
1069135
1071306
1071892
1071995
1072362
1072363
1072689
1072739
1072865
1072901
1073401
1074120
1074125
1074185
1074198
1074309
1074426
1075087
1075939
1076021
1076051
1076282
1076830
1077285
1077513
1077560
1077779
1078248
1078583
1078609
1078672
1078673
1078787
1079029
1079038
1079384
1079524
1079989
1080014
1080263
1080344
1080360
1080364
1080384
1080464
1080774
1080809
1080813
1080851
1081134
1081431
1081491
1081498
1081500
1081512
1081671
1082223
1082299
1082478
1082555
1082653
1082795
1082864
1082897
1082979
1082993
1083494
1083548
1083647
1084610
1084760
1084831
1085030
1085053
1085107
1085224
1085239
1085535
1086196
1086301
1086313
1086314
1088810
1089350
1091800
1094825
1095805
1097755
1100132
1103356
1103925
1103989
1103990
1103991
1104124
1104353
1104427
1104731
1104745
1104824
1105025
1105392
1105428
1106105
1106110
1106237
1106240
1107256
1107385
1107866
1108377
1108468
1109330
1109739
1109772
1109806
1109818
1109837
1109907
1109911
1109915
1109919
1109951
1110006
1110998
1111040
1111062
1111174
1111506
1111666
1111696
1111809
1111921
1111983
1112128
1112170
1112173
1112178
1112208
1112219
1112221
1112246
1112372
1112374
1112504
1112514
1112554
1112708
1112710
1112711
1112712
1112713
1112731
1112732
1112733
1112734
1112735
1112736
1112738
1112739
1112740
1112741
1112743
1112745
1112746
1112878
1112894
1112899
1112902
1112903
1112905
1112906
1112907
1112963
1113257
1113284
1113295
1113408
1113412
1113501
1113667
1113677
1113722
1113751
1113769
1113780
1113956
1113972
1114015
1114178
1114279
1114385
1114576
1114577
1114578
1114579
1114580
1114581
1114582
1114583
1114584
1114585
1114648
1114685
1114839
1115074
1115269
1115431
1115433
1115440
1115567
1115709
1115976
1116183
1116692
1116693
1116698
1116699
1116700
1116701
1116862
1116863
1116876
1116877
1116878
1116891
1116895
1116899
1116950
1117168
1117172
1117174
1117181
1117184
1117188
1117189
1117349
1117561
1117788
1117789
1117790
1117791
1117792
1117794
1117795
1117796
1117798
1117799
1117801
1117802
1117803
1117804
1117805
1117806
1117807
1117808
1117815
1117816
1117817
1117818
1117819
1117820
1117821
1117822
1118102
1118136
1118137
1118138
1118140
1118152
1118316
1118661
1123328
1126206
1127371
1127611
1127682
1129059
1129551
1133021
1133147
1133313
1134218
1134973
1137332
1138287
1140025
1142685
1143959
1144333
1151910
1151927
1153535
1153917
1154243
1154366
1154601
1155331
1155334
1156259
1156286
1156609
1157155
1157157
1157424
1157480
1157692
1157853
1157966
1158013
1158021
1158026
1158071
1158819
1159028
1159096
1159271
1159297
1159377
1159394
1159483
1159484
1159500
1159569
1159588
1159841
1159908
1159909
1159910
1159911
1159955
1160147
1160195
1160210
1160211
1160218
1160433
1160442
1160469
1160470
1160476
1160560
1160618
1160678
1160755
1160756
1160784
1160787
1160802
1160803
1160804
1160917
1160966
1160979
1161087
1161243
1161360
1161472
1161514
1161518
1161522
1161523
1161549
1161552
1161674
1161702
1161875
1161907
1161931
1161933
1161934
1161935
1161936
1161937
1162028
1162067
1162109
1162139
1162171
1162557
1162617
1162618
1162619
1162623
1162928
1162943
1163206
1163383
1163384
1163762
1163774
1163836
1163840
1163841
1163842
1163843
1163844
1163845
1163846
1163849
1163850
1163851
1163852
1163853
1163855
1163856
1163857
1163858
1163859
1163860
1163861
1163862
1163863
1163867
1163869
1163880
1164069
1164098
1164314
1164315
1164471
1165629
1167890
1168930
1171988
1172428
1172963
1173798
1173954
1174205
1174689
1174699
1174757
1174784
1174978
1175112
1175127
1175213
1175228
1175515
1175518
1175691
1175749
1176069
1273265
1355039
1356558
1356824
1357090
1359547
1360309
1363396
1364283
1365602
1366595
1368490
863764
958331
966328
975772
983145
CVE-2006-3747
CVE-2006-5752
CVE-2007-1862
CVE-2007-1863
CVE-2007-3304
CVE-2007-3820
CVE-2007-3847
CVE-2007-4224
CVE-2007-4225
CVE-2007-4465
CVE-2007-5000
CVE-2007-6388
CVE-2007-6420
CVE-2007-6421
CVE-2007-6422
CVE-2008-0005
CVE-2008-0386
CVE-2008-1671
CVE-2008-1678
CVE-2008-1686
CVE-2008-2364
CVE-2008-2939
CVE-2009-0386
CVE-2009-0387
CVE-2009-0397
CVE-2009-0689
CVE-2009-1191
CVE-2009-1195
CVE-2009-1890
CVE-2009-1932
CVE-2009-3094
CVE-2009-3095
CVE-2010-0408
CVE-2010-0434
CVE-2011-1168
CVE-2015-7542
CVE-2017-1000083
CVE-2017-10995
CVE-2017-11505
CVE-2017-11525
CVE-2017-11526
CVE-2017-11539
CVE-2017-11639
CVE-2017-11750
CVE-2017-12565
CVE-2017-12640
CVE-2017-12641
CVE-2017-12643
CVE-2017-12671
CVE-2017-12673
CVE-2017-12676
CVE-2017-12935
CVE-2017-13059
CVE-2017-13141
CVE-2017-13142
CVE-2017-13147
CVE-2017-13166
CVE-2017-14103
CVE-2017-14649
CVE-2017-15218
CVE-2017-15951
CVE-2017-16533
CVE-2017-16644
CVE-2017-16912
CVE-2017-16913
CVE-2017-17504
CVE-2017-17681
CVE-2017-17879
CVE-2017-17884
CVE-2017-17914
CVE-2017-17975
CVE-2017-18008
CVE-2017-18027
CVE-2017-18029
CVE-2017-18208
CVE-2017-18224
CVE-2017-5470
CVE-2017-5472
CVE-2017-7749
CVE-2017-7750
CVE-2017-7751
CVE-2017-7752
CVE-2017-7754
CVE-2017-7756
CVE-2017-7757
CVE-2017-7758
CVE-2017-7763
CVE-2017-7764
CVE-2017-7765
CVE-2017-7771
CVE-2017-7772
CVE-2017-7773
CVE-2017-7774
CVE-2017-7775
CVE-2017-7776
CVE-2017-7777
CVE-2017-7778
CVE-2017-9261
CVE-2017-9262
CVE-2018-1000026
CVE-2018-1068
CVE-2018-18281
CVE-2018-18386
CVE-2018-18445
CVE-2018-18710
CVE-2018-19824
CVE-2018-5246
CVE-2018-5685
CVE-2018-8087
CVE-2019-14615
CVE-2019-14896
CVE-2019-14897
CVE-2019-16994
CVE-2019-18808
CVE-2019-19036
CVE-2019-19045
CVE-2019-19054
CVE-2019-19318
CVE-2019-19319
CVE-2019-19447
CVE-2019-19767
CVE-2019-19927
CVE-2019-19965
CVE-2019-19966
CVE-2019-20054
CVE-2019-20095
CVE-2019-20096
CVE-2019-5787
CVE-2019-5788
CVE-2019-5789
CVE-2019-5790
CVE-2019-5791
CVE-2019-5792
CVE-2019-5793
CVE-2019-5794
CVE-2019-5795
CVE-2019-5796
CVE-2019-5797
CVE-2019-5798
CVE-2019-5799
CVE-2019-5800
CVE-2019-5801
CVE-2019-5802
CVE-2019-5803
CVE-2019-5804
CVE-2019-5805
CVE-2019-5806
CVE-2019-5807
CVE-2019-5808
CVE-2019-5809
CVE-2019-5810
CVE-2019-5811
CVE-2019-5812
CVE-2019-5813
CVE-2019-5814
CVE-2019-5815
CVE-2019-5816
CVE-2019-5817
CVE-2019-5818
CVE-2019-5819
CVE-2019-5820
CVE-2019-5821
CVE-2019-5822
CVE-2019-5823
CVE-2019-5824
CVE-2019-5827
CVE-2019-5828
CVE-2019-5829
CVE-2019-5830
CVE-2019-5831
CVE-2019-5832
CVE-2019-5833
CVE-2019-5834
CVE-2019-5835
CVE-2019-5836
CVE-2019-5837
CVE-2019-5838
CVE-2019-5839
CVE-2019-5840
CVE-2019-5842
CVE-2020-10135
CVE-2020-14314
CVE-2020-14331
CVE-2020-14356
CVE-2020-14386
CVE-2020-16166
CVE-2020-1749
CVE-2020-24394
CVE-2020-5260
CVE-2020-7053
CVE-2020-8428
CVE-2020-8648
CVE-2020-8992
openSUSE-SU-2017:1579-1
openSUSE-SU-2019:1666-1
SUSE-SU-2017:2390-1
SUSE-SU-2018:0072-1
SUSE-SU-2018:0349-1
SUSE-SU-2018:0785-1
SUSE-SU-2018:4069-1
SUSE-SU-2020:0580-1
SUSE-SU-2020:0992-1
Platform(s):openSUSE Leap 42.1
openSUSE Leap 42.2
openSUSE Leap 42.3
SUSE Linux Enterprise Desktop 11 SP2
SUSE Linux Enterprise Desktop 11 SP3
SUSE Linux Enterprise Desktop 12
SUSE Linux Enterprise Desktop 12 SP1
SUSE Linux Enterprise Desktop 12 SP2
SUSE Linux Enterprise Desktop 12 SP3
SUSE Linux Enterprise High Availability Extension 11 SP3
SUSE Linux Enterprise High Availability Extension 11 SP4
SUSE Linux Enterprise Point of Sale 11 SP3
SUSE Linux Enterprise Real Time Extension 11 SP4
SUSE Linux Enterprise Server 11
SUSE Linux Enterprise Server 11 SP1
SUSE Linux Enterprise Server 11 SP1-LTSS
SUSE Linux Enterprise Server 11 SP1-TERADATA
SUSE Linux Enterprise Server 11 SP2
SUSE Linux Enterprise Server 11 SP2-LTSS
SUSE Linux Enterprise Server 11 SP3
SUSE Linux Enterprise Server 11 SP3-CLIENT-TOOLS
SUSE Linux Enterprise Server 11 SP3-LTSS
SUSE Linux Enterprise Server 11 SP3-TERADATA
SUSE Linux Enterprise Server 11 SP4
SUSE Linux Enterprise Server 11 SP4-CLIENT-TOOLS
SUSE Linux Enterprise Server 11-SECURITY
SUSE Linux Enterprise Server 12
SUSE Linux Enterprise Server 12 SP1
SUSE Linux Enterprise Server 12 SP1-LTSS
SUSE Linux Enterprise Server 12 SP2
SUSE Linux Enterprise Server 12 SP2-BCL
SUSE Linux Enterprise Server 12 SP2-ESPOS
SUSE Linux Enterprise Server 12 SP2-LTSS
SUSE Linux Enterprise Server 12 SP3
SUSE Linux Enterprise Server 12 SP4
SUSE Linux Enterprise Server 12 SP4-ESPOS
SUSE Linux Enterprise Server 12-LTSS
SUSE Linux Enterprise Server for SAP Applications 11
SUSE Linux Enterprise Server for SAP Applications 11 SP1-LTSS
SUSE Linux Enterprise Server for SAP Applications 11 SP1-TERADATA
SUSE Linux Enterprise Server for SAP Applications 11 SP2
SUSE Linux Enterprise Server for SAP Applications 11 SP2-LTSS
SUSE Linux Enterprise Server for SAP Applications 11 SP3
SUSE Linux Enterprise Server for SAP Applications 11 SP3-CLIENT-TOOLS
SUSE Linux Enterprise Server for SAP Applications 11 SP3-LTSS
SUSE Linux Enterprise Server for SAP Applications 11 SP3-TERADATA
SUSE Linux Enterprise Server for SAP Applications 11 SP4
SUSE Linux Enterprise Server for SAP Applications 11 SP4-CLIENT-TOOLS
SUSE Linux Enterprise Server for SAP Applications 12
SUSE Linux Enterprise Server for SAP Applications 12 SP1
SUSE Linux Enterprise Server for SAP Applications 12 SP1-LTSS
SUSE Linux Enterprise Server for SAP Applications 12 SP2
SUSE Linux Enterprise Server for SAP Applications 12 SP2-BCL
SUSE Linux Enterprise Server for SAP Applications 12 SP2-ESPOS
SUSE Linux Enterprise Server for SAP Applications 12 SP2-LTSS
SUSE Linux Enterprise Server for SAP Applications 12 SP3
SUSE Linux Enterprise Server for SAP Applications 12 SP4
SUSE Linux Enterprise Server for SAP Applications 12 SP4-ESPOS
SUSE Linux Enterprise Server for SAP Applications 12-LTSS
SUSE Linux Enterprise Server for VMWare 11 SP2
SUSE Linux Enterprise Server for VMWare 11 SP3
SUSE Linux Enterprise Software Development Kit 11 SP2
SUSE Linux Enterprise Software Development Kit 11 SP3
SUSE Linux Enterprise Software Development Kit 11 SP4
SUSE Linux Enterprise Workstation Extension 12 SP2
SUSE Linux Enterprise Workstation Extension 12 SP3
SUSE Linux Enterprise Workstation Extension 12 SP4
SUSE Linux Enterprise Workstation Extension 12 SP5
SUSE OpenStack Cloud 7
SUSE Package Hub for SUSE Linux Enterprise 12
SUSE Package Hub for SUSE Linux Enterprise 12 SP3
Product(s):
Definition Synopsis
  • openSUSE Leap 42.1 is installed
  • AND Package Information
  • crash-kmp-default-7.1.3_k4.1.12_1-4.14 is installed
  • OR crash-kmp-xen-7.1.3_k4.1.12_1-4.14 is installed
  • Definition Synopsis
  • openSUSE Leap 42.2 is installed
  • AND Package Information
  • MozillaFirefox-49.0.2-37.1 is installed
  • OR MozillaFirefox-translations-common-49.0.2-37.1 is installed
  • Definition Synopsis
  • openSUSE Leap 42.3 is installed
  • AND cvs-1.12.12-186.3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 11 SP2 is installed
  • AND Package Information
  • bind-libs-9.9.4P2-0.6 is installed
  • OR bind-libs-32bit-9.9.4P2-0.6 is installed
  • OR bind-utils-9.9.4P2-0.6 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 11 SP3 is installed
  • AND Package Information
  • krb5-1.6.3-133.49.62 is installed
  • OR krb5-32bit-1.6.3-133.49.62 is installed
  • OR krb5-client-1.6.3-133.49.62 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 12 is installed
  • AND libdmx1-1.1.3-3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 12 SP1 is installed
  • AND Package Information
  • DirectFB-1.7.1-4 is installed
  • OR lib++dfb-1_7-1-1.7.1-4 is installed
  • OR libdirectfb-1_7-1-1.7.1-4 is installed
  • OR libdirectfb-1_7-1-32bit-1.7.1-4 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 12 SP2 is installed
  • AND Package Information
  • gdk-pixbuf-lang-2.34.0-16 is installed
  • OR gdk-pixbuf-query-loaders-2.34.0-16 is installed
  • OR gdk-pixbuf-query-loaders-32bit-2.34.0-16 is installed
  • OR libgdk_pixbuf-2_0-0-2.34.0-16 is installed
  • OR libgdk_pixbuf-2_0-0-32bit-2.34.0-16 is installed
  • OR typelib-1_0-GdkPixbuf-2_0-2.34.0-16 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 12 SP3 is installed
  • AND libndp0-1.6-2 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise High Availability Extension 11 SP3 is installed
  • AND Package Information
  • cluster-network-kmp-bigsmp-1.4_3.0.101_0.40-2.27 is installed
  • OR drbd-kmp-bigsmp-8.4.4_3.0.101_0.40-0.22 is installed
  • OR gfs2-kmp-bigsmp-2_3.0.101_0.40-0.16 is installed
  • OR ocfs2-kmp-bigsmp-1.6_3.0.101_0.40-0.20 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise High Availability Extension 11 SP4 is installed
  • AND Package Information
  • gnutls-2.4.1-24.39.67 is installed
  • OR libgnutls-extra26-2.4.1-24.39.67 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Point of Sale 11 SP3 is installed
  • AND Package Information
  • apache2-2.2.34-70.27 is installed
  • OR apache2-devel-2.2.34-70.27 is installed
  • OR apache2-doc-2.2.34-70.27 is installed
  • OR apache2-example-pages-2.2.34-70.27 is installed
  • OR apache2-prefork-2.2.34-70.27 is installed
  • OR apache2-utils-2.2.34-70.27 is installed
  • OR apache2-worker-2.2.34-70.27 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Real Time Extension 11 SP4 is installed
  • AND Package Information
  • kernel-rt-3.0.101.rt130-69.14 is installed
  • OR kernel-rt-base-3.0.101.rt130-69.14 is installed
  • OR kernel-rt-devel-3.0.101.rt130-69.14 is installed
  • OR kernel-rt_trace-3.0.101.rt130-69.14 is installed
  • OR kernel-rt_trace-base-3.0.101.rt130-69.14 is installed
  • OR kernel-rt_trace-devel-3.0.101.rt130-69.14 is installed
  • OR kernel-source-rt-3.0.101.rt130-69.14 is installed
  • OR kernel-syms-rt-3.0.101.rt130-69.14 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 is installed
  • AND
  • libtiff3-3.8.2-141.8 is installed
  • OR libtiff3-32bit-3.8.2-141.8 is installed
  • OR libtiff3-x86-3.8.2-141.8 is installed
  • OR tiff-3.8.2-141.8 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 is installed
  • AND
  • libtiff3-3.8.2-141.8 is installed
  • OR libtiff3-32bit-3.8.2-141.8 is installed
  • OR libtiff3-x86-3.8.2-141.8 is installed
  • OR tiff-3.8.2-141.8 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP1 is installed
  • AND
  • libopenssl-devel-0.9.8j-0.66 is installed
  • OR libopenssl0_9_8-0.9.8j-0.44 is installed
  • OR libopenssl0_9_8-32bit-0.9.8j-0.44 is installed
  • OR libopenssl0_9_8-hmac-0.9.8j-0.44 is installed
  • OR libopenssl0_9_8-hmac-32bit-0.9.8j-0.44 is installed
  • OR libopenssl0_9_8-hmac-x86-0.9.8j-0.44 is installed
  • OR libopenssl0_9_8-x86-0.9.8j-0.44 is installed
  • OR openssl-0.9.8j-0.44 is installed
  • OR openssl-doc-0.9.8j-0.44 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP1-LTSS is installed
  • AND
  • libopenssl-devel-0.9.8j-0.66 is installed
  • OR libopenssl0_9_8-0.9.8j-0.44 is installed
  • OR libopenssl0_9_8-32bit-0.9.8j-0.44 is installed
  • OR libopenssl0_9_8-hmac-0.9.8j-0.44 is installed
  • OR libopenssl0_9_8-hmac-32bit-0.9.8j-0.44 is installed
  • OR libopenssl0_9_8-hmac-x86-0.9.8j-0.44 is installed
  • OR libopenssl0_9_8-x86-0.9.8j-0.44 is installed
  • OR openssl-0.9.8j-0.44 is installed
  • OR openssl-doc-0.9.8j-0.44 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP1-TERADATA is installed
  • AND
  • libopenssl-devel-0.9.8j-0.66 is installed
  • OR libopenssl0_9_8-0.9.8j-0.44 is installed
  • OR libopenssl0_9_8-32bit-0.9.8j-0.44 is installed
  • OR libopenssl0_9_8-hmac-0.9.8j-0.44 is installed
  • OR libopenssl0_9_8-hmac-32bit-0.9.8j-0.44 is installed
  • OR libopenssl0_9_8-hmac-x86-0.9.8j-0.44 is installed
  • OR libopenssl0_9_8-x86-0.9.8j-0.44 is installed
  • OR openssl-0.9.8j-0.44 is installed
  • OR openssl-doc-0.9.8j-0.44 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP2 is installed
  • AND
  • libopenssl-devel-0.9.8j-0.66 is installed
  • OR libopenssl0_9_8-0.9.8j-0.44 is installed
  • OR libopenssl0_9_8-32bit-0.9.8j-0.44 is installed
  • OR libopenssl0_9_8-hmac-0.9.8j-0.44 is installed
  • OR libopenssl0_9_8-hmac-32bit-0.9.8j-0.44 is installed
  • OR libopenssl0_9_8-hmac-x86-0.9.8j-0.44 is installed
  • OR libopenssl0_9_8-x86-0.9.8j-0.44 is installed
  • OR openssl-0.9.8j-0.44 is installed
  • OR openssl-doc-0.9.8j-0.44 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-LTSS is installed
  • AND
  • libopenssl-devel-0.9.8j-0.66 is installed
  • OR libopenssl0_9_8-0.9.8j-0.44 is installed
  • OR libopenssl0_9_8-32bit-0.9.8j-0.44 is installed
  • OR libopenssl0_9_8-hmac-0.9.8j-0.44 is installed
  • OR libopenssl0_9_8-hmac-32bit-0.9.8j-0.44 is installed
  • OR libopenssl0_9_8-hmac-x86-0.9.8j-0.44 is installed
  • OR libopenssl0_9_8-x86-0.9.8j-0.44 is installed
  • OR openssl-0.9.8j-0.44 is installed
  • OR openssl-doc-0.9.8j-0.44 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-TERADATA is installed
  • AND
  • libopenssl-devel-0.9.8j-0.66 is installed
  • OR libopenssl0_9_8-0.9.8j-0.44 is installed
  • OR libopenssl0_9_8-32bit-0.9.8j-0.44 is installed
  • OR libopenssl0_9_8-hmac-0.9.8j-0.44 is installed
  • OR libopenssl0_9_8-hmac-32bit-0.9.8j-0.44 is installed
  • OR libopenssl0_9_8-hmac-x86-0.9.8j-0.44 is installed
  • OR libopenssl0_9_8-x86-0.9.8j-0.44 is installed
  • OR openssl-0.9.8j-0.44 is installed
  • OR openssl-doc-0.9.8j-0.44 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP1 is installed
  • AND
  • bind-9.6ESVR7P2-0.3 is installed
  • OR bind-chrootenv-9.6ESVR7P2-0.3 is installed
  • OR bind-doc-9.6ESVR7P2-0.3 is installed
  • OR bind-libs-9.6ESVR7P2-0.3 is installed
  • OR bind-libs-32bit-9.6ESVR7P2-0.3 is installed
  • OR bind-libs-x86-9.6ESVR7P2-0.3 is installed
  • OR bind-utils-9.6ESVR7P2-0.3 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP1-LTSS is installed
  • AND
  • bind-9.6ESVR7P2-0.3 is installed
  • OR bind-chrootenv-9.6ESVR7P2-0.3 is installed
  • OR bind-doc-9.6ESVR7P2-0.3 is installed
  • OR bind-libs-9.6ESVR7P2-0.3 is installed
  • OR bind-libs-32bit-9.6ESVR7P2-0.3 is installed
  • OR bind-libs-x86-9.6ESVR7P2-0.3 is installed
  • OR bind-utils-9.6ESVR7P2-0.3 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP1-TERADATA is installed
  • AND
  • bind-9.6ESVR7P2-0.3 is installed
  • OR bind-chrootenv-9.6ESVR7P2-0.3 is installed
  • OR bind-doc-9.6ESVR7P2-0.3 is installed
  • OR bind-libs-9.6ESVR7P2-0.3 is installed
  • OR bind-libs-32bit-9.6ESVR7P2-0.3 is installed
  • OR bind-libs-x86-9.6ESVR7P2-0.3 is installed
  • OR bind-utils-9.6ESVR7P2-0.3 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-LTSS is installed
  • AND
  • bind-9.6ESVR7P2-0.3 is installed
  • OR bind-chrootenv-9.6ESVR7P2-0.3 is installed
  • OR bind-doc-9.6ESVR7P2-0.3 is installed
  • OR bind-libs-9.6ESVR7P2-0.3 is installed
  • OR bind-libs-32bit-9.6ESVR7P2-0.3 is installed
  • OR bind-libs-x86-9.6ESVR7P2-0.3 is installed
  • OR bind-utils-9.6ESVR7P2-0.3 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-TERADATA is installed
  • AND
  • bind-9.6ESVR7P2-0.3 is installed
  • OR bind-chrootenv-9.6ESVR7P2-0.3 is installed
  • OR bind-doc-9.6ESVR7P2-0.3 is installed
  • OR bind-libs-9.6ESVR7P2-0.3 is installed
  • OR bind-libs-32bit-9.6ESVR7P2-0.3 is installed
  • OR bind-libs-x86-9.6ESVR7P2-0.3 is installed
  • OR bind-utils-9.6ESVR7P2-0.3 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP1 is installed
  • AND
  • puppet-2.6.17-0.3 is installed
  • OR puppet-server-2.6.17-0.3 is installed
  • OR pwdutils-3.2.8-0.2 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP1-TERADATA is installed
  • AND
  • puppet-2.6.17-0.3 is installed
  • OR puppet-server-2.6.17-0.3 is installed
  • OR pwdutils-3.2.8-0.2 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP2 is installed
  • AND
  • puppet-2.6.17-0.3 is installed
  • OR puppet-server-2.6.17-0.3 is installed
  • OR pwdutils-3.2.8-0.2 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-TERADATA is installed
  • AND
  • puppet-2.6.17-0.3 is installed
  • OR puppet-server-2.6.17-0.3 is installed
  • OR pwdutils-3.2.8-0.2 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP1 is installed
  • AND
  • ConsoleKit-0.2.10-64.65 is installed
  • OR ConsoleKit-32bit-0.2.10-64.65 is installed
  • OR ConsoleKit-x11-0.2.10-64.65 is installed
  • OR ConsoleKit-x86-0.2.10-64.65 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP1-TERADATA is installed
  • AND
  • ConsoleKit-0.2.10-64.65 is installed
  • OR ConsoleKit-32bit-0.2.10-64.65 is installed
  • OR ConsoleKit-x11-0.2.10-64.65 is installed
  • OR ConsoleKit-x86-0.2.10-64.65 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-TERADATA is installed
  • AND
  • ConsoleKit-0.2.10-64.65 is installed
  • OR ConsoleKit-32bit-0.2.10-64.65 is installed
  • OR ConsoleKit-x11-0.2.10-64.65 is installed
  • OR ConsoleKit-x86-0.2.10-64.65 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 11 SP1 is installed
  • AND Package Information
  • apache2-2.2.10-2.24 is installed
  • OR apache2-doc-2.2.10-2.24 is installed
  • OR apache2-example-pages-2.2.10-2.24 is installed
  • OR apache2-prefork-2.2.10-2.24 is installed
  • OR apache2-utils-2.2.10-2.24 is installed
  • OR apache2-worker-2.2.10-2.24 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP1-LTSS is installed
  • AND
  • bind-9.6ESVR11W1-0.9 is installed
  • OR bind-chrootenv-9.6ESVR11W1-0.9 is installed
  • OR bind-devel-9.6ESVR11W1-0.9 is installed
  • OR bind-doc-9.6ESVR11W1-0.9 is installed
  • OR bind-libs-9.6ESVR11W1-0.9 is installed
  • OR bind-libs-32bit-9.6ESVR11W1-0.9 is installed
  • OR bind-utils-9.6ESVR11W1-0.9 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP1-TERADATA is installed
  • AND
  • bind-9.6ESVR11W1-0.9 is installed
  • OR bind-chrootenv-9.6ESVR11W1-0.9 is installed
  • OR bind-devel-9.6ESVR11W1-0.9 is installed
  • OR bind-doc-9.6ESVR11W1-0.9 is installed
  • OR bind-libs-9.6ESVR11W1-0.9 is installed
  • OR bind-libs-32bit-9.6ESVR11W1-0.9 is installed
  • OR bind-utils-9.6ESVR11W1-0.9 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-LTSS is installed
  • AND
  • bind-9.6ESVR11W1-0.9 is installed
  • OR bind-chrootenv-9.6ESVR11W1-0.9 is installed
  • OR bind-devel-9.6ESVR11W1-0.9 is installed
  • OR bind-doc-9.6ESVR11W1-0.9 is installed
  • OR bind-libs-9.6ESVR11W1-0.9 is installed
  • OR bind-libs-32bit-9.6ESVR11W1-0.9 is installed
  • OR bind-utils-9.6ESVR11W1-0.9 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-TERADATA is installed
  • AND
  • bind-9.6ESVR11W1-0.9 is installed
  • OR bind-chrootenv-9.6ESVR11W1-0.9 is installed
  • OR bind-devel-9.6ESVR11W1-0.9 is installed
  • OR bind-doc-9.6ESVR11W1-0.9 is installed
  • OR bind-libs-9.6ESVR11W1-0.9 is installed
  • OR bind-libs-32bit-9.6ESVR11W1-0.9 is installed
  • OR bind-utils-9.6ESVR11W1-0.9 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP1-TERADATA is installed
  • AND
  • MozillaFirefox-68.6.0-78.64 is installed
  • OR MozillaFirefox-translations-common-68.6.0-78.64 is installed
  • OR MozillaFirefox-translations-other-68.6.0-78.64 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP1-TERADATA is installed
  • AND
  • MozillaFirefox-68.6.0-78.64 is installed
  • OR MozillaFirefox-translations-common-68.6.0-78.64 is installed
  • OR MozillaFirefox-translations-other-68.6.0-78.64 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP2 is installed
  • AND
  • MozillaFirefox-10.0.11-0.3 is installed
  • OR MozillaFirefox-translations-10.0.11-0.3 is installed
  • OR libfreebl3-3.14-0.3 is installed
  • OR libfreebl3-32bit-3.14-0.3 is installed
  • OR libfreebl3-x86-3.14-0.3 is installed
  • OR mozilla-nss-3.14-0.3 is installed
  • OR mozilla-nss-32bit-3.14-0.3 is installed
  • OR mozilla-nss-tools-3.14-0.3 is installed
  • OR mozilla-nss-x86-3.14-0.3 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP2 is installed
  • AND
  • MozillaFirefox-10.0.11-0.3 is installed
  • OR MozillaFirefox-translations-10.0.11-0.3 is installed
  • OR libfreebl3-3.14-0.3 is installed
  • OR libfreebl3-32bit-3.14-0.3 is installed
  • OR libfreebl3-x86-3.14-0.3 is installed
  • OR mozilla-nss-3.14-0.3 is installed
  • OR mozilla-nss-32bit-3.14-0.3 is installed
  • OR mozilla-nss-tools-3.14-0.3 is installed
  • OR mozilla-nss-x86-3.14-0.3 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for VMWare 11 SP2 is installed
  • AND
  • MozillaFirefox-10.0.11-0.3 is installed
  • OR MozillaFirefox-translations-10.0.11-0.3 is installed
  • OR libfreebl3-3.14-0.3 is installed
  • OR libfreebl3-32bit-3.14-0.3 is installed
  • OR libfreebl3-x86-3.14-0.3 is installed
  • OR mozilla-nss-3.14-0.3 is installed
  • OR mozilla-nss-32bit-3.14-0.3 is installed
  • OR mozilla-nss-tools-3.14-0.3 is installed
  • OR mozilla-nss-x86-3.14-0.3 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP2 is installed
  • AND
  • libvirt-0.9.6-0.29 is installed
  • OR libvirt-client-0.9.6-0.29 is installed
  • OR libvirt-client-32bit-0.9.6-0.29 is installed
  • OR libvirt-doc-0.9.6-0.29 is installed
  • OR libvirt-python-0.9.6-0.29 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP2 is installed
  • AND
  • libvirt-0.9.6-0.29 is installed
  • OR libvirt-client-0.9.6-0.29 is installed
  • OR libvirt-client-32bit-0.9.6-0.29 is installed
  • OR libvirt-doc-0.9.6-0.29 is installed
  • OR libvirt-python-0.9.6-0.29 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 11 SP2 is installed
  • AND Package Information
  • gstreamer-0_10-plugins-good-0.10.30-5.8 is installed
  • OR gstreamer-0_10-plugins-good-doc-0.10.30-5.8 is installed
  • OR gstreamer-0_10-plugins-good-lang-0.10.30-5.8 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP2-LTSS is installed
  • AND
  • bind-9.9.6P1-0.22 is installed
  • OR bind-chrootenv-9.9.6P1-0.22 is installed
  • OR bind-devel-9.9.6P1-0.22 is installed
  • OR bind-doc-9.9.6P1-0.22 is installed
  • OR bind-libs-9.9.6P1-0.22 is installed
  • OR bind-libs-32bit-9.9.6P1-0.22 is installed
  • OR bind-utils-9.9.6P1-0.22 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP2-LTSS is installed
  • AND
  • bind-9.9.6P1-0.22 is installed
  • OR bind-chrootenv-9.9.6P1-0.22 is installed
  • OR bind-devel-9.9.6P1-0.22 is installed
  • OR bind-doc-9.9.6P1-0.22 is installed
  • OR bind-libs-9.9.6P1-0.22 is installed
  • OR bind-libs-32bit-9.9.6P1-0.22 is installed
  • OR bind-utils-9.9.6P1-0.22 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP3 is installed
  • AND
  • MozillaFirefox-24.6.0esr-0.8 is installed
  • OR MozillaFirefox-branding-SLED-24-0.7 is installed
  • OR MozillaFirefox-translations-24.6.0esr-0.8 is installed
  • OR libfreebl3-3.16.1-0.8 is installed
  • OR libfreebl3-32bit-3.16.1-0.8 is installed
  • OR libfreebl3-x86-3.16.1-0.8 is installed
  • OR libsoftokn3-3.16.1-0.8 is installed
  • OR libsoftokn3-32bit-3.16.1-0.8 is installed
  • OR libsoftokn3-x86-3.16.1-0.8 is installed
  • OR mozilla-nspr-4.10.6-0.3 is installed
  • OR mozilla-nspr-32bit-4.10.6-0.3 is installed
  • OR mozilla-nspr-x86-4.10.6-0.3 is installed
  • OR mozilla-nss-3.16.1-0.8 is installed
  • OR mozilla-nss-32bit-3.16.1-0.8 is installed
  • OR mozilla-nss-tools-3.16.1-0.8 is installed
  • OR mozilla-nss-x86-3.16.1-0.8 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP3-TERADATA is installed
  • AND
  • MozillaFirefox-24.6.0esr-0.8 is installed
  • OR MozillaFirefox-branding-SLED-24-0.7 is installed
  • OR MozillaFirefox-translations-24.6.0esr-0.8 is installed
  • OR libfreebl3-3.16.1-0.8 is installed
  • OR libfreebl3-32bit-3.16.1-0.8 is installed
  • OR libfreebl3-x86-3.16.1-0.8 is installed
  • OR libsoftokn3-3.16.1-0.8 is installed
  • OR libsoftokn3-32bit-3.16.1-0.8 is installed
  • OR libsoftokn3-x86-3.16.1-0.8 is installed
  • OR mozilla-nspr-4.10.6-0.3 is installed
  • OR mozilla-nspr-32bit-4.10.6-0.3 is installed
  • OR mozilla-nspr-x86-4.10.6-0.3 is installed
  • OR mozilla-nss-3.16.1-0.8 is installed
  • OR mozilla-nss-32bit-3.16.1-0.8 is installed
  • OR mozilla-nss-tools-3.16.1-0.8 is installed
  • OR mozilla-nss-x86-3.16.1-0.8 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3 is installed
  • AND
  • MozillaFirefox-24.6.0esr-0.8 is installed
  • OR MozillaFirefox-branding-SLED-24-0.7 is installed
  • OR MozillaFirefox-translations-24.6.0esr-0.8 is installed
  • OR libfreebl3-3.16.1-0.8 is installed
  • OR libfreebl3-32bit-3.16.1-0.8 is installed
  • OR libfreebl3-x86-3.16.1-0.8 is installed
  • OR libsoftokn3-3.16.1-0.8 is installed
  • OR libsoftokn3-32bit-3.16.1-0.8 is installed
  • OR libsoftokn3-x86-3.16.1-0.8 is installed
  • OR mozilla-nspr-4.10.6-0.3 is installed
  • OR mozilla-nspr-32bit-4.10.6-0.3 is installed
  • OR mozilla-nspr-x86-4.10.6-0.3 is installed
  • OR mozilla-nss-3.16.1-0.8 is installed
  • OR mozilla-nss-32bit-3.16.1-0.8 is installed
  • OR mozilla-nss-tools-3.16.1-0.8 is installed
  • OR mozilla-nss-x86-3.16.1-0.8 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3-TERADATA is installed
  • AND
  • MozillaFirefox-24.6.0esr-0.8 is installed
  • OR MozillaFirefox-branding-SLED-24-0.7 is installed
  • OR MozillaFirefox-translations-24.6.0esr-0.8 is installed
  • OR libfreebl3-3.16.1-0.8 is installed
  • OR libfreebl3-32bit-3.16.1-0.8 is installed
  • OR libfreebl3-x86-3.16.1-0.8 is installed
  • OR libsoftokn3-3.16.1-0.8 is installed
  • OR libsoftokn3-32bit-3.16.1-0.8 is installed
  • OR libsoftokn3-x86-3.16.1-0.8 is installed
  • OR mozilla-nspr-4.10.6-0.3 is installed
  • OR mozilla-nspr-32bit-4.10.6-0.3 is installed
  • OR mozilla-nspr-x86-4.10.6-0.3 is installed
  • OR mozilla-nss-3.16.1-0.8 is installed
  • OR mozilla-nss-32bit-3.16.1-0.8 is installed
  • OR mozilla-nss-tools-3.16.1-0.8 is installed
  • OR mozilla-nss-x86-3.16.1-0.8 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for VMWare 11 SP3 is installed
  • AND
  • MozillaFirefox-24.6.0esr-0.8 is installed
  • OR MozillaFirefox-branding-SLED-24-0.7 is installed
  • OR MozillaFirefox-translations-24.6.0esr-0.8 is installed
  • OR libfreebl3-3.16.1-0.8 is installed
  • OR libfreebl3-32bit-3.16.1-0.8 is installed
  • OR libfreebl3-x86-3.16.1-0.8 is installed
  • OR libsoftokn3-3.16.1-0.8 is installed
  • OR libsoftokn3-32bit-3.16.1-0.8 is installed
  • OR libsoftokn3-x86-3.16.1-0.8 is installed
  • OR mozilla-nspr-4.10.6-0.3 is installed
  • OR mozilla-nspr-32bit-4.10.6-0.3 is installed
  • OR mozilla-nspr-x86-4.10.6-0.3 is installed
  • OR mozilla-nss-3.16.1-0.8 is installed
  • OR mozilla-nss-32bit-3.16.1-0.8 is installed
  • OR mozilla-nss-tools-3.16.1-0.8 is installed
  • OR mozilla-nss-x86-3.16.1-0.8 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP3 is installed
  • AND
  • xen-4.2.5_06-0.7 is installed
  • OR xen-doc-html-4.2.5_06-0.7 is installed
  • OR xen-doc-pdf-4.2.5_06-0.7 is installed
  • OR xen-kmp-default-4.2.5_06_3.0.101_0.47.52-0.7 is installed
  • OR xen-kmp-pae-4.2.5_06_3.0.101_0.47.52-0.7 is installed
  • OR xen-libs-4.2.5_06-0.7 is installed
  • OR xen-libs-32bit-4.2.5_06-0.7 is installed
  • OR xen-tools-4.2.5_06-0.7 is installed
  • OR xen-tools-domU-4.2.5_06-0.7 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP3-TERADATA is installed
  • AND
  • xen-4.2.5_06-0.7 is installed
  • OR xen-doc-html-4.2.5_06-0.7 is installed
  • OR xen-doc-pdf-4.2.5_06-0.7 is installed
  • OR xen-kmp-default-4.2.5_06_3.0.101_0.47.52-0.7 is installed
  • OR xen-kmp-pae-4.2.5_06_3.0.101_0.47.52-0.7 is installed
  • OR xen-libs-4.2.5_06-0.7 is installed
  • OR xen-libs-32bit-4.2.5_06-0.7 is installed
  • OR xen-tools-4.2.5_06-0.7 is installed
  • OR xen-tools-domU-4.2.5_06-0.7 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3 is installed
  • AND
  • xen-4.2.5_06-0.7 is installed
  • OR xen-doc-html-4.2.5_06-0.7 is installed
  • OR xen-doc-pdf-4.2.5_06-0.7 is installed
  • OR xen-kmp-default-4.2.5_06_3.0.101_0.47.52-0.7 is installed
  • OR xen-kmp-pae-4.2.5_06_3.0.101_0.47.52-0.7 is installed
  • OR xen-libs-4.2.5_06-0.7 is installed
  • OR xen-libs-32bit-4.2.5_06-0.7 is installed
  • OR xen-tools-4.2.5_06-0.7 is installed
  • OR xen-tools-domU-4.2.5_06-0.7 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3-TERADATA is installed
  • AND
  • xen-4.2.5_06-0.7 is installed
  • OR xen-doc-html-4.2.5_06-0.7 is installed
  • OR xen-doc-pdf-4.2.5_06-0.7 is installed
  • OR xen-kmp-default-4.2.5_06_3.0.101_0.47.52-0.7 is installed
  • OR xen-kmp-pae-4.2.5_06_3.0.101_0.47.52-0.7 is installed
  • OR xen-libs-4.2.5_06-0.7 is installed
  • OR xen-libs-32bit-4.2.5_06-0.7 is installed
  • OR xen-tools-4.2.5_06-0.7 is installed
  • OR xen-tools-domU-4.2.5_06-0.7 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP3 is installed
  • AND ppc64-diag-2.6.1-0.14 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3 is installed
  • AND ppc64-diag-2.6.1-0.14 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 11 SP3 is installed
  • AND Package Information
  • cups-1.3.9-8.46.46 is installed
  • OR cups-client-1.3.9-8.46.46 is installed
  • OR cups-libs-1.3.9-8.46.46 is installed
  • OR cups-libs-32bit-1.3.9-8.46.46 is installed
  • OR cups-libs-x86-1.3.9-8.46.46 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP3-CLIENT-TOOLS is installed
  • AND
  • rhnlib-2.5.84.4-8 is installed
  • OR spacecmd-2.5.5.5-14 is installed
  • OR spacewalk-backend-2.5.24.9-24 is installed
  • OR spacewalk-backend-libs-2.5.24.9-24 is installed
  • OR spacewalk-check-2.5.13.8-23 is installed
  • OR spacewalk-client-setup-2.5.13.8-23 is installed
  • OR spacewalk-client-tools-2.5.13.8-23 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3-CLIENT-TOOLS is installed
  • AND
  • rhnlib-2.5.84.4-8 is installed
  • OR spacecmd-2.5.5.5-14 is installed
  • OR spacewalk-backend-2.5.24.9-24 is installed
  • OR spacewalk-backend-libs-2.5.24.9-24 is installed
  • OR spacewalk-check-2.5.13.8-23 is installed
  • OR spacewalk-client-setup-2.5.13.8-23 is installed
  • OR spacewalk-client-tools-2.5.13.8-23 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP3-LTSS is installed
  • AND
  • MozillaFirefox-52.2.0esr-72.5 is installed
  • OR MozillaFirefox-branding-SLED-52-24.3 is installed
  • OR MozillaFirefox-translations-52.2.0esr-72.5 is installed
  • OR firefox-gcc5-5.3.1+r233831-7 is installed
  • OR firefox-libffi-gcc5-5.3.1+r233831-7 is installed
  • OR firefox-libffi4-5.3.1+r233831-7 is installed
  • OR firefox-libstdc++6-5.3.1+r233831-7 is installed
  • OR libfreebl3-3.29.5-47.3 is installed
  • OR libfreebl3-32bit-3.29.5-47.3 is installed
  • OR libsoftokn3-3.29.5-47.3 is installed
  • OR libsoftokn3-32bit-3.29.5-47.3 is installed
  • OR mozilla-nss-3.29.5-47.3 is installed
  • OR mozilla-nss-32bit-3.29.5-47.3 is installed
  • OR mozilla-nss-tools-3.29.5-47.3 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server 11 SP3-TERADATA is installed
  • AND
  • MozillaFirefox-52.2.0esr-72.5 is installed
  • OR MozillaFirefox-branding-SLED-52-24.3 is installed
  • OR MozillaFirefox-translations-52.2.0esr-72.5 is installed
  • OR firefox-gcc5-5.3.1+r233831-7 is installed
  • OR firefox-libffi-gcc5-5.3.1+r233831-7 is installed
  • OR firefox-libffi4-5.3.1+r233831-7 is installed
  • OR firefox-libstdc++6-5.3.1+r233831-7 is installed
  • OR libfreebl3-3.29.5-47.3 is installed
  • OR libfreebl3-32bit-3.29.5-47.3 is installed
  • OR libsoftokn3-3.29.5-47.3 is installed
  • OR libsoftokn3-32bit-3.29.5-47.3 is installed
  • OR mozilla-nss-3.29.5-47.3 is installed
  • OR mozilla-nss-32bit-3.29.5-47.3 is installed
  • OR mozilla-nss-tools-3.29.5-47.3 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3-LTSS is installed
  • AND
  • MozillaFirefox-52.2.0esr-72.5 is installed
  • OR MozillaFirefox-branding-SLED-52-24.3 is installed
  • OR MozillaFirefox-translations-52.2.0esr-72.5 is installed
  • OR firefox-gcc5-5.3.1+r233831-7 is installed
  • OR firefox-libffi-gcc5-5.3.1+r233831-7 is installed
  • OR firefox-libffi4-5.3.1+r233831-7 is installed
  • OR firefox-libstdc++6-5.3.1+r233831-7 is installed
  • OR libfreebl3-3.29.5-47.3 is installed
  • OR libfreebl3-32bit-3.29.5-47.3 is installed
  • OR libsoftokn3-3.29.5-47.3 is installed
  • OR libsoftokn3-32bit-3.29.5-47.3 is installed
  • OR mozilla-nss-3.29.5-47.3 is installed
  • OR mozilla-nss-32bit-3.29.5-47.3 is installed
  • OR mozilla-nss-tools-3.29.5-47.3 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3-TERADATA is installed
  • AND
  • MozillaFirefox-52.2.0esr-72.5 is installed
  • OR MozillaFirefox-branding-SLED-52-24.3 is installed
  • OR MozillaFirefox-translations-52.2.0esr-72.5 is installed
  • OR firefox-gcc5-5.3.1+r233831-7 is installed
  • OR firefox-libffi-gcc5-5.3.1+r233831-7 is installed
  • OR firefox-libffi4-5.3.1+r233831-7 is installed
  • OR firefox-libstdc++6-5.3.1+r233831-7 is installed
  • OR libfreebl3-3.29.5-47.3 is installed
  • OR libfreebl3-32bit-3.29.5-47.3 is installed
  • OR libsoftokn3-3.29.5-47.3 is installed
  • OR libsoftokn3-32bit-3.29.5-47.3 is installed
  • OR mozilla-nss-3.29.5-47.3 is installed
  • OR mozilla-nss-32bit-3.29.5-47.3 is installed
  • OR mozilla-nss-tools-3.29.5-47.3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 11 SP3-LTSS is installed
  • AND Package Information
  • emacs-22.3-42.3 is installed
  • OR emacs-el-22.3-42.3 is installed
  • OR emacs-info-22.3-42.3 is installed
  • OR emacs-nox-22.3-42.3 is installed
  • OR emacs-x11-22.3-42.3 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP3-TERADATA is installed
  • AND
  • cups-1.3.9-8.46.56.8 is installed
  • OR cups-client-1.3.9-8.46.56.8 is installed
  • OR cups-libs-1.3.9-8.46.56.8 is installed
  • OR cups-libs-32bit-1.3.9-8.46.56.8 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP3-TERADATA is installed
  • AND
  • cups-1.3.9-8.46.56.8 is installed
  • OR cups-client-1.3.9-8.46.56.8 is installed
  • OR cups-libs-1.3.9-8.46.56.8 is installed
  • OR cups-libs-32bit-1.3.9-8.46.56.8 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP4 is installed
  • AND
  • ImageMagick-6.4.3.6-7.60 is installed
  • OR libMagickCore1-6.4.3.6-7.60 is installed
  • OR libMagickCore1-32bit-6.4.3.6-7.60 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP4 is installed
  • AND
  • ImageMagick-6.4.3.6-7.60 is installed
  • OR libMagickCore1-6.4.3.6-7.60 is installed
  • OR libMagickCore1-32bit-6.4.3.6-7.60 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 11 SP4 is installed
  • AND Package Information
  • bind-9.9.6P1-0.5 is installed
  • OR bind-chrootenv-9.9.6P1-0.5 is installed
  • OR bind-doc-9.9.6P1-0.5 is installed
  • OR bind-libs-9.9.6P1-0.5 is installed
  • OR bind-libs-32bit-9.9.6P1-0.5 is installed
  • OR bind-libs-x86-9.9.6P1-0.5 is installed
  • OR bind-utils-9.9.6P1-0.5 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 11 SP4-CLIENT-TOOLS is installed
  • AND
  • salt-2016.11.4-43.10 is installed
  • OR salt-doc-2016.11.4-43.10 is installed
  • OR salt-minion-2016.11.4-43.10 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 11 SP4-CLIENT-TOOLS is installed
  • AND
  • salt-2016.11.4-43.10 is installed
  • OR salt-doc-2016.11.4-43.10 is installed
  • OR salt-minion-2016.11.4-43.10 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 11-SECURITY is installed
  • AND Package Information
  • libcurl4-openssl1-7.19.7-0.38 is installed
  • OR libcurl4-openssl1-32bit-7.19.7-0.38 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 is installed
  • AND
  • fuse-2.9.3-5 is installed
  • OR libfuse2-2.9.3-5 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 is installed
  • AND
  • fuse-2.9.3-5 is installed
  • OR libfuse2-2.9.3-5 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 is installed
  • AND Package Information
  • apache-commons-beanutils-1.9.2-1 is installed
  • OR apache-commons-beanutils-javadoc-1.9.2-1 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP1 is installed
  • AND
  • xscreensaver-5.22-7 is installed
  • OR xscreensaver-data-5.22-7 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP1 is installed
  • AND
  • xscreensaver-5.22-7 is installed
  • OR xscreensaver-data-5.22-7 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP1 is installed
  • AND Package Information
  • fontconfig-2.11.0-6 is installed
  • OR fontconfig-32bit-2.11.0-6 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP1-LTSS is installed
  • AND sudo-1.8.10p3-2.19 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP1-LTSS is installed
  • AND sudo-1.8.10p3-2.19 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP1-LTSS is installed
  • AND Package Information
  • kgraft-patch-3_12_69-60_64_29-default-10-2.1 is installed
  • OR kgraft-patch-3_12_69-60_64_29-xen-10-2.1 is installed
  • OR kgraft-patch-SLE12-SP1_Update_12-10-2.1 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP2 is installed
  • AND
  • tar-1.27.1-11 is installed
  • OR tar-lang-1.27.1-11 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP2 is installed
  • AND
  • tar-1.27.1-11 is installed
  • OR tar-lang-1.27.1-11 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP2 is installed
  • AND Package Information
  • libsndfile1-1.0.25-25 is installed
  • OR libsndfile1-32bit-1.0.25-25 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP2-BCL is installed
  • AND
  • kernel-firmware-20170530-21.22 is installed
  • OR ucode-amd-20170530-21.22 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP2-BCL is installed
  • AND
  • kernel-firmware-20170530-21.22 is installed
  • OR ucode-amd-20170530-21.22 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP2-ESPOS is installed
  • AND
  • xen-4.7.5_04-43.33 is installed
  • OR xen-doc-html-4.7.5_04-43.33 is installed
  • OR xen-libs-4.7.5_04-43.33 is installed
  • OR xen-libs-32bit-4.7.5_04-43.33 is installed
  • OR xen-tools-4.7.5_04-43.33 is installed
  • OR xen-tools-domU-4.7.5_04-43.33 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP2-ESPOS is installed
  • AND
  • xen-4.7.5_04-43.33 is installed
  • OR xen-doc-html-4.7.5_04-43.33 is installed
  • OR xen-libs-4.7.5_04-43.33 is installed
  • OR xen-libs-32bit-4.7.5_04-43.33 is installed
  • OR xen-tools-4.7.5_04-43.33 is installed
  • OR xen-tools-domU-4.7.5_04-43.33 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP2-LTSS is installed
  • AND
  • kgraft-patch-4_4_90-92_45-default-7-2 is installed
  • OR kgraft-patch-SLE12-SP2_Update_14-7-2 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP2-LTSS is installed
  • AND
  • kgraft-patch-4_4_90-92_45-default-7-2 is installed
  • OR kgraft-patch-SLE12-SP2_Update_14-7-2 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP3 is installed
  • AND
  • libwireshark8-2.2.10-48.12 is installed
  • OR libwiretap6-2.2.10-48.12 is installed
  • OR libwscodecs1-2.2.10-48.12 is installed
  • OR libwsutil7-2.2.10-48.12 is installed
  • OR wireshark-2.2.10-48.12 is installed
  • OR wireshark-gtk-2.2.10-48.12 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP3 is installed
  • AND
  • libwireshark8-2.2.10-48.12 is installed
  • OR libwiretap6-2.2.10-48.12 is installed
  • OR libwscodecs1-2.2.10-48.12 is installed
  • OR libwsutil7-2.2.10-48.12 is installed
  • OR wireshark-2.2.10-48.12 is installed
  • OR wireshark-gtk-2.2.10-48.12 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP3 is installed
  • AND Package Information
  • MozillaFirefox-52.2.0esr-108 is installed
  • OR MozillaFirefox-translations-52.2.0esr-108 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP4 is installed
  • AND
  • git-2.26.0-27.27 is installed
  • OR git-core-2.26.0-27.27 is installed
  • OR libpcre2-16-0-10.34-1.3 is installed
  • OR libpcre2-32-0-10.34-1.3 is installed
  • OR libpcre2-8-0-10.34-1.3 is installed
  • OR libpcre2-posix2-10.34-1.3 is installed
  • OR pcre2-10.34-1.3 is installed
  • OR perl-CGI-4.38-1.3 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP4 is installed
  • AND
  • git-2.26.0-27.27 is installed
  • OR git-core-2.26.0-27.27 is installed
  • OR libpcre2-16-0-10.34-1.3 is installed
  • OR libpcre2-32-0-10.34-1.3 is installed
  • OR libpcre2-8-0-10.34-1.3 is installed
  • OR libpcre2-posix2-10.34-1.3 is installed
  • OR pcre2-10.34-1.3 is installed
  • OR perl-CGI-4.38-1.3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP4 is installed
  • AND Package Information
  • aaa_base-13.2+git20140911.61c1681-38.8 is installed
  • OR aaa_base-extras-13.2+git20140911.61c1681-38.8 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP4-ESPOS is installed
  • AND
  • kernel-default-4.12.14-95.60 is installed
  • OR kernel-default-base-4.12.14-95.60 is installed
  • OR kernel-default-devel-4.12.14-95.60 is installed
  • OR kernel-devel-4.12.14-95.60 is installed
  • OR kernel-macros-4.12.14-95.60 is installed
  • OR kernel-source-4.12.14-95.60 is installed
  • OR kernel-syms-4.12.14-95.60 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP4-ESPOS is installed
  • AND
  • kernel-default-4.12.14-95.60 is installed
  • OR kernel-default-base-4.12.14-95.60 is installed
  • OR kernel-default-devel-4.12.14-95.60 is installed
  • OR kernel-devel-4.12.14-95.60 is installed
  • OR kernel-macros-4.12.14-95.60 is installed
  • OR kernel-source-4.12.14-95.60 is installed
  • OR kernel-syms-4.12.14-95.60 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12-LTSS is installed
  • AND
  • MozillaFirefox-45.5.0esr-88 is installed
  • OR MozillaFirefox-translations-45.5.0esr-88 is installed
  • OR libfreebl3-3.21.3-50 is installed
  • OR libfreebl3-32bit-3.21.3-50 is installed
  • OR libfreebl3-hmac-3.21.3-50 is installed
  • OR libfreebl3-hmac-32bit-3.21.3-50 is installed
  • OR libsoftokn3-3.21.3-50 is installed
  • OR libsoftokn3-32bit-3.21.3-50 is installed
  • OR libsoftokn3-hmac-3.21.3-50 is installed
  • OR libsoftokn3-hmac-32bit-3.21.3-50 is installed
  • OR mozilla-nss-3.21.3-50 is installed
  • OR mozilla-nss-32bit-3.21.3-50 is installed
  • OR mozilla-nss-certs-3.21.3-50 is installed
  • OR mozilla-nss-certs-32bit-3.21.3-50 is installed
  • OR mozilla-nss-sysinit-3.21.3-50 is installed
  • OR mozilla-nss-sysinit-32bit-3.21.3-50 is installed
  • OR mozilla-nss-tools-3.21.3-50 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12-LTSS is installed
  • AND
  • MozillaFirefox-45.5.0esr-88 is installed
  • OR MozillaFirefox-translations-45.5.0esr-88 is installed
  • OR libfreebl3-3.21.3-50 is installed
  • OR libfreebl3-32bit-3.21.3-50 is installed
  • OR libfreebl3-hmac-3.21.3-50 is installed
  • OR libfreebl3-hmac-32bit-3.21.3-50 is installed
  • OR libsoftokn3-3.21.3-50 is installed
  • OR libsoftokn3-32bit-3.21.3-50 is installed
  • OR libsoftokn3-hmac-3.21.3-50 is installed
  • OR libsoftokn3-hmac-32bit-3.21.3-50 is installed
  • OR mozilla-nss-3.21.3-50 is installed
  • OR mozilla-nss-32bit-3.21.3-50 is installed
  • OR mozilla-nss-certs-3.21.3-50 is installed
  • OR mozilla-nss-certs-32bit-3.21.3-50 is installed
  • OR mozilla-nss-sysinit-3.21.3-50 is installed
  • OR mozilla-nss-sysinit-32bit-3.21.3-50 is installed
  • OR mozilla-nss-tools-3.21.3-50 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server for SAP Applications 11 SP2 is installed
  • AND sap_suse_cluster_connector-1.0.0-0.8 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server for SAP Applications 11 SP4 is installed
  • AND Package Information
  • lighttpd-1.4.20-2.58 is installed
  • OR lighttpd-mod_cml-1.4.20-2.58 is installed
  • OR lighttpd-mod_magnet-1.4.20-2.58 is installed
  • OR lighttpd-mod_mysql_vhost-1.4.20-2.58 is installed
  • OR lighttpd-mod_rrdtool-1.4.20-2.58 is installed
  • OR lighttpd-mod_trigger_b4_dl-1.4.20-2.58 is installed
  • OR lighttpd-mod_webdav-1.4.20-2.58 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Software Development Kit 11 SP2 is installed
  • AND Package Information
  • lighttpd-1.4.20-2.52 is installed
  • OR lighttpd-mod_cml-1.4.20-2.52 is installed
  • OR lighttpd-mod_magnet-1.4.20-2.52 is installed
  • OR lighttpd-mod_mysql_vhost-1.4.20-2.52 is installed
  • OR lighttpd-mod_rrdtool-1.4.20-2.52 is installed
  • OR lighttpd-mod_trigger_b4_dl-1.4.20-2.52 is installed
  • OR lighttpd-mod_webdav-1.4.20-2.52 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Software Development Kit 11 SP3 is installed
  • AND Package Information
  • MozillaFirefox-devel-24.5.0esr-0.8 is installed
  • OR mozilla-nspr-devel-4.10.4-0.3 is installed
  • OR mozilla-nss-devel-3.16-0.8 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Software Development Kit 11 SP4 is installed
  • AND Package Information
  • boinc-client-6.2.18-4.31 is installed
  • OR boinc-client-devel-6.2.18-4.31 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 SP2 is installed
  • AND Package Information
  • evince-3.20.1-6.16 is installed
  • OR typelib-1_0-EvinceDocument-3_0-3.20.1-6.16 is installed
  • OR typelib-1_0-EvinceView-3_0-3.20.1-6.16 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 SP3 is installed
  • AND Package Information
  • gwenhywfar-4.9.0beta-3.3 is installed
  • OR gwenhywfar-lang-4.9.0beta-3.3 is installed
  • OR gwenhywfar-tools-4.9.0beta-3.3 is installed
  • OR libgwengui-gtk2-0-4.9.0beta-3.3 is installed
  • OR libgwenhywfar60-4.9.0beta-3.3 is installed
  • OR libgwenhywfar60-plugins-4.9.0beta-3.3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 SP4 is installed
  • AND Package Information
  • kernel-default-4.12.14-95.3 is installed
  • OR kernel-default-extra-4.12.14-95.3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 SP5 is installed
  • AND Package Information
  • kernel-default-4.12.14-122.17 is installed
  • OR kernel-default-extra-4.12.14-122.17 is installed
  • Definition Synopsis
  • SUSE OpenStack Cloud 7 is installed
  • AND python-PyJWT-1.4.2-3.3.1 is installed
  • Definition Synopsis
  • SUSE Package Hub for SUSE Linux Enterprise 12 is installed
  • AND Package Information
  • MozillaThunderbird-52.2-36 is installed
  • OR MozillaThunderbird-buildsymbols-52.2-36 is installed
  • OR MozillaThunderbird-devel-52.2-36 is installed
  • OR MozillaThunderbird-translations-common-52.2-36 is installed
  • OR MozillaThunderbird-translations-other-52.2-36 is installed
  • Definition Synopsis
  • SUSE Package Hub for SUSE Linux Enterprise 12 SP3 is installed
  • AND Package Information
  • chromedriver-75.0.3770.90-2 is installed
  • OR chromium-75.0.3770.90-2 is installed
  • BACK