logo

CVE-2025-54585 @finos/git-proxy

Package

Manager: npm
Name: @finos/git-proxy
Vulnerable Version: >=0 <1.19.2

Severity

Level: High

CVSS v3.1: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N/E:U/RL:O/RC:C

CVSS v4.0: CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:P/VC:N/VI:H/VA:N/SC:N/SI:H/SA:N

EPSS: 0.00034 pctl0.08203

Details

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: 1. Make a commit in branch `a` (could be `main`) 2. Make a new branch `b` from that commit 3. Make a new commit in `b`, then approve it/get it approved 4. 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: 1. Clone the target repository and make an unapproved commit on a mainline branch (e.g. main): ```bash git checkout -b a origin/main echo "DEBUG=true" > config.env git add config.env git commit -m "Sensitive debug config" git push proxy a ``` 2. Without approving/getting the commit approved on branch `a`, create a new branch `b` based on it: ```bash git checkout -b b echo "feature x implemented" > feature.txt git add feature.txt git commit -m "Feature implementation" git push proxy b ``` 3. Approve/get approval for the push to branch `b`. 4. Now attempt to push the original unapproved commit from branch `a`: ```bash git checkout a git push proxy 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.

Metadata

Created: 2025-07-30T16:40:35Z
Modified: 2025-07-31T11:18:46Z
Source: https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2025/07/GHSA-39p2-8hq9-fwj6/GHSA-39p2-8hq9-fwj6.json
CWE IDs: ["CWE-285"]
Alternative ID: GHSA-39p2-8hq9-fwj6
Finding: F039
Auto approve: 1