Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2023-02-07 12:29:48 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2023-02-07 12:44:58 +0300
commit4b7013dee1e9ee5ce7accb50c674fae1ddd2b4cb (patch)
tree1e454f50f625a89ef6eabbba8549769dd8de22cf
parent7a58f4bb6e0f20dbdf64a2ee386b7888a3734e19 (diff)
git: Upgrade to Git security release v2.38.4.gl1 and v2.37.6.gl1
Upgrade our Git version to v2.38.4.gl1 and v2.37.6.gl1, which pull in the security release Git v2.38.4 and v2.37.6.gl1 that address the following CVEs: - CVE-2023-22490: Using a specially-crafted repository, Git can be tricked into using its local clone optimization even when using a non-local transport. Though Git will abort local clones whose source $GIT_DIR/objects directory contains symbolic links (c.f., CVE-2022-39253), the objects directory itself may still be a symbolic link. These two may be combined to include arbitrary files based on known paths on the victim's filesystem within the malicious repository's working copy, allowing for data exfiltration in a similar manner as CVE-2022-39253. - CVE-2023-23946: By feeding a crafted input to "git apply", a path outside the working tree can be overwritten as the user who is running "git apply". Changelog: security
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 1eba2544d..a4cde371b 100644
--- a/Makefile
+++ b/Makefile
@@ -134,9 +134,9 @@ GIT_EXECUTABLES += git-http-backend
## tags, branches, and commit ids.
GIT_VERSION ?=
## The Git version used for bundled Git v2.37.
-GIT_VERSION_2_37_1 ?= v2.37.5.gl1
+GIT_VERSION_2_37_1 ?= v2.37.6.gl1
## The Git version used for bundled Git v2.38.
-GIT_VERSION_2_38 ?= v2.38.3.gl1
+GIT_VERSION_2_38 ?= v2.38.4.gl1
## Skip overriding the Git version and instead use the Git version as specified
## in the Git sources. This is required when building Git from a version that