*: bump thanos-community/grpc-go to fix CVE-2026-33186#8744
Merged
saswatamcode merged 1 commit intothanos-io:mainfrom Mar 31, 2026
Merged
*: bump thanos-community/grpc-go to fix CVE-2026-33186#8744saswatamcode merged 1 commit intothanos-io:mainfrom
saswatamcode merged 1 commit intothanos-io:mainfrom
Conversation
a9181aa to
c046408
Compare
Bump the grpc-go fork to pick up the cherry-picked fix for CVE-2026-33186 (CVSS 9.1), which enforces strict path checking for incoming requests on the server, preventing authorization bypass via malformed :path headers. Signed-off-by: Daniel Mellado <dmellado@fedoraproject.org>
c046408 to
06e6807
Compare
saswatamcode
approved these changes
Mar 31, 2026
Contributor
Author
|
doc CI failures are unrelated to the PR |
danielmellado
added a commit
to danielmellado/thanos
that referenced
this pull request
Mar 31, 2026
Bump the grpc-go fork to pick up the cherry-picked fix for CVE-2026-33186 (CVSS 9.1), which enforces strict path checking for incoming requests on the server, preventing authorization bypass via malformed :path headers. Signed-off-by: Daniel Mellado <dmellado@fedoraproject.org>
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
Bump the
thanos-community/grpc-gofork to pick up the cherry-picked fix forCVE-2026-33186 (CVSS 9.1) from thanos-community/grpc-go#1.
This enforces strict path checking for incoming requests on the server,
rejecting any request with a non-canonical
:pathheader (missing the leadingslash) with an
Unimplementederror. Without this fix, malformed paths couldbypass path-based restricted "deny" rules in interceptors like
grpc/authz.Verification
Dependency-only change (
go.mod/go.sum). The fix itself is tested upstreamin grpc/grpc-go#8985.