fix: upgrade Go to 1.26.3 to resolve CVE-2026-33814#3099
Merged
Conversation
CVE-2026-33814 is an infinite loop vulnerability in Go's HTTP/2 transport implementation. When an HTTP/2 client receives a SETTINGS frame with SETTINGS_MAX_FRAME_SIZE set to 0 from a malicious server, the transport enters an infinite loop writing CONTINUATION frames. This vulnerability affects all gRPC clients in the Chainloop codebase, including the CLI and inter-service communication components, as gRPC uses HTTP/2 transport. Upgrading to Go 1.26.3 includes the fix that properly validates SETTINGS_MAX_FRAME_SIZE values to prevent the infinite loop condition. Assisted-by: Claude Code
migmartri
previously approved these changes
May 10, 2026
Propagate the Go 1.26.3 upgrade to the goreleaser Dockerfiles and CLAUDE.md so the runtime images and documentation match go.mod. Assisted-by: Claude Code Signed-off-by: Miguel Martinez Trivino <miguel@chainloop.dev>
migmartri
approved these changes
May 10, 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
Upgrade Go from 1.26.2 to 1.26.3 to remediate CVE-2026-33814, an infinite loop vulnerability in HTTP/2 transport that affects all gRPC clients in the Chainloop codebase.
Vulnerability Fixed
CVE-2026-33814 (HIGH severity)
When processing HTTP/2 SETTINGS frames, the Go transport enters an infinite loop of writing CONTINUATION frames if it receives a SETTINGS_MAX_FRAME_SIZE with a value of 0. This can cause denial of service, resource exhaustion, and service disruption in CI/CD pipelines.
Changes Made
go.modto use Go 1.26.3 (from 1.26.2)Impact
This vulnerability is reachable in Chainloop because:
The fix ensures all gRPC clients are protected from malicious servers sending malformed SETTINGS frames.