Skip to main content

gRPC-Go CVE-2026-84445

| EUVDEUVD-2026-77627 HIGH
Improper Validation of Array Index (CWE-129)
2026-09-08 https://github.com/grpc/grpc-go GHSA-2v4p-qf9q-27wj
8.7
CVSS 4.0 · Vendor: https://github.com/grpc/grpc-go
Share

Severity by source

Vendor (https://github.com/grpc/grpc-go) PRIMARY
8.7 HIGH
CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
vuln.today AI
7.5 HIGH

Network-reachable, no auth required on insecure/TLS servers; pure availability crash with no confidentiality or integrity impact.

3.1 AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
4.0 AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N
SUSE
7.5 HIGH
AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H

Primary rating from Vendor (https://github.com/grpc/grpc-go).

CVSS VectorVendor: https://github.com/grpc/grpc-go

Attack Vector
Network
Attack Complexity
Low
Privileges Required
None
User Interaction
None
Scope
X

Lifecycle Timeline

6
Re-analysis Queued
Sep 14, 2026 - 17:22 vuln.today
cvss_changed
CVSS changed
Sep 14, 2026 - 17:22 NVD
8.7 (HIGH)
POC Analysis Generated
Sep 08, 2026 - 23:25 vuln.today
Source Code Evidence Fetched
Sep 08, 2026 - 22:04 vuln.today
Analysis Generated
Sep 08, 2026 - 22:04 vuln.today
CVE Published
Sep 08, 2026 - 21:21 cve.org
HIGH

DescriptionCVE.org

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.

AnalysisAI

Server process termination in gRPC-Go's xDS routing layer allows any network-reachable attacker to crash a server instantiated with xds.NewGRPCServer() by sending a single crafted HTTP/2 request. The vulnerability stems from the xDS routing interceptor unconditionally reading index 0 of the authority slice before checking whether the slice is empty - triggered when both :authority and Host headers are absent from an otherwise valid HTTP/2 stream. …

Unlock full vulnerability intelligence

  • Risk assessment & exploitation conditions
  • Attack chain visualization
  • Remediation with exact patch versions
  • Threat intelligence from 22 sources
  • Personal watchlist & email alerts

Free forever · No credit card required

Attack ChainAIDerived

Hypothetical attack flow derived from CVE metadata

Access
technique details hidden
Delivery
technique details hidden
Exploit
technique details hidden
Execution
technique details hidden
Persist
technique details hidden
Impact
technique details hidden

Vulnerability AssessmentAI

Exploitation The server must be constructed with `xds.NewGRPCServer()` - not the standard `grpc.NewServer()` constructor - as only the xDS variant installs the vulnerable routing interceptor. … Additional conditions and limiting factors are described in the full assessment.
Risk Assessment The real-world risk is elevated for any internet- or mesh-facing gRPC-Go service using the xDS server constructor, because the trigger is a trivially crafted HTTP/2 request - omitting two headers is within reach of any developer with basic HTTP/2 framing knowledge. … Full risk analysis with EPSS, KEV, and SSVC signal comparison available after sign-in.
Exploit Scenario Full exploit scenario with step-by-step reproduction available after sign-in.
Remediation Upgrade to google.golang.org/grpc v1.82.2 (for the 1.82.x line) or v1.83.2 (for the 1.83.x line) using standard Go module tooling: `go get google.golang.org/grpc@v1.83.2 && go mod tidy`, then rebuild and redeploy. … Detailed patch versions, workarounds, and compensating controls in full report.

Recommended ActionAI

Within 24 hours, identify all production systems running gRPC-Go versions prior to v1.82.2 or v1.83.2 with xDS routing enabled and assess network exposure. …

Sign in for detailed remediation steps and compensating controls.

Threat intelligence, references, and detailed analysis are available after sign-in.

Vendor StatusVendor

SUSE

Severity: Important
Product Status
SUSE Linux Enterprise High Performance Computing 15 SP4 SUSE Linux Enterprise Module for Public Cloud 15 SP4 SUSE Linux Enterprise Server 15 SP4 SUSE Linux Enterprise Server for SAP Applications 15 SP4 SUSE Manager Proxy 4.3 SUSE Manager Retail Branch Server 4.3 SUSE Manager Server 4.3 Fixed
SUSE Linux Enterprise High Performance Computing 15 SP5 SUSE Linux Enterprise Module for Public Cloud 15 SP5 SUSE Linux Enterprise Server 15 SP5 SUSE Linux Enterprise Server for SAP Applications 15 SP5 Fixed
SUSE Linux Enterprise Module for Public Cloud 15 SP6 SUSE Linux Enterprise Server 15 SP6 SUSE Linux Enterprise Server for SAP Applications 15 SP6 Fixed
SUSE Linux Enterprise Module for Public Cloud 15 SP7 SUSE Linux Enterprise Server 15 SP7 SUSE Linux Enterprise Server for SAP Applications 15 SP7 Fixed
SUSE Linux Micro 6.2 Fixed

Share

CVE-2026-84445 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy