fix(security): upgrade Go to 1.25.7 to address crypto/tls CVE#709
Merged
michaeljguarino merged 1 commit intomainfrom Feb 25, 2026
Merged
Conversation
Upgrade Go from v1.25.6 to v1.25.7 to fix crypto/tls session resumption vulnerability where ClientCAs/RootCAs mutations between initial and resumed handshakes could cause improper session resumption. Files updated: - go.mod: Updated go directive to 1.25.7 - Dockerfile: Updated both builder and final stage images - dockerfiles/Dockerfile.cloud: Updated builder stage image
Contributor
Author
There was a problem hiding this comment.
This PR was generated by the claude (engine: claude) agent runtime. Here's some useful information you might want to know to evaluate
the ai's perfomance:
| Name | Details |
|---|---|
| 💬 Prompt | Security scanners have found the following vulnerability in our cluster:... |
| 🔗 Run history | View run history |
michaeljguarino
approved these changes
Feb 25, 2026
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.
Summary
Vulnerability Details
CVE: crypto/tls unexpected session resumption
During session resumption in crypto/tls, if the underlying Config has its ClientCAs or RootCAs fields mutated between the initial handshake and the resumed handshake, the resumed handshake may succeed when it should have failed. This can cause clients or servers to resume sessions improperly.
Fix Versions: 1.24.13, 1.25.7, 1.26.0-rc.3
Changes
go.mod: Updated go directive from 1.25.6 to 1.25.7Dockerfile: Updated golang base images (builder and final stages) from 1.25.6-alpine3.22 to 1.25.7-alpine3.22dockerfiles/Dockerfile.cloud: Updated golang base image from 1.25.6-alpine3.22 to 1.25.7-alpine3.22Test plan
🤖 Generated with Claude Code