[Security] Fix CVE-2025-68121: Upgrade Go to 1.24.8#424
Open
guyscher wants to merge 1 commit intotranscend-io:masterfrom
Open
[Security] Fix CVE-2025-68121: Upgrade Go to 1.24.8#424guyscher wants to merge 1 commit intotranscend-io:masterfrom
guyscher wants to merge 1 commit intotranscend-io:masterfrom
Conversation
Upgrade Go toolchain to 1.24.8 to remediate CVE-2025-68121, a crypto/tls authentication bypass vulnerability detected by Upwind Security.
Author
|
@Almenon can you please take a look? |
Author
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.
Pull Request
Related Github Issues
Description
Remediates CVE-2025-68121 (CWE-295: Improper Certificate Validation), a vulnerability
in Go's
crypto/tlsstandard library that affects all Go versions prior to 1.24.8.This CVE was detected by Upwind Security.
Vulnerability Details
stdlibcrypto/tlsDuring TLS session resumption, if the underlying
tls.Confighas itsClientCAsorRootCAsfields mutated between the initial handshake and a resumed handshake, theresumed handshake may succeed when it should have failed — bypassing intended certificate
authority restrictions. Additionally, ALPN negotiation errors can leak unescaped
attacker-controlled data.
While this repository contains no direct
crypto/tlscode, its transitive dependencies(Terragrunt, go-getter, cloud SDKs) rely on Go's stdlib
crypto/tlsfor all HTTPSconnections.
Changes
go.modgo 1.23.5→go 1.24.8DockerfileGO_VERSION=1.23→GO_VERSION=1.24.github/workflows/run_tests.yml1.23→1.24.github/workflows/release.yml1.23→1.24Security Implications
System Availability
go buildverified locally with no errors.