fix(deps): update module github.com/go-git/go-git/v5 to v5.18.0 [security] - autoclosed#3791
Closed
renovate[bot] wants to merge 1 commit intodevelopfrom
Closed
Conversation
There was a problem hiding this comment.
Stale comment
Security Review: No Findings
Scope: Dependency update of
github.com/go-git/go-git/v5from v5.17.2 to v5.18.0 (go.mod+go.sumonly).Analysis:
- No new vulnerabilities introduced. The change is limited to a minor version bump of a well-known, widely-used Go Git library. No application code is modified.
- Supply-chain risk: Low. v5.18.0 is a legitimate release published on 2026-04-16 by the official go-git project. Go module checksums in
go.sumprovide integrity verification.- Prior CVE coverage already in place. The project was already on v5.17.2, which includes the fixes for CVE-2026-33762 (index v4 panic) and CVE-2026-34165 (idx memory DoS), both patched in v5.17.1. This bump to v5.18.0 maintains that coverage and picks up additional non-security improvements.
No actionable security findings.
Sent by Cursor Automation: Find vulnerabilities
6defa0b to
60c4475
Compare
There was a problem hiding this comment.
Security Review: No Findings
Scope: Dependency update of github.com/go-git/go-git/v5 from v5.17.1 to v5.18.0 (go.mod + go.sum only).
Analysis:
- No new vulnerabilities introduced. The change is limited to a minor version bump of the go-git library. No application code is modified.
- Supply-chain risk: Low. v5.18.0 is a legitimate release published on 2026-04-16 by the official go-git project. Go module checksums in
go.sumprovide integrity verification. - Security improvement. This update patches GHSA-3xc5-wrhm-f963 (HTTP authentication credential leak when following redirects during smart-HTTP clone/fetch, CVSS 4.7 Medium). The new version adds
followRedirectspolicy support, defaulting toinitialto prevent credential leakage to redirect targets.
No actionable security findings.
Sent by Cursor Automation: Find vulnerabilities
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


This PR contains the following updates:
v5.17.1→v5.18.0go-git: Credential leak via cross-host redirect in smart HTTP transport
GHSA-3xc5-wrhm-f963
More information
Details
Impact
go-gitmay leak HTTP authentication credentials when following redirects during smart-HTTP clone and fetch operations.If a remote repository responds to the initial
/info/refsrequest with a redirect to a different host, go-git updates the session endpoint to the redirected location and reuses the original authentication for subsequent requests. This can result in the credentials (e.g. Authorization headers) being sent to an unintended host.An attacker controlling or influencing the redirect target can capture these credentials and potentially reuse them to access the victim’s repositories or other resources, depending on the scope of the credential.
Clients using
go-gitexclusively with trusted remotes (for example, GitHub or GitLab), and over a secure HTTPS connection, are not affected by this issue. The risk arises when interacting with untrusted or misconfigured Git servers, or when using unsecured HTTP connections, which is not recommended. Such configurations also expose clients to a broader class of security risks beyond this issue, including credential interception and tampering of repository data.Patches
Users should upgrade to
v5.18.0, orv6.0.0-alpha.2, in order to mitigate this vulnerability. Versions prior to v5 are likely to be affected, users are recommended to upgrade to a supportedgo-gitversion.The patched versions add support for configuring followRedirects. In line with upstream behaviour, the default is now
initial, while users can opt intoFollowRedirectsorNoFollowRedirectsprogrammatically.Credit
Thanks to the 3 separate reports from @celinke97, @N0zoM1z0 and @AyushParkara. Thanks for finding and reporting this issue privately to the
go-gitproject. 🙇Severity
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:N/A:NReferences
This data is provided by the GitHub Advisory Database (CC-BY 4.0).
Release Notes
go-git/go-git (github.com/go-git/go-git/v5)
v5.18.0Compare Source
What's Changed
Full Changelog: go-git/go-git@v5.17.2...v5.18.0
v5.17.2Compare Source
What's Changed
v5.17.1. Thanks @pskrbasu for reporting it. 🙇Full Changelog: go-git/go-git@v5.17.1...v5.17.2
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.