fix(deps): upgrade gRPC to v1.79.3 to fix authorization bypass vulnerability#715
Merged
michaeljguarino merged 1 commit intomainfrom Mar 20, 2026
Conversation
Fixes security vulnerability: gRPC-Go authorization bypass via missing leading slash in :path pseudo-header. This is an authorization bypass resulting from improper input validation that allows attackers to bypass path-based authorization policies. CVE fix recommended upgrade from v1.79.1 to v1.79.3.
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 |
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
michaeljguarino
approved these changes
Mar 20, 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
This PR upgrades
google.golang.org/grpcfrom v1.79.1 to v1.79.3 to fix a security vulnerability.Vulnerability Details
Type: Authorization Bypass via Improper Input Validation
The gRPC-Go server was accepting requests where the
:pathHTTP/2 pseudo-header omitted the mandatory leading slash (e.g.,Service/Methodinstead of/Service/Method). While the server correctly routed these requests, authorization interceptors evaluated the raw, non-canonical path string. This allowed "deny" rules defined using canonical paths to be bypassed.Impact
This affects gRPC-Go servers that:
Fix
The patch ensures any request with a
:pathnot starting with a leading slash is immediately rejected with acodes.Unimplementederror.Changes
go.mod: Updatedgoogle.golang.org/grpcfrom v1.79.1 to v1.79.3go.sum: Updated checksums for the new versionTest Plan