Oval Definition:oval:org.opensuse.security:def:45954
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):1004220
1014524
1015567
1029912
1051510
1058115
1060644
1061840
1065600
1065729
1069591
1071995
1082555
1087320
1088047
1089895
1090174
1093447
1094555
1098377
1098633
1100453
1101506
1106383
1106751
1109137
1111666
1114279
1119532
1120423
1120852
1121759
1124167
1124799
1124800
1124802
1124803
1124805
1124806
1124824
1124825
1124826
1124827
1125099
1127155
1128432
1128902
1128910
1132154
1132390
1133021
1133401
1133738
1134303
1134395
1135296
1135556
1135642
1136157
1136811
1136922
1137103
1137194
1137221
1137366
1137429
1137625
1137728
1137884
1137995
1137996
1137998
1137999
1138000
1138002
1138003
1138005
1138006
1138007
1138008
1138009
1138010
1138011
1138012
1138013
1138014
1138015
1138016
1138017
1138018
1138019
1138291
1138293
1138374
1138375
1138589
1138719
1138743
1139751
1139771
1139782
1139865
1140133
1140328
1140405
1140424
1140428
1140575
1140577
1140637
1140658
1140715
1140719
1140726
1140727
1140728
1140814
1140948
1144333
1150137
1151794
1152489
1152856
1153892
1154212
1154824
1154849
1157169
1158265
1160388
1160398
1160947
1160968
1162972
1165183
1165741
1166969
1167574
1167851
1167890
1168503
1168670
1168930
1169020
1169511
1169514
1169525
1170056
1170125
1170145
1170345
1170457
1170522
1170592
1170618
1170620
1170770
1170778
1170791
1170901
1171078
1171098
1171118
1171189
1171191
1171195
1171202
1171205
1171217
1171218
1171219
1171220
1171293
1171417
1171527
1171599
1171600
1171601
1171602
1171604
1171605
1171606
1171607
1171608
1171609
1171610
1171611
1171612
1171613
1171614
1171615
1171616
1171617
1171618
1171619
1171620
1171621
1171622
1171623
1171624
1171625
1171626
1171679
1171691
1171694
1171695
1171736
1171761
1171948
1171949
1171951
1171952
1171982
1171983
1172096
1172097
1172098
1172099
1172101
1172102
1172103
1172104
1172127
1172130
1172185
1172188
1172199
1172221
1172253
1172277
1172317
1172342
1172343
1172344
1172366
1172391
1172397
1172453
1172515
1174157
1176315
821419
945811
CVE-2013-1430
CVE-2017-16927
CVE-2017-6967
CVE-2018-1000199
CVE-2018-10196
CVE-2018-10852
CVE-2018-16871
CVE-2018-20836
CVE-2019-10126
CVE-2019-10638
CVE-2019-10639
CVE-2019-11478
CVE-2019-11599
CVE-2019-12456
CVE-2019-12614
CVE-2019-12818
CVE-2019-12819
CVE-2019-14834
CVE-2019-16168
CVE-2019-17544
CVE-2019-19462
CVE-2019-20806
CVE-2019-20812
CVE-2019-2894
CVE-2019-2933
CVE-2019-2945
CVE-2019-2949
CVE-2019-2958
CVE-2019-2962
CVE-2019-2964
CVE-2019-2973
CVE-2019-2978
CVE-2019-2981
CVE-2019-2983
CVE-2019-2987
CVE-2019-2988
CVE-2019-2989
CVE-2019-2992
CVE-2019-2999
CVE-2019-3811
CVE-2019-7572
CVE-2019-7573
CVE-2019-7574
CVE-2019-7575
CVE-2019-7576
CVE-2019-7577
CVE-2019-7578
CVE-2019-7635
CVE-2019-7636
CVE-2019-7637
CVE-2019-7638
CVE-2019-9455
CVE-2020-0543
CVE-2020-10690
CVE-2020-10711
CVE-2020-10720
CVE-2020-10732
CVE-2020-10751
CVE-2020-10757
CVE-2020-12114
CVE-2020-12464
CVE-2020-12652
CVE-2020-12653
CVE-2020-12654
CVE-2020-12655
CVE-2020-12656
CVE-2020-12657
CVE-2020-12768
CVE-2020-12769
CVE-2020-13143
CVE-2020-14577
CVE-2020-14578
CVE-2020-14579
CVE-2020-14581
CVE-2020-14583
CVE-2020-14593
CVE-2020-14621
CVE-2020-17507
CVE-2020-2583
CVE-2020-2593
CVE-2020-2604
CVE-2020-2654
CVE-2020-2659
CVE-2020-2754
CVE-2020-2755
CVE-2020-2756
CVE-2020-2756
CVE-2020-2757
CVE-2020-2757
CVE-2020-2773
CVE-2020-2781
CVE-2020-2781
CVE-2020-2800
CVE-2020-2800
CVE-2020-2803
CVE-2020-2803
CVE-2020-2805
CVE-2020-2805
CVE-2020-2830
CVE-2020-2830
CVE-2020-5260
SUSE-SU-2019:0556-1
SUSE-SU-2019:3084-1
SUSE-SU-2020:0419-1
SUSE-SU-2020:0456-1
SUSE-SU-2020:0992-1
SUSE-SU-2020:1605-1
SUSE-SU-2020:1683-1
SUSE-SU-2020:3090-1
Platform(s):openSUSE Leap 15.0
openSUSE Leap 42.3
SUSE Linux Enterprise Desktop 11 SP3
SUSE Linux Enterprise Desktop 11 SP4
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 Desktop 12 SP4
SUSE Linux Enterprise Module for additional PackageHub packages 15
SUSE Linux Enterprise Module for Basesystem 15
SUSE Linux Enterprise Module for Basesystem 15 SP1
SUSE Linux Enterprise Module for Desktop Applications 15
SUSE Linux Enterprise Module for Desktop Applications 15 SP1
SUSE Linux Enterprise Module for Development Tools 15
SUSE Linux Enterprise Module for Legacy Software 15
SUSE Linux Enterprise Module for Live Patching 15 SP1
SUSE Linux Enterprise Module for Open Buildservice Development Tools 15
SUSE Linux Enterprise Module for Open Buildservice Development Tools 15 SP1
SUSE Linux Enterprise Module for Public Cloud 15
SUSE Linux Enterprise Module for Public Cloud 15 SP1
SUSE Linux Enterprise Module for Server Applications 15
SUSE Linux Enterprise Module for Server Applications 15 SP1
SUSE Linux Enterprise Server 12 SP1
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 SP3-BCL
SUSE Linux Enterprise Server 12 SP3-ESPOS
SUSE Linux Enterprise Server 12 SP3-LTSS
SUSE Linux Enterprise Server 12 SP3-TERADATA
SUSE Linux Enterprise Server 12 SP4
SUSE Linux Enterprise Server 12 SP4-ESPOS
SUSE Linux Enterprise Server 12 SP5
SUSE Linux Enterprise Server 15-LTSS
SUSE Linux Enterprise Server for SAP Applications 12 SP3-BCL
SUSE Linux Enterprise Server for SAP Applications 12 SP3-LTSS
SUSE Linux Enterprise Server for SAP Applications 12 SP3-TERADATA
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 SP5
SUSE Linux Enterprise Workstation Extension 12 SP1
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 Linux Enterprise Workstation Extension 15
SUSE Linux Enterprise Workstation Extension 15 SP1
SUSE Linux Enterprise Workstation Extension 15 SP2
SUSE OpenStack Cloud 8
SUSE OpenStack Cloud Crowbar 8
Product(s):
Definition Synopsis
  • openSUSE Leap 15.0 is installed
  • AND binutils-2.29.1-lp150.4 is installed
  • Definition Synopsis
  • openSUSE Leap 42.3 is installed
  • AND Package Information
  • gnome-settings-daemon-3.20.1-12 is installed
  • OR gnome-settings-daemon-lang-3.20.1-12 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 11 SP3 is installed
  • AND Package Information
  • MozillaFirefox-24.4.0esr-0.8 is installed
  • OR MozillaFirefox-branding-SLED-24-0.7 is installed
  • OR MozillaFirefox-translations-24.4.0esr-0.8 is installed
  • OR mozilla-nspr-4.10.4-0.3 is installed
  • OR mozilla-nspr-32bit-4.10.4-0.3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 11 SP4 is installed
  • AND Package Information
  • flash-player-11.2.202.535-0.20 is installed
  • OR flash-player-gnome-11.2.202.535-0.20 is installed
  • OR flash-player-kde4-11.2.202.535-0.20 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 12 is installed
  • AND Package Information
  • emacs-24.3-14 is installed
  • OR emacs-info-24.3-14 is installed
  • OR emacs-x11-24.3-14 is installed
  • OR etags-24.3-14 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 12 SP1 is installed
  • AND autofs-5.0.9-8 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 12 SP2 is installed
  • AND Package Information
  • avahi-0.6.32-30 is installed
  • OR avahi-lang-0.6.32-30 is installed
  • OR libavahi-client3-0.6.32-30 is installed
  • OR libavahi-client3-32bit-0.6.32-30 is installed
  • OR libavahi-common3-0.6.32-30 is installed
  • OR libavahi-common3-32bit-0.6.32-30 is installed
  • OR libavahi-core7-0.6.32-30 is installed
  • OR libdns_sd-0.6.32-30 is installed
  • OR libdns_sd-32bit-0.6.32-30 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 12 SP3 is installed
  • AND Package Information
  • bind-libs-9.9.9P1-62 is installed
  • OR bind-libs-32bit-9.9.9P1-62 is installed
  • OR bind-utils-9.9.9P1-62 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Desktop 12 SP4 is installed
  • AND SuSEfirewall2-3.6.312.333-3.13 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for additional PackageHub packages 15 is installed
  • AND Package Information
  • avahi-0.6.32-5.5 is installed
  • OR python-avahi-0.6.32-5.5 is installed
  • OR samba-4.7.11+git.153.b36ceaf2235-4.27 is installed
  • OR samba-python-4.7.11+git.153.b36ceaf2235-4.27 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Basesystem 15 is installed
  • AND Package Information
  • groff-1.22.3-3 is installed
  • OR groff-full-1.22.3-3 is installed
  • OR gxditview-1.22.3-3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Basesystem 15 SP1 is installed
  • AND Package Information
  • graphite2-devel-1.3.11-2 is installed
  • OR libgraphite2-3-1.3.11-2 is installed
  • OR libgraphite2-3-32bit-1.3.11-2 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Desktop Applications 15 is installed
  • AND Package Information
  • firewall-applet-0.5.3-2 is installed
  • OR firewall-config-0.5.3-2 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Desktop Applications 15 SP1 is installed
  • AND Package Information
  • colord-color-profiles-1.4.2-1 is installed
  • OR libcolord-devel-1.4.2-1 is installed
  • OR libcolord-gtk-devel-0.1.26-1 is installed
  • OR libcolord-gtk1-0.1.26-1 is installed
  • OR libcolorhug2-1.4.2-1 is installed
  • OR typelib-1_0-Colord-1_0-1.4.2-1 is installed
  • OR typelib-1_0-ColordGtk-1_0-0.1.26-1 is installed
  • OR typelib-1_0-Colorhug-1_0-1.4.2-1 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Development Tools 15 is installed
  • AND python3-tools-3.6.5-1 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Legacy Software 15 is installed
  • AND Package Information
  • kernel-default-4.12.14-25.13 is installed
  • OR reiserfs-kmp-default-4.12.14-25.13 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Live Patching 15 SP1 is installed
  • AND Package Information
  • kernel-livepatch-4_12_14-197_18-default-4-2 is installed
  • OR kernel-livepatch-SLE15-SP1_Update_5-4-2 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Open Buildservice Development Tools 15 is installed
  • AND Package Information
  • 389-ds-1.4.0.26~git0.8a2d3de6f-4.14 is installed
  • OR 389-ds-snmp-1.4.0.26~git0.8a2d3de6f-4.14 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Open Buildservice Development Tools 15 SP1 is installed
  • AND Package Information
  • openconnect-7.08-6.3 is installed
  • OR openconnect-doc-7.08-6.3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Public Cloud 15 is installed
  • AND Package Information
  • kernel-azure-4.12.14-5.5 is installed
  • OR kernel-azure-base-4.12.14-5.5 is installed
  • OR kernel-azure-devel-4.12.14-5.5 is installed
  • OR kernel-devel-azure-4.12.14-5.5 is installed
  • OR kernel-source-azure-4.12.14-5.5 is installed
  • OR kernel-syms-azure-4.12.14-5.5 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Public Cloud 15 SP1 is installed
  • AND aws-cli-1.16.61-6 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Server Applications 15 is installed
  • AND Package Information
  • subversion-1.10.0-3.3 is installed
  • OR subversion-server-1.10.0-3.3 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Module for Server Applications 15 SP1 is installed
  • AND Package Information
  • libfpm_pb0-1.1.1-2 is installed
  • OR libospf0-1.1.1-2 is installed
  • OR libospfapiclient0-1.1.1-2 is installed
  • OR libquagga_pb0-1.1.1-2 is installed
  • OR libzebra1-1.1.1-2 is installed
  • OR quagga-1.1.1-2 is installed
  • OR quagga-devel-1.1.1-2 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP1 is installed
  • AND Package Information
  • openssh-6.6p1-29 is installed
  • OR openssh-fips-6.6p1-29 is installed
  • OR openssh-helpers-6.6p1-29 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP2-BCL is installed
  • AND Package Information
  • libdcerpc-atsvc0-4.2.4-28.36 is installed
  • OR samba-4.2.4-28.36 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP2-ESPOS is installed
  • AND Package Information
  • java-1_8_0-openjdk-1.8.0.171-27.19 is installed
  • OR java-1_8_0-openjdk-demo-1.8.0.171-27.19 is installed
  • OR java-1_8_0-openjdk-devel-1.8.0.171-27.19 is installed
  • OR java-1_8_0-openjdk-headless-1.8.0.171-27.19 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP2-LTSS is installed
  • AND Package Information
  • qemu-2.6.2-41.55 is installed
  • OR qemu-block-curl-2.6.2-41.55 is installed
  • OR qemu-block-rbd-2.6.2-41.55 is installed
  • OR qemu-block-ssh-2.6.2-41.55 is installed
  • OR qemu-guest-agent-2.6.2-41.55 is installed
  • OR qemu-ipxe-1.0.0-41.55 is installed
  • OR qemu-kvm-2.6.2-41.55 is installed
  • OR qemu-lang-2.6.2-41.55 is installed
  • OR qemu-ppc-2.6.2-41.55 is installed
  • OR qemu-s390-2.6.2-41.55 is installed
  • OR qemu-seabios-1.9.1-41.55 is installed
  • OR qemu-sgabios-8-41.55 is installed
  • OR qemu-tools-2.6.2-41.55 is installed
  • OR qemu-vgabios-1.9.1-41.55 is installed
  • OR qemu-x86-2.6.2-41.55 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP3 is installed
  • AND Package Information
  • libMagickCore-6_Q16-1-6.8.8.1-70 is installed
  • OR libMagickWand-6_Q16-1-6.8.8.1-70 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP3-BCL is installed
  • AND
  • java-1_7_0-openjdk-1.7.0.241-43.30 is installed
  • OR java-1_7_0-openjdk-demo-1.7.0.241-43.30 is installed
  • OR java-1_7_0-openjdk-devel-1.7.0.241-43.30 is installed
  • OR java-1_7_0-openjdk-headless-1.7.0.241-43.30 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP3-BCL is installed
  • AND
  • java-1_7_0-openjdk-1.7.0.241-43.30 is installed
  • OR java-1_7_0-openjdk-demo-1.7.0.241-43.30 is installed
  • OR java-1_7_0-openjdk-devel-1.7.0.241-43.30 is installed
  • OR java-1_7_0-openjdk-headless-1.7.0.241-43.30 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP3-ESPOS is installed
  • AND Package Information
  • glibc-2.22-62.22 is installed
  • OR glibc-32bit-2.22-62.22 is installed
  • OR glibc-devel-2.22-62.22 is installed
  • OR glibc-devel-32bit-2.22-62.22 is installed
  • OR glibc-html-2.22-62.22 is installed
  • OR glibc-i18ndata-2.22-62.22 is installed
  • OR glibc-info-2.22-62.22 is installed
  • OR glibc-locale-2.22-62.22 is installed
  • OR glibc-locale-32bit-2.22-62.22 is installed
  • OR glibc-profile-2.22-62.22 is installed
  • OR glibc-profile-32bit-2.22-62.22 is installed
  • OR nscd-2.22-62.22 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP3-LTSS 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 SP3-LTSS 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
  • Release Information
  • SUSE Linux Enterprise Server 12 SP3-TERADATA is installed
  • AND xrdp-0.9.0~git.1456906198.f422461-21.9 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP3-TERADATA is installed
  • AND xrdp-0.9.0~git.1456906198.f422461-21.9 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP3-TERADATA is installed
  • AND Package Information
  • MozillaFirefox-52.9.0esr-109.38 is installed
  • OR MozillaFirefox-translations-52.9.0esr-109.38 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP4 is installed
  • AND
  • kernel-default-4.12.14-95.24 is installed
  • OR kernel-default-base-4.12.14-95.24 is installed
  • OR kernel-default-devel-4.12.14-95.24 is installed
  • OR kernel-default-man-4.12.14-95.24 is installed
  • OR kernel-devel-4.12.14-95.24 is installed
  • OR kernel-macros-4.12.14-95.24 is installed
  • OR kernel-source-4.12.14-95.24 is installed
  • OR kernel-syms-4.12.14-95.24 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP4 is installed
  • AND
  • kernel-default-4.12.14-95.24 is installed
  • OR kernel-default-base-4.12.14-95.24 is installed
  • OR kernel-default-devel-4.12.14-95.24 is installed
  • OR kernel-default-man-4.12.14-95.24 is installed
  • OR kernel-devel-4.12.14-95.24 is installed
  • OR kernel-macros-4.12.14-95.24 is installed
  • OR kernel-source-4.12.14-95.24 is installed
  • OR kernel-syms-4.12.14-95.24 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 12 SP4 is installed
  • AND SuSEfirewall2-3.6.312.333-3.13 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP4-ESPOS is installed
  • AND
  • libQt5Concurrent5-5.6.2-6.25 is installed
  • OR libQt5Core5-5.6.2-6.25 is installed
  • OR libQt5DBus5-5.6.2-6.25 is installed
  • OR libQt5Gui5-5.6.2-6.25 is installed
  • OR libQt5Network5-5.6.2-6.25 is installed
  • OR libQt5OpenGL5-5.6.2-6.25 is installed
  • OR libQt5PrintSupport5-5.6.2-6.25 is installed
  • OR libQt5Sql5-5.6.2-6.25 is installed
  • OR libQt5Sql5-mysql-5.6.2-6.25 is installed
  • OR libQt5Sql5-postgresql-5.6.2-6.25 is installed
  • OR libQt5Sql5-sqlite-5.6.2-6.25 is installed
  • OR libQt5Sql5-unixODBC-5.6.2-6.25 is installed
  • OR libQt5Test5-5.6.2-6.25 is installed
  • OR libQt5Widgets5-5.6.2-6.25 is installed
  • OR libQt5Xml5-5.6.2-6.25 is installed
  • OR libqt5-qtbase-5.6.2-6.25 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP4-ESPOS is installed
  • AND
  • libQt5Concurrent5-5.6.2-6.25 is installed
  • OR libQt5Core5-5.6.2-6.25 is installed
  • OR libQt5DBus5-5.6.2-6.25 is installed
  • OR libQt5Gui5-5.6.2-6.25 is installed
  • OR libQt5Network5-5.6.2-6.25 is installed
  • OR libQt5OpenGL5-5.6.2-6.25 is installed
  • OR libQt5PrintSupport5-5.6.2-6.25 is installed
  • OR libQt5Sql5-5.6.2-6.25 is installed
  • OR libQt5Sql5-mysql-5.6.2-6.25 is installed
  • OR libQt5Sql5-postgresql-5.6.2-6.25 is installed
  • OR libQt5Sql5-sqlite-5.6.2-6.25 is installed
  • OR libQt5Sql5-unixODBC-5.6.2-6.25 is installed
  • OR libQt5Test5-5.6.2-6.25 is installed
  • OR libQt5Widgets5-5.6.2-6.25 is installed
  • OR libQt5Xml5-5.6.2-6.25 is installed
  • OR libqt5-qtbase-5.6.2-6.25 is installed
  • Definition Synopsis
  • Release Information
  • SUSE Linux Enterprise Server 12 SP5 is installed
  • AND
  • java-1_7_1-ibm-1.7.1_sr4.65-38.53 is installed
  • OR java-1_7_1-ibm-alsa-1.7.1_sr4.65-38.53 is installed
  • OR java-1_7_1-ibm-devel-1.7.1_sr4.65-38.53 is installed
  • OR java-1_7_1-ibm-jdbc-1.7.1_sr4.65-38.53 is installed
  • OR java-1_7_1-ibm-plugin-1.7.1_sr4.65-38.53 is installed
  • OR Package Information
  • SUSE Linux Enterprise Server for SAP Applications 12 SP5 is installed
  • AND
  • java-1_7_1-ibm-1.7.1_sr4.65-38.53 is installed
  • OR java-1_7_1-ibm-alsa-1.7.1_sr4.65-38.53 is installed
  • OR java-1_7_1-ibm-devel-1.7.1_sr4.65-38.53 is installed
  • OR java-1_7_1-ibm-jdbc-1.7.1_sr4.65-38.53 is installed
  • OR java-1_7_1-ibm-plugin-1.7.1_sr4.65-38.53 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Server 15-LTSS is installed
  • AND Package Information
  • libpcp-devel-3.11.9-5.8 is installed
  • OR libpcp3-3.11.9-5.8 is installed
  • OR libpcp_gui2-3.11.9-5.8 is installed
  • OR libpcp_import1-3.11.9-5.8 is installed
  • OR libpcp_mmv1-3.11.9-5.8 is installed
  • OR libpcp_trace2-3.11.9-5.8 is installed
  • OR libpcp_web1-3.11.9-5.8 is installed
  • OR pcp-3.11.9-5.8 is installed
  • OR pcp-conf-3.11.9-5.8 is installed
  • OR pcp-devel-3.11.9-5.8 is installed
  • OR pcp-doc-3.11.9-5.8 is installed
  • OR pcp-import-iostat2pcp-3.11.9-5.8 is installed
  • OR pcp-import-mrtg2pcp-3.11.9-5.8 is installed
  • OR pcp-import-sar2pcp-3.11.9-5.8 is installed
  • OR perl-PCP-LogImport-3.11.9-5.8 is installed
  • OR perl-PCP-LogSummary-3.11.9-5.8 is installed
  • OR perl-PCP-MMV-3.11.9-5.8 is installed
  • OR perl-PCP-PMDA-3.11.9-5.8 is installed
  • OR python-pcp-3.11.9-5.8 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 SP1 is installed
  • AND Package Information
  • flash-player-11.2.202.632-137 is installed
  • OR flash-player-gnome-11.2.202.632-137 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 SP2 is installed
  • AND Package Information
  • gd-2.1.0-20 is installed
  • OR gd-32bit-2.1.0-20 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 SP3 is installed
  • AND Package Information
  • libofx-0.9.9-3.7 is installed
  • OR libofx6-0.9.9-3.7 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 SP4 is installed
  • AND Package Information
  • bluez-5.13-5.20 is installed
  • OR bluez-cups-5.13-5.20 is installed
  • OR cmis-client-0.5.2-9.3 is installed
  • OR libcmis-0_5-5-0.5.2-9.3 is installed
  • OR libixion-0.15.0-13.12 is installed
  • OR libixion-0_15-0-0.15.0-13.12 is installed
  • OR libmwaw-0.3.15-7.15 is installed
  • OR libmwaw-0_3-3-0.3.15-7.15 is installed
  • OR liborcus-0.15.3-10.15 is installed
  • OR liborcus-0_15-0-0.15.3-10.15 is installed
  • OR libreoffice-6.3.3.2-43.59 is installed
  • OR libreoffice-base-6.3.3.2-43.59 is installed
  • OR libreoffice-base-drivers-postgresql-6.3.3.2-43.59 is installed
  • OR libreoffice-branding-upstream-6.3.3.2-43.59 is installed
  • OR libreoffice-calc-6.3.3.2-43.59 is installed
  • OR libreoffice-calc-extensions-6.3.3.2-43.59 is installed
  • OR libreoffice-draw-6.3.3.2-43.59 is installed
  • OR libreoffice-filters-optional-6.3.3.2-43.59 is installed
  • OR libreoffice-gnome-6.3.3.2-43.59 is installed
  • OR libreoffice-icon-themes-6.3.3.2-43.59 is installed
  • OR libreoffice-impress-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-af-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-ar-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-bg-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-ca-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-cs-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-da-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-de-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-en-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-es-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-fi-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-fr-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-gu-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-hi-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-hr-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-hu-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-it-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-ja-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-ko-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-lt-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-nb-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-nl-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-nn-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-pl-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-pt_BR-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-pt_PT-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-ro-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-ru-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-sk-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-sv-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-uk-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-xh-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-zh_CN-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-zh_TW-6.3.3.2-43.59 is installed
  • OR libreoffice-l10n-zu-6.3.3.2-43.59 is installed
  • OR libreoffice-librelogo-6.3.3.2-43.59 is installed
  • OR libreoffice-mailmerge-6.3.3.2-43.59 is installed
  • OR libreoffice-math-6.3.3.2-43.59 is installed
  • OR libreoffice-officebean-6.3.3.2-43.59 is installed
  • OR libreoffice-pyuno-6.3.3.2-43.59 is installed
  • OR libreoffice-writer-6.3.3.2-43.59 is installed
  • OR libreoffice-writer-extensions-6.3.3.2-43.59 is installed
  • OR myspell-af_NA-20191016-16.21 is installed
  • OR myspell-af_ZA-20191016-16.21 is installed
  • OR myspell-ar-20191016-16.21 is installed
  • OR myspell-ar_AE-20191016-16.21 is installed
  • OR myspell-ar_BH-20191016-16.21 is installed
  • OR myspell-ar_DZ-20191016-16.21 is installed
  • OR myspell-ar_EG-20191016-16.21 is installed
  • OR myspell-ar_IQ-20191016-16.21 is installed
  • OR myspell-ar_JO-20191016-16.21 is installed
  • OR myspell-ar_KW-20191016-16.21 is installed
  • OR myspell-ar_LB-20191016-16.21 is installed
  • OR myspell-ar_LY-20191016-16.21 is installed
  • OR myspell-ar_MA-20191016-16.21 is installed
  • OR myspell-ar_OM-20191016-16.21 is installed
  • OR myspell-ar_QA-20191016-16.21 is installed
  • OR myspell-ar_SA-20191016-16.21 is installed
  • OR myspell-ar_SD-20191016-16.21 is installed
  • OR myspell-ar_SY-20191016-16.21 is installed
  • OR myspell-ar_TN-20191016-16.21 is installed
  • OR myspell-ar_YE-20191016-16.21 is installed
  • OR myspell-be_BY-20191016-16.21 is installed
  • OR myspell-bg_BG-20191016-16.21 is installed
  • OR myspell-bn_BD-20191016-16.21 is installed
  • OR myspell-bn_IN-20191016-16.21 is installed
  • OR myspell-bs-20191016-16.21 is installed
  • OR myspell-bs_BA-20191016-16.21 is installed
  • OR myspell-ca-20191016-16.21 is installed
  • OR myspell-ca_AD-20191016-16.21 is installed
  • OR myspell-ca_ES-20191016-16.21 is installed
  • OR myspell-ca_ES_valencia-20191016-16.21 is installed
  • OR myspell-ca_FR-20191016-16.21 is installed
  • OR myspell-ca_IT-20191016-16.21 is installed
  • OR myspell-cs_CZ-20191016-16.21 is installed
  • OR myspell-da_DK-20191016-16.21 is installed
  • OR myspell-de-20191016-16.21 is installed
  • OR myspell-de_AT-20191016-16.21 is installed
  • OR myspell-de_CH-20191016-16.21 is installed
  • OR myspell-de_DE-20191016-16.21 is installed
  • OR myspell-dictionaries-20191016-16.21 is installed
  • OR myspell-el_GR-20191016-16.21 is installed
  • OR myspell-en-20191016-16.21 is installed
  • OR myspell-en_AU-20191016-16.21 is installed
  • OR myspell-en_BS-20191016-16.21 is installed
  • OR myspell-en_BZ-20191016-16.21 is installed
  • OR myspell-en_CA-20191016-16.21 is installed
  • OR myspell-en_GB-20191016-16.21 is installed
  • OR myspell-en_GH-20191016-16.21 is installed
  • OR myspell-en_IE-20191016-16.21 is installed
  • OR myspell-en_IN-20191016-16.21 is installed
  • OR myspell-en_JM-20191016-16.21 is installed
  • OR myspell-en_MW-20191016-16.21 is installed
  • OR myspell-en_NA-20191016-16.21 is installed
  • OR myspell-en_NZ-20191016-16.21 is installed
  • OR myspell-en_PH-20191016-16.21 is installed
  • OR myspell-en_TT-20191016-16.21 is installed
  • OR myspell-en_US-20191016-16.21 is installed
  • OR myspell-en_ZA-20191016-16.21 is installed
  • OR myspell-en_ZW-20191016-16.21 is installed
  • OR myspell-es-20191016-16.21 is installed
  • OR myspell-es_AR-20191016-16.21 is installed
  • OR myspell-es_BO-20191016-16.21 is installed
  • OR myspell-es_CL-20191016-16.21 is installed
  • OR myspell-es_CO-20191016-16.21 is installed
  • OR myspell-es_CR-20191016-16.21 is installed
  • OR myspell-es_CU-20191016-16.21 is installed
  • OR myspell-es_DO-20191016-16.21 is installed
  • OR myspell-es_EC-20191016-16.21 is installed
  • OR myspell-es_ES-20191016-16.21 is installed
  • OR myspell-es_GT-20191016-16.21 is installed
  • OR myspell-es_HN-20191016-16.21 is installed
  • OR myspell-es_MX-20191016-16.21 is installed
  • OR myspell-es_NI-20191016-16.21 is installed
  • OR myspell-es_PA-20191016-16.21 is installed
  • OR myspell-es_PE-20191016-16.21 is installed
  • OR myspell-es_PR-20191016-16.21 is installed
  • OR myspell-es_PY-20191016-16.21 is installed
  • OR myspell-es_SV-20191016-16.21 is installed
  • OR myspell-es_UY-20191016-16.21 is installed
  • OR myspell-es_VE-20191016-16.21 is installed
  • OR myspell-et_EE-20191016-16.21 is installed
  • OR myspell-fr_BE-20191016-16.21 is installed
  • OR myspell-fr_CA-20191016-16.21 is installed
  • OR myspell-fr_CH-20191016-16.21 is installed
  • OR myspell-fr_FR-20191016-16.21 is installed
  • OR myspell-fr_LU-20191016-16.21 is installed
  • OR myspell-fr_MC-20191016-16.21 is installed
  • OR myspell-gu_IN-20191016-16.21 is installed
  • OR myspell-he_IL-20191016-16.21 is installed
  • OR myspell-hi_IN-20191016-16.21 is installed
  • OR myspell-hr_HR-20191016-16.21 is installed
  • OR myspell-hu_HU-20191016-16.21 is installed
  • OR myspell-id-20191016-16.21 is installed
  • OR myspell-id_ID-20191016-16.21 is installed
  • OR myspell-it_IT-20191016-16.21 is installed
  • OR myspell-lightproof-en-20191016-16.21 is installed
  • OR myspell-lightproof-hu_HU-20191016-16.21 is installed
  • OR myspell-lightproof-pt_BR-20191016-16.21 is installed
  • OR myspell-lightproof-ru_RU-20191016-16.21 is installed
  • OR myspell-lo_LA-20191016-16.21 is installed
  • OR myspell-lt_LT-20191016-16.21 is installed
  • OR myspell-lv_LV-20191016-16.21 is installed
  • OR myspell-nb_NO-20191016-16.21 is installed
  • OR myspell-nl_BE-20191016-16.21 is installed
  • OR myspell-nl_NL-20191016-16.21 is installed
  • OR myspell-nn_NO-20191016-16.21 is installed
  • OR myspell-no-20191016-16.21 is installed
  • OR myspell-pl_PL-20191016-16.21 is installed
  • OR myspell-pt_AO-20191016-16.21 is installed
  • OR myspell-pt_BR-20191016-16.21 is installed
  • OR myspell-pt_PT-20191016-16.21 is installed
  • OR myspell-ro-20191016-16.21 is installed
  • OR myspell-ro_RO-20191016-16.21 is installed
  • OR myspell-ru_RU-20191016-16.21 is installed
  • OR myspell-sk_SK-20191016-16.21 is installed
  • OR myspell-sl_SI-20191016-16.21 is installed
  • OR myspell-sr-20191016-16.21 is installed
  • OR myspell-sr_CS-20191016-16.21 is installed
  • OR myspell-sr_Latn_CS-20191016-16.21 is installed
  • OR myspell-sr_Latn_RS-20191016-16.21 is installed
  • OR myspell-sr_RS-20191016-16.21 is installed
  • OR myspell-sv_FI-20191016-16.21 is installed
  • OR myspell-sv_SE-20191016-16.21 is installed
  • OR myspell-te-20191016-16.21 is installed
  • OR myspell-te_IN-20191016-16.21 is installed
  • OR myspell-th_TH-20191016-16.21 is installed
  • OR myspell-uk_UA-20191016-16.21 is installed
  • OR myspell-vi-20191016-16.21 is installed
  • OR myspell-vi_VN-20191016-16.21 is installed
  • OR myspell-zu_ZA-20191016-16.21 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 12 SP5 is installed
  • AND Package Information
  • guile1-1.8.8-16.4 is installed
  • OR libguile-srfi-srfi-1-v-3-3-1.8.8-16.4 is installed
  • OR libguile-srfi-srfi-13-14-v-3-3-1.8.8-16.4 is installed
  • OR libguile-srfi-srfi-4-v-3-3-1.8.8-16.4 is installed
  • OR libguile-srfi-srfi-60-v-2-2-1.8.8-16.4 is installed
  • OR libguile17-1.8.8-16.4 is installed
  • OR libguilereadline-v-17-17-1.8.8-16.4 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 15 is installed
  • AND Package Information
  • PackageKit-gstreamer-plugin-1.1.10-2 is installed
  • OR PackageKit-gtk3-module-1.1.10-2 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 15 SP1 is installed
  • AND Package Information
  • libixion-0.14.1-4.3 is installed
  • OR libixion-0_14-0-0.14.1-4.3 is installed
  • OR liborcus-0.14.1-3.3 is installed
  • OR liborcus-0_14-0-0.14.1-3.3 is installed
  • OR liborcus-devel-0.14.1-3.3 is installed
  • OR myspell-af_ZA-20190423-3.9 is installed
  • OR myspell-ar-20190423-3.9 is installed
  • OR myspell-bg_BG-20190423-3.9 is installed
  • OR myspell-bn_BD-20190423-3.9 is installed
  • OR myspell-br_FR-20190423-3.9 is installed
  • OR myspell-ca-20190423-3.9 is installed
  • OR myspell-cs_CZ-20190423-3.9 is installed
  • OR myspell-da_DK-20190423-3.9 is installed
  • OR myspell-dictionaries-20190423-3.9 is installed
  • OR myspell-el_GR-20190423-3.9 is installed
  • OR myspell-et_EE-20190423-3.9 is installed
  • OR myspell-fr_FR-20190423-3.9 is installed
  • OR myspell-gl-20190423-3.9 is installed
  • OR myspell-gu_IN-20190423-3.9 is installed
  • OR myspell-he_IL-20190423-3.9 is installed
  • OR myspell-hi_IN-20190423-3.9 is installed
  • OR myspell-hr_HR-20190423-3.9 is installed
  • OR myspell-it_IT-20190423-3.9 is installed
  • OR myspell-lt_LT-20190423-3.9 is installed
  • OR myspell-lv_LV-20190423-3.9 is installed
  • OR myspell-nl_NL-20190423-3.9 is installed
  • OR myspell-nn_NO-20190423-3.9 is installed
  • OR myspell-pl_PL-20190423-3.9 is installed
  • OR myspell-pt_PT-20190423-3.9 is installed
  • OR myspell-si_LK-20190423-3.9 is installed
  • OR myspell-sk_SK-20190423-3.9 is installed
  • OR myspell-sl_SI-20190423-3.9 is installed
  • OR myspell-sr-20190423-3.9 is installed
  • OR myspell-sv_SE-20190423-3.9 is installed
  • OR myspell-te_IN-20190423-3.9 is installed
  • OR myspell-th_TH-20190423-3.9 is installed
  • OR myspell-tr_TR-20190423-3.9 is installed
  • OR myspell-uk_UA-20190423-3.9 is installed
  • OR myspell-zu_ZA-20190423-3.9 is installed
  • Definition Synopsis
  • SUSE Linux Enterprise Workstation Extension 15 SP2 is installed
  • AND Package Information
  • MozillaThunderbird-68.8.0-3.80 is installed
  • OR MozillaThunderbird-translations-common-68.8.0-3.80 is installed
  • OR MozillaThunderbird-translations-other-68.8.0-3.80 is installed
  • Definition Synopsis
  • SUSE OpenStack Cloud 8 is installed
  • AND Package Information
  • kernel-default-4.4.180-94.103 is installed
  • OR kernel-default-base-4.4.180-94.103 is installed
  • OR kernel-default-devel-4.4.180-94.103 is installed
  • OR kernel-devel-4.4.180-94.103 is installed
  • OR kernel-macros-4.4.180-94.103 is installed
  • OR kernel-source-4.4.180-94.103 is installed
  • OR kernel-syms-4.4.180-94.103 is installed
  • OR kgraft-patch-4_4_180-94_103-default-1-4.3 is installed
  • OR kgraft-patch-SLE12-SP3_Update_28-1-4.3 is installed
  • Definition Synopsis
  • SUSE OpenStack Cloud Crowbar 8 is installed
  • AND Package Information
  • libsolv-0.6.36-2.27.19 is installed
  • OR libsolv-tools-0.6.36-2.27.19 is installed
  • OR libzypp-16.20.2-27.60 is installed
  • OR perl-solv-0.6.36-2.27.19 is installed
  • OR python-solv-0.6.36-2.27.19 is installed
  • OR zypper-1.13.54-18.40 is installed
  • OR zypper-log-1.13.54-18.40 is installed
  • BACK