fix(cve): CVE-2026-33186 - gRPC-Go authorization bypass (release-v0.6.0)#989
Merged
infernus01 merged 1 commit intoJun 2, 2026
Conversation
- Update google.golang.org/grpc from v1.71.1 to v1.79.3 - Fixes authorization bypass via missing leading slash in :path (GO-2026-4762) - Required bumping go directive from 1.23.0 → 1.24.0 (grpc v1.79.3 minimum) - Transitive deps updated: x/net, x/oauth2, x/sync, x/sys, x/term, x/text, x/tools Resolves: SRVKP-11722, SRVKP-11723 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
@infernus01: changing LGTM is restricted to collaborators DetailsIn response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: divyansh42, infernus01 The full list of commands accepted by this bot can be found 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.
CVE Details
Note on Jira tickets: SRVKP-11722 and SRVKP-11723 track CVE-2026-40938. CVE-2026-40938 is not registered in the Go vulnerability database and was not detected by govulncheck. CVE-2026-33186 (gRPC-Go authorization bypass) was confirmed on this branch (grpc v1.71.1) and this PR addresses it. tektoncd/pipeline is being addressed separately in PR #982.
Description
Authorization bypass in gRPC-Go via missing leading slash in
:path. An attacker can bypass authorization checks on gRPC servers.Fix Summary
google.golang.org/grpcfromv1.71.1→v1.79.3toolchain go1.23.8→toolchain go1.24.0go mod tidy && go mod verify && go mod vendor— all passed ✅Test Results
Status: ✅ PASSED (5 packages)
Breaking Changes
Go directive bumped from 1.23.0 → 1.24.0. Build and test toolchains should be updated accordingly.
Jira References
SRVKP-11722, SRVKP-11723
Verification Steps
go.mod:go 1.24.0andgoogle.golang.org/grpc v1.79.3Risk Assessment
Medium — Security-critical gRPC upgrade. The Go 1.23 → 1.24 bump is backwards-compatible but CI toolchains must be updated.
🤖 Generated with Claude Code