<?xml version="1.0" encoding="UTF-8"?>
<cvrfdoc xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:cpe="http://cpe.mitre.org/language/2.0" xmlns:cvrf="http://docs.oasis-open.org/csaf/ns/csaf-cvrf/v1.2/cvrf" xmlns:cvrf-common="http://docs.oasis-open.org/csaf/ns/csaf-cvrf/v1.2/common" xmlns:cvssv2="http://scap.nist.gov/schema/cvss-v2/1.0" xmlns:cvssv3="https://www.first.org/cvss/cvss-v3.0.xsd" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://purl.org/dc/elements/1.1/" xmlns:prod="http://docs.oasis-open.org/csaf/ns/csaf-cvrf/v1.2/prod" xmlns:scap-core="http://scap.nist.gov/schema/scap-core/1.0" xmlns:sch="http://purl.oclc.org/dsdl/schematron" xmlns:vuln="http://docs.oasis-open.org/csaf/ns/csaf-cvrf/v1.2/vuln" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://docs.oasis-open.org/csaf/ns/csaf-cvrf/v1.2/cvrf">
  <DocumentTitle xml:lang="en">Security update for git</DocumentTitle>
  <DocumentType>SUSE Patch</DocumentType>
  <DocumentPublisher Type="Vendor">
    <ContactDetails>security@suse.de</ContactDetails>
    <IssuingAuthority>SUSE Security Team</IssuingAuthority>
  </DocumentPublisher>
  <DocumentTracking>
    <Identification>
      <ID>SUSE-SU-2021:2555-1</ID>
    </Identification>
    <Status>Final</Status>
    <Version>1</Version>
    <RevisionHistory>
      <Revision>
        <Number>1</Number>
        <Date>2021-07-29T06:30:03Z</Date>
        <Description>current</Description>
      </Revision>
    </RevisionHistory>
    <InitialReleaseDate>2021-07-29T06:30:03Z</InitialReleaseDate>
    <CurrentReleaseDate>2021-07-29T06:30:03Z</CurrentReleaseDate>
    <Generator>
      <Engine>cve-database/bin/generate-cvrf.pl</Engine>
      <Date>2017-02-24T01:00:00Z</Date>
    </Generator>
  </DocumentTracking>
  <DocumentNotes>
    <Note Title="Topic" Type="Summary" Ordinal="1" xml:lang="en">Security update for git</Note>
    <Note Title="Details" Type="General" Ordinal="2" xml:lang="en">This update for git fixes the following issues:

