Описание
GitProxy New Branch Approval Exploit
Summary
An attacker can exploit the way GitProxy handles new branch creation to bypass the approval of prior commits on the parent branch.
Because it can greatly affect system integrity, we classify this as a High impact vulnerability.
Details
GitProxy checks for the 0000000000000000000000000000000000000000 hash to detect new branches. This is used to process the commit accordingly in both getDiff.ts and parsePush.ts. However, the logic can be exploited as follows:
- Make a commit in branch
a(could bemain) - Make a new branch
bfrom that commit - Make a new commit in
b, then approve it/get it approved - Go back to
a, and attempt to push this commit to the proxy
The unapproved commit from a will be pushed to the remote.
PoC
To reproduce this vulnerability:
- Clone the target repository and make an unapproved commit on a mainline branch (e.g. main):
- Without approving/getting the commit approved on branch
a, create a new branchbbased on it:
-
Approve/get approval for the push to branch
b. -
Now attempt to push the original unapproved commit from branch
a:
Prior to 1.19.2, this results in unapproved commits from a getting pushed without any policy checks or explicit approval.
From 1.19.2 onwards, this flow will allow pushing all commits to branch b (and explicit approval will be asked for the changes on b only). However, commits on branch a now require approval on push. If merging branch b into a, this also requires explicit approval of the (previously unapproved) commits originating from a to prevent loopholes.
Impact
The vulnerability impacts all users or organizations relying on GitProxy to enforce policy and prevent unapproved changes. It requires no elevated privileges beyond regular push access, and no extra user interaction. It does however, require a GitProxy administrator or designated user (canUserApproveRejectPush) to approve pushes to the child branch.
Ссылки
- https://github.com/finos/git-proxy/security/advisories/GHSA-39p2-8hq9-fwj6
- https://nvd.nist.gov/vuln/detail/CVE-2025-54585
- https://github.com/finos/git-proxy/commit/a620a2f33c39c78e01783a274580bf822af3cc3a
- https://github.com/finos/git-proxy/commit/f99fe42082eab0970e4cd0acdc3421a527a7e531
- https://github.com/finos/git-proxy/releases/tag/v1.19.2
Пакеты
@finos/git-proxy
<= 1.19.1
1.19.2
Связанные уязвимости
GitProxy is an application that stands between developers and a Git remote endpoint. In versions 1.19.1 and below, attackers can exploit the way GitProxy handles new branch creation to bypass the approval of prior commits on the parent branch. The vulnerability impacts all users or organizations relying on GitProxy to enforce policy and prevent unapproved changes. It requires no elevated privileges beyond regular push access, and no extra user interaction. It does however, require a GitProxy administrator or designated user (canUserApproveRejectPush) to approve pushes to the child branch. This is fixed in version 1.19.2.