Логотип exploitDog
Консоль
Логотип exploitDog

exploitDog

suse-cvrf логотип

SUSE-SU-2025:0197-1

Опубликовано: 21 янв. 2025
Источник: suse-cvrf

Описание

Security update for git

This update for git fixes the following issues:

  • CVE-2024-32002: Fix recursive clones on case-insensitive filesystems that support symbolic links are susceptible to case confusion. (bsc#1224168)
  • CVE-2024-32004: Fixed arbitrary code execution during local clones. (bsc#1224170)
  • CVE-2024-32020: Fix file overwriting vulnerability during local clones. (bsc#1224171)
  • CVE-2024-32021: Git may create hardlinks to arbitrary user-readable files. (bsc#1224172)
  • CVE-2024-32465: Fixed arbitrary code execution during clone operations. (bsc#1224173)
  • CVE-2024-50349: Passwords for trusted sites could be sent to untrusted sites (bsc#1235600).
  • CVE-2024-52006: Carriage Returns via the credential protocol to credential helpers (bsc#1235601).

Список пакетов

SUSE Linux Enterprise Server 12 SP5-LTSS
git-2.26.2-27.78.1
git-core-2.26.2-27.78.1
git-cvs-2.26.2-27.78.1
git-daemon-2.26.2-27.78.1
git-email-2.26.2-27.78.1
git-gui-2.26.2-27.78.1
git-svn-2.26.2-27.78.1
git-web-2.26.2-27.78.1
gitk-2.26.2-27.78.1
SUSE Linux Enterprise Server LTSS Extended Security 12 SP5
git-2.26.2-27.78.1
git-core-2.26.2-27.78.1
git-cvs-2.26.2-27.78.1
git-daemon-2.26.2-27.78.1
git-email-2.26.2-27.78.1
git-gui-2.26.2-27.78.1
git-svn-2.26.2-27.78.1
git-web-2.26.2-27.78.1
gitk-2.26.2-27.78.1

Описание

Git is a revision control system. Prior to versions 2.45.1, 2.44.1, 2.43.4, 2.42.2, 2.41.1, 2.40.2, and 2.39.4, repositories with submodules can be crafted in a way that exploits a bug in Git whereby it can be fooled into writing files not into the submodule's worktree but into a `.git/` directory. This allows writing a hook that will be executed while the clone operation is still running, giving the user no opportunity to inspect the code that is being executed. The problem has been patched in versions 2.45.1, 2.44.1, 2.43.4, 2.42.2, 2.41.1, 2.40.2, and 2.39.4. If symbolic link support is disabled in Git (e.g. via `git config --global core.symlinks false`), the described attack won't work. As always, it is best to avoid cloning repositories from untrusted sources.


Затронутые продукты
SUSE Linux Enterprise Server 12 SP5-LTSS:git-2.26.2-27.78.1
SUSE Linux Enterprise Server 12 SP5-LTSS:git-core-2.26.2-27.78.1
SUSE Linux Enterprise Server 12 SP5-LTSS:git-cvs-2.26.2-27.78.1
SUSE Linux Enterprise Server 12 SP5-LTSS:git-daemon-2.26.2-27.78.1

Ссылки

Описание

Git is a revision control system. Prior to versions 2.45.1, 2.44.1, 2.43.4, 2.42.2, 2.41.1, 2.40.2, and 2.39.4, an attacker can prepare a local repository in such a way that, when cloned, will execute arbitrary code during the operation. The problem has been patched in versions 2.45.1, 2.44.1, 2.43.4, 2.42.2, 2.41.1, 2.40.2, and 2.39.4. As a workaround, avoid cloning repositories from untrusted sources.


Затронутые продукты
SUSE Linux Enterprise Server 12 SP5-LTSS:git-2.26.2-27.78.1
SUSE Linux Enterprise Server 12 SP5-LTSS:git-core-2.26.2-27.78.1
SUSE Linux Enterprise Server 12 SP5-LTSS:git-cvs-2.26.2-27.78.1
SUSE Linux Enterprise Server 12 SP5-LTSS:git-daemon-2.26.2-27.78.1

Ссылки

Описание

Git is a revision control system. Prior to versions 2.45.1, 2.44.1, 2.43.4, 2.42.2, 2.41.1, 2.40.2, and 2.39.4, local clones may end up hardlinking files into the target repository's object database when source and target repository reside on the same disk. If the source repository is owned by a different user, then those hardlinked files may be rewritten at any point in time by the untrusted user. Cloning local repositories will cause Git to either copy or hardlink files of the source repository into the target repository. This significantly speeds up such local clones compared to doing a "proper" clone and saves both disk space and compute time. When cloning a repository located on the same disk that is owned by a different user than the current user we also end up creating such hardlinks. These files will continue to be owned and controlled by the potentially-untrusted user and can be rewritten by them at will in the future. The problem has been patched in versions 2.45.1, 2.44.1, 2.43.4, 2.42.2, 2.41.1, 2.40.2, and 2.39.4.


Затронутые продукты
SUSE Linux Enterprise Server 12 SP5-LTSS:git-2.26.2-27.78.1
SUSE Linux Enterprise Server 12 SP5-LTSS:git-core-2.26.2-27.78.1
SUSE Linux Enterprise Server 12 SP5-LTSS:git-cvs-2.26.2-27.78.1
SUSE Linux Enterprise Server 12 SP5-LTSS:git-daemon-2.26.2-27.78.1

Ссылки

Описание

Git is a revision control system. Prior to versions 2.45.1, 2.44.1, 2.43.4, 2.42.2, 2.41.1, 2.40.2, and 2.39.4, when cloning a local source repository that contains symlinks via the filesystem, Git may create hardlinks to arbitrary user-readable files on the same filesystem as the target repository in the `objects/` directory. Cloning a local repository over the filesystem may creating hardlinks to arbitrary user-owned files on the same filesystem in the target Git repository's `objects/` directory. When cloning a repository over the filesystem (without explicitly specifying the `file://` protocol or `--no-local`), the optimizations for local cloning will be used, which include attempting to hard link the object files instead of copying them. While the code includes checks against symbolic links in the source repository, which were added during the fix for CVE-2022-39253, these checks can still be raced because the hard link operation ultimately follows symlinks. If the object on the filesystem appears as a file during the check, and then a symlink during the operation, this will allow the adversary to bypass the check and create hardlinks in the destination objects directory to arbitrary, user-readable files. The problem has been patched in versions 2.45.1, 2.44.1, 2.43.4, 2.42.2, 2.41.1, 2.40.2, and 2.39.4.


Затронутые продукты
SUSE Linux Enterprise Server 12 SP5-LTSS:git-2.26.2-27.78.1
SUSE Linux Enterprise Server 12 SP5-LTSS:git-core-2.26.2-27.78.1
SUSE Linux Enterprise Server 12 SP5-LTSS:git-cvs-2.26.2-27.78.1
SUSE Linux Enterprise Server 12 SP5-LTSS:git-daemon-2.26.2-27.78.1

Ссылки

Описание

Git is a revision control system. The Git project recommends to avoid working in untrusted repositories, and instead to clone it first with `git clone --no-local` to obtain a clean copy. Git has specific protections to make that a safe operation even with an untrusted source repository, but vulnerabilities allow those protections to be bypassed. In the context of cloning local repositories owned by other users, this vulnerability has been covered in CVE-2024-32004. But there are circumstances where the fixes for CVE-2024-32004 are not enough: For example, when obtaining a `.zip` file containing a full copy of a Git repository, it should not be trusted by default to be safe, as e.g. hooks could be configured to run within the context of that repository. The problem has been patched in versions 2.45.1, 2.44.1, 2.43.4, 2.42.2, 2.41.1, 2.40.2, and 2.39.4. As a workaround, avoid using Git in repositories that have been obtained via archives from untrusted sources.


Затронутые продукты
SUSE Linux Enterprise Server 12 SP5-LTSS:git-2.26.2-27.78.1
SUSE Linux Enterprise Server 12 SP5-LTSS:git-core-2.26.2-27.78.1
SUSE Linux Enterprise Server 12 SP5-LTSS:git-cvs-2.26.2-27.78.1
SUSE Linux Enterprise Server 12 SP5-LTSS:git-daemon-2.26.2-27.78.1

Ссылки

Описание

Git is a fast, scalable, distributed revision control system with an unusually rich command set that provides both high-level operations and full access to internals. When Git asks for credentials via a terminal prompt (i.e. without using any credential helper), it prints out the host name for which the user is expected to provide a username and/or a password. At this stage, any URL-encoded parts have been decoded already, and are printed verbatim. This allows attackers to craft URLs that contain ANSI escape sequences that the terminal interpret to confuse users e.g. into providing passwords for trusted Git hosting sites when in fact they are then sent to untrusted sites that are under the attacker's control. This issue has been patch via commits `7725b81` and `c903985` which are included in release versions v2.48.1, v2.47.2, v2.46.3, v2.45.3, v2.44.3, v2.43.6, v2.42.4, v2.41.3, and v2.40.4. Users are advised to upgrade. Users unable to upgrade should avoid cloning from untrusted URLs, especially recursive clones.


Затронутые продукты
SUSE Linux Enterprise Server 12 SP5-LTSS:git-2.26.2-27.78.1
SUSE Linux Enterprise Server 12 SP5-LTSS:git-core-2.26.2-27.78.1
SUSE Linux Enterprise Server 12 SP5-LTSS:git-cvs-2.26.2-27.78.1
SUSE Linux Enterprise Server 12 SP5-LTSS:git-daemon-2.26.2-27.78.1

Ссылки

Описание

Git is a fast, scalable, distributed revision control system with an unusually rich command set that provides both high-level operations and full access to internals. Git defines a line-based protocol that is used to exchange information between Git and Git credential helpers. Some ecosystems (most notably, .NET and node.js) interpret single Carriage Return characters as newlines, which renders the protections against CVE-2020-5260 incomplete for credential helpers that treat Carriage Returns in this way. This issue has been addressed in commit `b01b9b8` which is included in release versions v2.48.1, v2.47.2, v2.46.3, v2.45.3, v2.44.3, v2.43.6, v2.42.4, v2.41.3, and v2.40.4. Users are advised to upgrade. Users unable to upgrade should avoid cloning from untrusted URLs, especially recursive clones.


Затронутые продукты
SUSE Linux Enterprise Server 12 SP5-LTSS:git-2.26.2-27.78.1
SUSE Linux Enterprise Server 12 SP5-LTSS:git-core-2.26.2-27.78.1
SUSE Linux Enterprise Server 12 SP5-LTSS:git-cvs-2.26.2-27.78.1
SUSE Linux Enterprise Server 12 SP5-LTSS:git-daemon-2.26.2-27.78.1

Ссылки
Уязвимость SUSE-SU-2025:0197-1