Skip to content

[🐸 Frogbot] Update version of google.golang.org/grpc to 1.79.3#10

Open
github-actions[bot] wants to merge 1 commit intopublish-results-gitlabfrom
frogbot-google.golang.org/grpc-e7a8fd05f59080fc5d5bf7ed975fbb48
Open

[🐸 Frogbot] Update version of google.golang.org/grpc to 1.79.3#10
github-actions[bot] wants to merge 1 commit intopublish-results-gitlabfrom
frogbot-google.golang.org/grpc-e7a8fd05f59080fc5d5bf7ed975fbb48

Conversation

@github-actions
Copy link
Copy Markdown

🚨 This automated pull request was created by Frogbot and fixes the below:

📦 Vulnerable Dependencies

Severity ID Contextual Analysis Direct Dependencies Impacted Dependency Fixed Versions
critical (not applicable)
Critical
CVE-2026-33186 Not Applicable github.com/jfrog/jfrog-cli-security:v1.26.3
google.golang.org/grpc:v1.72.1
github.com/jfrog/jfrog-cli-artifactory:v0.8.1-0.20260227101327-7478579b5f25
google.golang.org/grpc v1.72.1 [1.79.3]

🔖 Details

Vulnerability Details

Contextual Analysis: Not Applicable
Direct Dependencies: github.com/jfrog/jfrog-cli-security:v1.26.3, google.golang.org/grpc:v1.72.1, github.com/jfrog/jfrog-cli-artifactory:v0.8.1-0.20260227101327-7478579b5f25
Impacted Dependency: google.golang.org/grpc:v1.72.1
Fixed Versions: [1.79.3]
CVSS V3: 9.1

gRPC-Go is the Go language implementation of gRPC. Versions prior to 1.79.3 have an authorization bypass resulting from improper input validation of the HTTP/2 :path pseudo-header. The gRPC-Go server was too lenient in its routing logic, accepting requests where the :path omitted the mandatory leading slash (e.g., Service/Method instead of /Service/Method). While the server successfully routed these requests to the correct handler, authorization interceptors (including the official grpc/authz package) evaluated the raw, non-canonical path string. Consequently, "deny" rules defined using canonical paths (starting with /) failed to match the incoming request, allowing it to bypass the policy if a fallback "allow" rule was present. This affects gRPC-Go servers that use path-based authorization interceptors, such as the official RBAC implementation in google.golang.org/grpc/authz or custom interceptors relying on info.FullMethod or grpc.Method(ctx); AND that have a security policy contains specific "deny" rules for canonical paths but allows other requests by default (a fallback "allow" rule). The vulnerability is exploitable by an attacker who can send raw HTTP/2 frames with malformed :path headers directly to the gRPC server. The fix in version 1.79.3 ensures that any request with a :path that does not start with a leading slash is immediately rejected with a codes.Unimplemented error, preventing it from reaching authorization interceptors or handlers with a non-canonical path string. While upgrading is the most secure and recommended path, users can mitigate the vulnerability using one of the following methods: Use a validating interceptor (recommended mitigation); infrastructure-level normalization; and/or policy hardening.


Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant