CVE-2026-84445: Out-of-bounds Read
A vulnerability exists in gRPC-Go servers configured with xds.NewGRPCServer() where a crafted request missing both :authority and Host headers can cause a server panic, resulting in a Denial of Service (DoS).
Servers built with xds.NewGRPCServer install an xDS routing interceptor on every RPC. This interceptor looks up the request’s :authority header to pick a virtual host. The HTTP/2 server transport previously accepted requests that had neither :authority nor Host. When this happened, the xDS routing interceptor attempted to access the first element of an empty slice of authorities, leading to an index out of bounds panic. Since the per-RPC goroutine does not recover from panics, the entire server process would terminate.
This panic occurs in the interceptor pipeline, meaning the transport credentials handshake (TLS, mTLS, or ALTS) and HTTP/2 connection establishment must complete successfully before the crafted request can reach this logic. - Insecure/Standard TLS: If the server permits insecure (plaintext) connections or standard credentials (where client certs are not checked), any unauthenticated remote attacker can trigger the crash. - mTLS / ALTS: If strict transport-level authentication is enforced at the network edge or transport layer (e.g., requiring a valid client certificate), the attacker must possess valid transport credentials to initiate the stream and trigger the panic.
Impact An attacker can cause a complete outage of the gRPC server by sending a request missing both :authority and Host headers, provided they can successfully establish a transport connection.
Patches The issue has been addressed in master (and backported to 1.83.2 and 1.82.2). The fix updates the HTTP/2 transport layer to reject requests missing both :authority and Host headers early, maintaining consistency with and other gRPC language implementations.
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
go/google.golang.org/grpcto a version that resolves this vulnerability.Fixed in 1.85.0-dev.0.20260825072537-93e31b48545e - Upgrade
Upgrade
go/google.golang.org/grpcto a version that resolves this vulnerability.Fixed in 1.83.2 - Upgrade
Upgrade
go/google.golang.org/grpcto a version that resolves this vulnerability.Fixed in 1.82.2 - Upgrade
Upgrade to a fixed release to a version that resolves this vulnerability.
Fixed in 1.83.2 - Upgrade
Upgrade to a fixed release to a version that resolves this vulnerability.
Fixed in 1.82.2 - Compensating control
Enforce strict transport-level authentication at the network edge or transport layer (e.g., requiring a valid client certificate for mTLS/ALTS) so attackers cannot establish a transport connection to reach the gRPC xDS interceptor panic.
- Compensating control
Disable or prevent insecure plaintext transport and standard credentials scenarios where client certs are not checked, since the server must successfully establish a transport connection to trigger the panic.
Event History
Frequently Asked Questions
Which deployments are exposed to unauthenticated remote denial-of-service attempts?
Servers created with xds.NewGRPCServer() are exposed if they permit plaintext connections or use standard TLS credentials that do not validate client certificates. In those configurations, an unauthenticated remote attacker can complete the connection setup and send the malformed request.
Does enabling TLS by itself prevent exploitation?
No. Standard TLS prevents neither the required HTTP/2 connection establishment nor the malformed request from reaching the xDS routing interceptor when client certificates are not checked. The request must only complete the configured transport-credentials handshake before it can trigger the panic.
What request condition triggers the failure?
The request must omit both the HTTP/2 :authority header and the Host header. This leaves the interceptor with no authority values and causes an out-of-bounds access while selecting an xDS virtual host.