[release-v0.37.x] Security: Fix CVE-2026-42505 - update Go to 1.25.12 (crypto/tls ECH privacy leak) - #3067
Merged
tekton-robot merged 1 commit intoJul 27, 2026
Conversation
- Update go directive from 1.25.11 to 1.25.12 - Fixes Encrypted Client Hello (ECH) privacy leak in crypto/tls - crypto/tls in Go 1.25.11 exposes cleartext SNI when invoking ECH Fixes: CVE-2026-42505 (GO-2026-5856) Co-Assisted-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Contributor
|
/retest |
1 similar comment
Contributor
|
/retest |
Contributor
|
/lgtm |
Contributor
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: pratap0007 The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
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.
Changes
Update Go directive from 1.25.11 to 1.25.12 to resolve CVE-2026-42505, a privacy leak in the
crypto/tlspackage affecting Encrypted Client Hello (ECH) support.CVE Details:
crypto/tlsin versions < 1.25.12 (on 1.25.x line)Description: When invoking Encrypted Client Hello (ECH), the TLS client may expose the cleartext server name (SNI) via the
crypto/tlspackage, undermining the ECH privacy guarantee.Fix Summary:
godirective ingo.modfrom1.25.11to1.25.12go mod tidy && go mod verify && go mod vendor— all passed ✅Test Results:
go mod verify: ✅ PASSgo mod vendor: ✅ PASSpkg/cmd/hub/cmd/*are unrelated to this changeBreaking Changes: None. Patch-level Go version bump.
Risk Assessment: Low — patch version bump (1.25.11 → 1.25.12) with no API changes.
Submitter Checklist
go mod tidy && go mod verify && go mod vendorRelease Notes
Jira Reference: CVE-2026-42505 / GO-2026-5856
Corresponds to main fix: #3065
Corresponds to v0.44.x fix: #3066