Not a U.S. government website. NDD is an independent vulnerability database by Volerion and is not affiliated with or endorsed by NIST or NVD.
VOLERION
Volerion Security Research

NOT DEFERRED DATABASE

VULNERABILITIES

CVE-2026-33186 Details

Description

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.

Metrics

CVSS 3.x Severity and Vector Strings:

References to Advisories, Solutions, and Tools

By selecting these links, you will be leaving this site. These are references gathered from the official CVE record and are not endorsed by Volerion.

URLSource(s)Tag(s)
https://access.redhat.com/errata/RHSA-2026:10093 redhat-SADP
https://access.redhat.com/errata/RHSA-2026:10094 redhat-SADP
https://access.redhat.com/errata/RHSA-2026:10105 redhat-SADP
https://access.redhat.com/errata/RHSA-2026:10107 redhat-SADP
https://access.redhat.com/errata/RHSA-2026:10125 redhat-SADP

see all 233 references

Weakness Enumeration

CWE-IDCWE NameSource
CWE-285Improper Authorization[email protected]
CWE-551Incorrect Behavior Order: Authorization Before Parsing and Canonicalizationredhat-SADP

Affected Products

ProductVersions
grpc grpc
< 1.79.3

CPE

  • cpe:2.3:a:grpc:grpc:*:*:*:*:*:go:*:*

Remediation

  • No remediation found in references.

Change History

56 change records found show changes


QUICK INFO

CVE Dictionary Entry:
CVE-2026-33186
NVD Published Date:
Mar 20, 2026
NVD Last Modified:
Sep 18, 2026
Source:
[email protected]
CVE-2026-33186 Details - Not Deferred