Update from version 2.26.2 to version 2.31.1 (jsc#SLE-18152)

Security fixes:

- CVE-2021-21300: On case-insensitive file systems with support for symbolic links, if Git is configured globally 
  to apply delay-capable clean/smudge filters (such as Git LFS), Git could run remote code during a clone. (bsc#1183026)

Non security changes:

- Add `sysusers` file to create `git-daemon` user.
- Remove `perl-base` and `openssh-server` dependency on `git-core`and provide a `perl-Git` package. (jsc#SLE-17838)
- `fsmonitor` bug fixes
- Fix `git bisect` to take an annotated tag as a good/bad endpoint
- Fix a corner case in `git mv` on case insensitive systems
- Require only `openssh-clients` where possible (like Tumbleweed or SUSE Linux Enterprise &gt;= 15 SP3). (bsc#1183580)
- Drop `rsync` requirement, not necessary anymore.
- Use of `pack-redundant` command is discouraged and will trigger a warning. The replacement is `repack -d`.
- The `--format=%(trailers)` mechanism gets enhanced to make it easier to design output for machine consumption.
- No longer give message to choose between rebase or merge upon pull if the history `fast-forwards`.
- The configuration variable `core.abbrev` can be set to `no` to force no abbreviation regardless of the hash algorithm
- `git rev-parse` can be explicitly told to give output as absolute or relative path with the 
  `--path-format=(absolute|relative)` option.
- Bash completion update to make it easier for end-users to add completion for their custom `git` subcommands.
- `git maintenance` learned to drive scheduled maintenance on platforms whose native scheduling methods are not 'cron'.
- After expiring a reflog and making a single commit, the reflog for the branch would record a single entry that 
  knows both `@{0}` and `@{1}`, but we failed to answer 'what commit were we on?', i.e. `@{1}`
- `git bundle` learns `--stdin` option to read its refs from the standard input.  
  Also, it now does not lose refs when they point at the same object.
- `git log` learned a new `--diff-merges=&lt;how&gt;` option.
- `git ls-files` can and does show multiple entries when the index is unmerged, which is a source for confusion 
  unless `-s/-u` option is in use.  A new option `--deduplicate` has been introduced.
- `git worktree list` now annotates worktrees as prunable, shows locked and prunable attributes 
  in `--porcelain mode`, and gained a `--verbose` option.
- `git clone` tries to locally check out the branch pointed at by HEAD of the remote repository after it 
  is done, but the protocol did not convey the information necessary to do so when copying an empty repository.  
  The protocol v2 learned how to do so.
- There are other ways than `..` for a single token to denote a `commit range', namely `&lt;rev&gt;^!` 
   and `&lt;rev&gt;^-&lt;n&gt;`, but `git range-diff` did not understand them.
- The `git range-diff` command learned `--(left|right)-only` option to show only one side of the compared range.
- `git mergetool` feeds three versions (base, local and remote) of a conflicted path unmodified. 
  The command learned to optionally prepare these files with unconflicted parts already resolved.
- The `.mailmap` is documented to be read only from the root level of a working tree, but a stray file 
  in a bare repository also was read by accident, which has been corrected.
- `git maintenance` tool learned a new `pack-refs` maintenance task.
- Improved error message given when a configuration variable that is expected to have a boolean value.
- Signed commits and tags now allow verification of objects, whose two object names 
  (one in SHA-1, the other in SHA-256) are both signed.
- `git rev-list` command learned `--disk-usage` option.
- `git diff`, `git log` `--{skip,rotate}-to=&lt;path&gt;` allows the user to discard diff output for early 
  paths or move them to the end of the output.
- `git difftool` learned `--skip-to=&lt;path&gt;` option to restart an interrupted session from an arbitrary path.
- `git grep` has been tweaked to be limited to the sparse checkout paths.
- `git rebase --[no-]fork-point` gained a configuration variable `rebase.forkPoint` so that users do not have 
  to keep specifying a non-default setting.
- `git stash` did not work well in a sparsely checked out working tree.
- Newline characters in the host and path part of `git://` URL are now forbidden.
- `Userdiff` updates for PHP, Rust, CSS
- Avoid administrator error leading to data loss with `git push --force-with-lease[=&lt;ref&gt;]` by 
  introducing `--force-if-includes`
- only pull `asciidoctor` for the default ruby version
- The `--committer-date-is-author-date` option of `rebase` and `am` subcommands lost the e-mail address by 
  mistake in 2.29
- The transport protocol v2 has become the default again
- `git worktree` gained a `repair` subcommand, `git init --separate-git-dir` no longer corrupts administrative data 
  related to linked worktrees
- `git maintenance` introduced for repository maintenance tasks
- `fetch.writeCommitGraph` is deemed to be still a bit too risky and is no longer part of the 
  `feature.experimental` set.
- The commands in the `diff` family honors the `diff.relative` configuration variable.
- `git diff-files` has been taught to say paths that are marked as `intent-to-add` are new files, 
  not modified from an empty blob.
- `git gui` now allows opening work trees from the start-up dialog.
- `git bugreport` reports what shell is in use.
- Some repositories have commits that record wrong committer timezone; `git fast-import` has an option to pass 
  these timestamps intact to allow recreating existing repositories as-is.
- `git describe` will always use the `long` version when giving its output based misplaced tags 
- `git pull` issues a warning message until the `pull.rebase` configuration variable is explicitly given
  </Note>
    <Note Title="Terms of Use" Type="Legal Disclaimer" Ordinal="3" xml:lang="en">The CVRF data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).</Note>
    <Note Title="Patchnames" Type="Details" Ordinal="4" xml:lang="en">Container bci/golang:1.16-2021-2555,Container bci/golang:1.17-2021-2555,Container bci/golang:1.18-2021-2555,Container bci/golang:1.19-2021-2555,Container bci/golang:1.20-openssl-2021-2555,Container bci/golang:1.21-2021-2555,Container bci/golang:latest-2021-2555,Container bci/node:12-2021-2555,Container bci/node:14-2021-2555,Container bci/node:16-2021-2555,Container bci/node:18-2021-2555,Container bci/nodejs:latest-2021-2555,Container bci/openjdk-devel:11-2021-2555,Container bci/openjdk-devel:latest-2021-2555,Container bci/openjdk:11-2021-2555,Container bci/openjdk:17-2021-2555,Container bci/python:3-2021-2555,Container bci/python:latest-2021-2555,Container bci/ruby:latest-2021-2555,Container suse/git:latest-2021-2555,SUSE-2021-2555,SUSE-SLE-Module-Basesystem-15-SP3-2021-2555,SUSE-SLE-Module-Development-Tools-15-SP3-2021-2555</Note>
  </DocumentNotes>
  <DocumentDistribution xml:lang="en">Copyright SUSE LLC under the Creative Commons License 4.0 with Attribution (CC-BY-4.0)</DocumentDistribution>
  <DocumentReferences>
    <Reference Type="Self">
      <URL>https://www.suse.com/support/update/announcement/2021/suse-su-20212555-1/</URL>
      <Description>Link for SUSE-SU-2021:2555-1</Description>
    </Reference>
    <Reference Type="Self">
      <URL>https://lists.suse.com/pipermail/sle-security-updates/2021-July/009228.html</URL>
      <Description>E-Mail link for SUSE-SU-2021:2555-1</Description>
    </Reference>
    <Reference Type="Self">
      <URL>https://www.suse.com/support/security/rating/</URL>
      <Description>SUSE Security Ratings</Description>
    </Reference>
    <Reference Type="Self">
      <URL>https://bugzilla.suse.com/1168930</URL>
      <Description>SUSE Bug 1168930</Description>
    </Reference>
    <Reference Type="Self">
      <URL>https://bugzilla.suse.com/1183026</URL>
      <Description>SUSE Bug 1183026</Description>
    </Reference>
    <Reference Type="Self">
      <URL>https://bugzilla.suse.com/1183580</URL>
      <Description>SUSE Bug 1183580</Description>
    </Reference>
    <Reference Type="Self">
      <URL>https://www.suse.com/security/cve/CVE-2021-21300/</URL>
      <Description>SUSE CVE CVE-2021-21300 page</Description>
    </Reference>
  </DocumentReferences>
  <ProductTree xmlns="http://docs.oasis-open.org/csaf/ns/csaf-cvrf/v1.2/prod">
    <Branch Type="Product Family" Name="Container bci/golang:1.16">
      <Branch Type="Product Name" Name="Container bci/golang:1.16">
        <FullProductName ProductID="Container bci/golang:1.16">Container bci/golang:1.16</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Container bci/golang:1.17">
      <Branch Type="Product Name" Name="Container bci/golang:1.17">
        <FullProductName ProductID="Container bci/golang:1.17">Container bci/golang:1.17</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Container bci/golang:1.18">
      <Branch Type="Product Name" Name="Container bci/golang:1.18">
        <FullProductName ProductID="Container bci/golang:1.18">Container bci/golang:1.18</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Container bci/golang:1.19">
      <Branch Type="Product Name" Name="Container bci/golang:1.19">
        <FullProductName ProductID="Container bci/golang:1.19">Container bci/golang:1.19</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Container bci/golang:1.20-openssl">
      <Branch Type="Product Name" Name="Container bci/golang:1.20-openssl">
        <FullProductName ProductID="Container bci/golang:1.20-openssl">Container bci/golang:1.20-openssl</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Container bci/golang:1.21">
      <Branch Type="Product Name" Name="Container bci/golang:1.21">
        <FullProductName ProductID="Container bci/golang:1.21">Container bci/golang:1.21</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Container bci/golang:latest">
      <Branch Type="Product Name" Name="Container bci/golang:latest">
        <FullProductName ProductID="Container bci/golang:latest">Container bci/golang:latest</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Container bci/node:12">
      <Branch Type="Product Name" Name="Container bci/node:12">
        <FullProductName ProductID="Container bci/node:12">Container bci/node:12</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Container bci/node:14">
      <Branch Type="Product Name" Name="Container bci/node:14">
        <FullProductName ProductID="Container bci/node:14">Container bci/node:14</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Container bci/node:16">
      <Branch Type="Product Name" Name="Container bci/node:16">
        <FullProductName ProductID="Container bci/node:16">Container bci/node:16</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Container bci/node:18">
      <Branch Type="Product Name" Name="Container bci/node:18">
        <FullProductName ProductID="Container bci/node:18">Container bci/node:18</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Container bci/nodejs:latest">
      <Branch Type="Product Name" Name="Container bci/nodejs:latest">
        <FullProductName ProductID="Container bci/nodejs:latest">Container bci/nodejs:latest</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Container bci/openjdk-devel:11">
      <Branch Type="Product Name" Name="Container bci/openjdk-devel:11">
        <FullProductName ProductID="Container bci/openjdk-devel:11">Container bci/openjdk-devel:11</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Container bci/openjdk-devel:latest">
      <Branch Type="Product Name" Name="Container bci/openjdk-devel:latest">
        <FullProductName ProductID="Container bci/openjdk-devel:latest">Container bci/openjdk-devel:latest</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Container bci/openjdk:11">
      <Branch Type="Product Name" Name="Container bci/openjdk:11">
        <FullProductName ProductID="Container bci/openjdk:11">Container bci/openjdk:11</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Container bci/openjdk:17">
      <Branch Type="Product Name" Name="Container bci/openjdk:17">
        <FullProductName ProductID="Container bci/openjdk:17">Container bci/openjdk:17</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Container bci/python:3">
      <Branch Type="Product Name" Name="Container bci/python:3">
        <FullProductName ProductID="Container bci/python:3">Container bci/python:3</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Container bci/python:latest">
      <Branch Type="Product Name" Name="Container bci/python:latest">
        <FullProductName ProductID="Container bci/python:latest">Container bci/python:latest</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Container bci/ruby:latest">
      <Branch Type="Product Name" Name="Container bci/ruby:latest">
        <FullProductName ProductID="Container bci/ruby:latest">Container bci/ruby:latest</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Container suse/git:latest">
      <Branch Type="Product Name" Name="Container suse/git:latest">
        <FullProductName ProductID="Container suse/git:latest">Container suse/git:latest</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Module for Basesystem 15 SP3">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Module for Basesystem 15 SP3">
        <FullProductName ProductID="SUSE Linux Enterprise Module for Basesystem 15 SP3" CPE="cpe:/o:suse:sle-module-basesystem:15:sp3">SUSE Linux Enterprise Module for Basesystem 15 SP3</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Module for Development Tools 15 SP3">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Module for Development Tools 15 SP3">
        <FullProductName ProductID="SUSE Linux Enterprise Module for Development Tools 15 SP3" CPE="cpe:/o:suse:sle-module-development-tools:15:sp3">SUSE Linux Enterprise Module for Development Tools 15 SP3</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Version" Name="git-core-2.31.1-10.3.1">
      <FullProductName ProductID="git-core-2.31.1-10.3.1">git-core-2.31.1-10.3.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="git-2.31.1-10.3.1">
      <FullProductName ProductID="git-2.31.1-10.3.1">git-2.31.1-10.3.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="git-arch-2.31.1-10.3.1">
      <FullProductName ProductID="git-arch-2.31.1-10.3.1">git-arch-2.31.1-10.3.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="git-credential-gnome-keyring-2.31.1-10.3.1">
      <FullProductName ProductID="git-credential-gnome-keyring-2.31.1-10.3.1">git-credential-gnome-keyring-2.31.1-10.3.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="git-credential-libsecret-2.31.1-10.3.1">
      <FullProductName ProductID="git-credential-libsecret-2.31.1-10.3.1">git-credential-libsecret-2.31.1-10.3.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="git-cvs-2.31.1-10.3.1">
      <FullProductName ProductID="git-cvs-2.31.1-10.3.1">git-cvs-2.31.1-10.3.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="git-daemon-2.31.1-10.3.1">
      <FullProductName ProductID="git-daemon-2.31.1-10.3.1">git-daemon-2.31.1-10.3.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="git-doc-2.31.1-10.3.1">
      <FullProductName ProductID="git-doc-2.31.1-10.3.1">git-doc-2.31.1-10.3.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="git-email-2.31.1-10.3.1">
      <FullProductName ProductID="git-email-2.31.1-10.3.1">git-email-2.31.1-10.3.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="git-gui-2.31.1-10.3.1">
      <FullProductName ProductID="git-gui-2.31.1-10.3.1">git-gui-2.31.1-10.3.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="git-p4-2.31.1-10.3.1">
      <FullProductName ProductID="git-p4-2.31.1-10.3.1">git-p4-2.31.1-10.3.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="git-svn-2.31.1-10.3.1">
      <FullProductName ProductID="git-svn-2.31.1-10.3.1">git-svn-2.31.1-10.3.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="git-web-2.31.1-10.3.1">
      <FullProductName ProductID="git-web-2.31.1-10.3.1">git-web-2.31.1-10.3.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="gitk-2.31.1-10.3.1">
      <FullProductName ProductID="gitk-2.31.1-10.3.1">gitk-2.31.1-10.3.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="perl-Git-2.31.1-10.3.1">
      <FullProductName ProductID="perl-Git-2.31.1-10.3.1">perl-Git-2.31.1-10.3.1</FullProductName>
    </Branch>
    <Relationship ProductReference="git-core-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="Container bci/golang:1.16">
      <FullProductName ProductID="Container bci/golang:1.16:git-core-2.31.1-10.3.1">git-core-2.31.1-10.3.1 as a component of Container bci/golang:1.16</FullProductName>
    </Relationship>
    <Relationship ProductReference="git-core-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="Container bci/golang:1.17">
      <FullProductName ProductID="Container bci/golang:1.17:git-core-2.31.1-10.3.1">git-core-2.31.1-10.3.1 as a component of Container bci/golang:1.17</FullProductName>
    </Relationship>
    <Relationship ProductReference="git-core-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="Container bci/golang:1.18">
      <FullProductName ProductID="Container bci/golang:1.18:git-core-2.31.1-10.3.1">git-core-2.31.1-10.3.1 as a component of Container bci/golang:1.18</FullProductName>
    </Relationship>
    <Relationship ProductReference="git-core-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="Container bci/golang:1.19">
      <FullProductName ProductID="Container bci/golang:1.19:git-core-2.31.1-10.3.1">git-core-2.31.1-10.3.1 as a component of Container bci/golang:1.19</FullProductName>
    </Relationship>
    <Relationship ProductReference="git-core-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="Container bci/golang:1.20-openssl">
      <FullProductName ProductID="Container bci/golang:1.20-openssl:git-core-2.31.1-10.3.1">git-core-2.31.1-10.3.1 as a component of Container bci/golang:1.20-openssl</FullProductName>
    </Relationship>
    <Relationship ProductReference="git-core-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="Container bci/golang:1.21">
      <FullProductName ProductID="Container bci/golang:1.21:git-core-2.31.1-10.3.1">git-core-2.31.1-10.3.1 as a component of Container bci/golang:1.21</FullProductName>
    </Relationship>
    <Relationship ProductReference="git-core-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="Container bci/golang:latest">
      <FullProductName ProductID="Container bci/golang:latest:git-core-2.31.1-10.3.1">git-core-2.31.1-10.3.1 as a component of Container bci/golang:latest</FullProductName>
    </Relationship>
    <Relationship ProductReference="git-core-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="Container bci/node:12">
      <FullProductName ProductID="Container bci/node:12:git-core-2.31.1-10.3.1">git-core-2.31.1-10.3.1 as a component of Container bci/node:12</FullProductName>
    </Relationship>
    <Relationship ProductReference="git-core-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="Container bci/node:14">
      <FullProductName ProductID="Container bci/node:14:git-core-2.31.1-10.3.1">git-core-2.31.1-10.3.1 as a component of Container bci/node:14</FullProductName>
    </Relationship>
    <Relationship ProductReference="git-core-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="Container bci/node:16">
      <FullProductName ProductID="Container bci/node:16:git-core-2.31.1-10.3.1">git-core-2.31.1-10.3.1 as a component of Container bci/node:16</FullProductName>
    </Relationship>
    <Relationship ProductReference="git-core-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="Container bci/node:18">
      <FullProductName ProductID="Container bci/node:18:git-core-2.31.1-10.3.1">git-core-2.31.1-10.3.1 as a component of Container bci/node:18</FullProductName>
    </Relationship>
    <Relationship ProductReference="git-core-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="Container bci/nodejs:latest">
      <FullProductName ProductID="Container bci/nodejs:latest:git-core-2.31.1-10.3.1">git-core-2.31.1-10.3.1 as a component of Container bci/nodejs:latest</FullProductName>
    </Relationship>
    <Relationship ProductReference="git-core-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="Container bci/openjdk-devel:11">
      <FullProductName ProductID="Container bci/openjdk-devel:11:git-core-2.31.1-10.3.1">git-core-2.31.1-10.3.1 as a component of Container bci/openjdk-devel:11</FullProductName>
    </Relationship>
    <Relationship ProductReference="git-core-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="Container bci/openjdk-devel:latest">
      <FullProductName ProductID="Container bci/openjdk-devel:latest:git-core-2.31.1-10.3.1">git-core-2.31.1-10.3.1 as a component of Container bci/openjdk-devel:latest</FullProductName>
    </Relationship>
    <Relationship ProductReference="git-core-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="Container bci/openjdk:11">
      <FullProductName ProductID="Container bci/openjdk:11:git-core-2.31.1-10.3.1">git-core-2.31.1-10.3.1 as a component of Container bci/openjdk:11</FullProductName>
    </Relationship>
    <Relationship ProductReference="git-core-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="Container bci/openjdk:17">
      <FullProductName ProductID="Container bci/openjdk:17:git-core-2.31.1-10.3.1">git-core-2.31.1-10.3.1 as a component of Container bci/openjdk:17</FullProductName>
    </Relationship>
    <Relationship ProductReference="git-core-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="Container bci/python:3">
      <FullProductName ProductID="Container bci/python:3:git-core-2.31.1-10.3.1">git-core-2.31.1-10.3.1 as a component of Container bci/python:3</FullProductName>
    </Relationship>
    <Relationship ProductReference="git-core-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="Container bci/python:latest">
      <FullProductName ProductID="Container bci/python:latest:git-core-2.31.1-10.3.1">git-core-2.31.1-10.3.1 as a component of Container bci/python:latest</FullProductName>
    </Relationship>
    <Relationship ProductReference="git-core-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="Container bci/ruby:latest">
      <FullProductName ProductID="Container bci/ruby:latest:git-core-2.31.1-10.3.1">git-core-2.31.1-10.3.1 as a component of Container bci/ruby:latest</FullProductName>
    </Relationship>
    <Relationship ProductReference="git-core-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="Container suse/git:latest">
      <FullProductName ProductID="Container suse/git:latest:git-core-2.31.1-10.3.1">git-core-2.31.1-10.3.1 as a component of Container suse/git:latest</FullProductName>
    </Relationship>
    <Relationship ProductReference="git-core-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Basesystem 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Basesystem 15 SP3:git-core-2.31.1-10.3.1">git-core-2.31.1-10.3.1 as a component of SUSE Linux Enterprise Module for Basesystem 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="perl-Git-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Basesystem 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Basesystem 15 SP3:perl-Git-2.31.1-10.3.1">perl-Git-2.31.1-10.3.1 as a component of SUSE Linux Enterprise Module for Basesystem 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="git-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Development Tools 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Development Tools 15 SP3:git-2.31.1-10.3.1">git-2.31.1-10.3.1 as a component of SUSE Linux Enterprise Module for Development Tools 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="git-arch-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Development Tools 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Development Tools 15 SP3:git-arch-2.31.1-10.3.1">git-arch-2.31.1-10.3.1 as a component of SUSE Linux Enterprise Module for Development Tools 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="git-cvs-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Development Tools 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Development Tools 15 SP3:git-cvs-2.31.1-10.3.1">git-cvs-2.31.1-10.3.1 as a component of SUSE Linux Enterprise Module for Development Tools 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="git-daemon-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Development Tools 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Development Tools 15 SP3:git-daemon-2.31.1-10.3.1">git-daemon-2.31.1-10.3.1 as a component of SUSE Linux Enterprise Module for Development Tools 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="git-doc-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Development Tools 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Development Tools 15 SP3:git-doc-2.31.1-10.3.1">git-doc-2.31.1-10.3.1 as a component of SUSE Linux Enterprise Module for Development Tools 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="git-email-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Development Tools 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Development Tools 15 SP3:git-email-2.31.1-10.3.1">git-email-2.31.1-10.3.1 as a component of SUSE Linux Enterprise Module for Development Tools 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="git-gui-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Development Tools 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Development Tools 15 SP3:git-gui-2.31.1-10.3.1">git-gui-2.31.1-10.3.1 as a component of SUSE Linux Enterprise Module for Development Tools 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="git-svn-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Development Tools 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Development Tools 15 SP3:git-svn-2.31.1-10.3.1">git-svn-2.31.1-10.3.1 as a component of SUSE Linux Enterprise Module for Development Tools 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="git-web-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Development Tools 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Development Tools 15 SP3:git-web-2.31.1-10.3.1">git-web-2.31.1-10.3.1 as a component of SUSE Linux Enterprise Module for Development Tools 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="gitk-2.31.1-10.3.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Development Tools 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Development Tools 15 SP3:gitk-2.31.1-10.3.1">gitk-2.31.1-10.3.1 as a component of SUSE Linux Enterprise Module for Development Tools 15 SP3</FullProductName>
    </Relationship>
  </ProductTree>
  <vuln:Vulnerability xmlns="http://docs.oasis-open.org/csaf/ns/csaf-cvrf/v1.2/vuln" Ordinal="1">
    <Notes>
      <Note Title="Vulnerability Description" Type="General" Ordinal="1" xml:lang="en">Git is an open-source distributed revision control system. In affected versions of Git a specially crafted repository that contains symbolic links as well as files using a clean/smudge filter such as Git LFS, may cause just-checked out script to be executed while cloning onto a case-insensitive file system such as NTFS, HFS+ or APFS (i.e. the default file systems on Windows and macOS). Note that clean/smudge filters have to be configured for that. Git for Windows configures Git LFS by default, and is therefore vulnerable. The problem has been patched in the versions published on Tuesday, March 9th, 2021. As a workaound, if symbolic link support is disabled in Git (e.g. via `git config --global core.symlinks false`), the described attack won't work. Likewise, if no clean/smudge filters such as Git LFS are configured globally (i.e. _before_ cloning), the attack is foiled. As always, it is best to avoid cloning repositories from untrusted sources. The earliest impacted version is 2.14.2. The fix versions are: 2.30.1, 2.29.3, 2.28.1, 2.27.1, 2.26.3, 2.25.5, 2.24.4, 2.23.4, 2.22.5, 2.21.4, 2.20.5, 2.19.6, 2.18.5, 2.17.62.17.6.</Note>
    </Notes>
    <CVE>CVE-2021-21300</CVE>
    <ProductStatuses>
      <Status Type="Fixed">
        <ProductID>Container bci/golang:1.16:git-core-2.31.1-10.3.1</ProductID>
        <ProductID>Container bci/golang:1.17:git-core-2.31.1-10.3.1</ProductID>
        <ProductID>Container bci/golang:1.18:git-core-2.31.1-10.3.1</ProductID>
        <ProductID>Container bci/golang:1.19:git-core-2.31.1-10.3.1</ProductID>
        <ProductID>Container bci/golang:1.20-openssl:git-core-2.31.1-10.3.1</ProductID>
        <ProductID>Container bci/golang:1.21:git-core-2.31.1-10.3.1</ProductID>
        <ProductID>Container bci/golang:latest:git-core-2.31.1-10.3.1</ProductID>
        <ProductID>Container bci/node:12:git-core-2.31.1-10.3.1</ProductID>
        <ProductID>Container bci/node:14:git-core-2.31.1-10.3.1</ProductID>
        <ProductID>Container bci/node:16:git-core-2.31.1-10.3.1</ProductID>
        <ProductID>Container bci/node:18:git-core-2.31.1-10.3.1</ProductID>
        <ProductID>Container bci/nodejs:latest:git-core-2.31.1-10.3.1</ProductID>
        <ProductID>Container bci/openjdk-devel:11:git-core-2.31.1-10.3.1</ProductID>
        <ProductID>Container bci/openjdk-devel:latest:git-core-2.31.1-10.3.1</ProductID>
        <ProductID>Container bci/openjdk:11:git-core-2.31.1-10.3.1</ProductID>
        <ProductID>Container bci/openjdk:17:git-core-2.31.1-10.3.1</ProductID>
        <ProductID>Container bci/python:3:git-core-2.31.1-10.3.1</ProductID>
        <ProductID>Container bci/python:latest:git-core-2.31.1-10.3.1</ProductID>
        <ProductID>Container bci/ruby:latest:git-core-2.31.1-10.3.1</ProductID>
        <ProductID>Container suse/git:latest:git-core-2.31.1-10.3.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Basesystem 15 SP3:git-core-2.31.1-10.3.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Basesystem 15 SP3:perl-Git-2.31.1-10.3.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Development Tools 15 SP3:git-2.31.1-10.3.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Development Tools 15 SP3:git-arch-2.31.1-10.3.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Development Tools 15 SP3:git-cvs-2.31.1-10.3.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Development Tools 15 SP3:git-daemon-2.31.1-10.3.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Development Tools 15 SP3:git-doc-2.31.1-10.3.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Development Tools 15 SP3:git-email-2.31.1-10.3.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Development Tools 15 SP3:git-gui-2.31.1-10.3.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Development Tools 15 SP3:git-svn-2.31.1-10.3.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Development Tools 15 SP3:git-web-2.31.1-10.3.1</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Development Tools 15 SP3:gitk-2.31.1-10.3.1</ProductID>
      </Status>
    </ProductStatuses>
    <Threats>
      <Threat Type="Impact">
        <Description>important</Description>
      </Threat>
    </Threats>
    <CVSSScoreSets>
      <ScoreSetV2>
        <BaseScoreV2>5.1</BaseScoreV2>
        <VectorV2>AV:N/AC:H/Au:N/C:P/I:P/A:P</VectorV2>
      </ScoreSetV2>
      <ScoreSetV3>
        <BaseScoreV3>7.5</BaseScoreV3>
        <VectorV3>CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H</VectorV3>
      </ScoreSetV3>
    </CVSSScoreSets>
    <Remediations>
      <Remediation Type="Vendor Fix">
        <Description xml:lang="en">To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or "zypper patch".
</Description>
        <URL>https://www.suse.com/support/update/announcement/2021/suse-su-20212555-1/</URL>
      </Remediation>
    </Remediations>
    <References>
      <Reference>
        <URL>https://www.suse.com/security/cve/CVE-2021-21300.html</URL>
        <Description>CVE-2021-21300</Description>
      </Reference>
      <Reference>
        <URL>https://bugzilla.suse.com/1183026</URL>
        <Description>SUSE Bug 1183026</Description>
      </Reference>
    </References>
  </vuln:Vulnerability>
</cvrfdoc>
