Skip to content

chore(deps): update module google.golang.org/grpc to v1.83.2 [security] - #127

Merged
flemzord merged 1 commit into
mainfrom
renovate/security
Sep 10, 2026
Merged

chore(deps): update module google.golang.org/grpc to v1.83.2 [security]#127
flemzord merged 1 commit into
mainfrom
renovate/security

Conversation

@NumaryBot

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change
google.golang.org/grpc indirect patch v1.83.1 -> v1.83.2

gRPC-Go xDS servers: Denial of Service (DoS) via crash due to missing :authority and Host headers

CVE-2026-84445 / GHSA-2v4p-qf9q-27wj

More information

Details

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.

Severity

High

References

This data is provided by OSV and the GitHub Advisory Database (CC-BY 4.0).


Release Notes

grpc/grpc-go (google.golang.org/grpc)

v1.83.2: Release 1.83.2

Compare Source

Security


Configuration

📅 Schedule: Branch creation - "" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@NumaryBot
NumaryBot requested a review from a team as a code owner September 9, 2026 02:08
@NumaryBot
NumaryBot enabled auto-merge (squash) September 9, 2026 02:08
@NumaryBot

Copy link
Copy Markdown
Contributor Author

✅ Approve — automated review

The patch consistently updates gRPC from v1.83.1 to v1.83.2 with matching module checksums. No regressions are evident in the dependency-only change.

No findings.

@shipfox-ai

shipfox-ai Bot commented Sep 9, 2026

Copy link
Copy Markdown

Both model reports were verified against diff.patch and the actual checkout, and are in full agreement: PR #127 is a single-commit, single-purpose Renovate security bump of google.golang.org/grpc from v1.83.1 to v1.83.2 (CVE-2026-84445 / GHSA-2v4p-qf9q-27wj), touching only go.mod and go.sum. I independently confirmed the target checkout matches the spec exactly (go.mod:240 pins v1.83.2 // indirect with the marker preserved; go.sum:639-640 update both the module hash and the /go.mod hash consistently, with no stale v1.83.1 lines remaining) and that the repository contains no direct gRPC or xDS server code — grpc is only an indirect dependency (via otelgrpc), so this patch bump carries no meaningful compatibility or regression risk. Recommendation: approve.

Standards

No confirmed material finding. The repository documents no coding standards applicable to this diff (pkg/client/CONTRIBUTING.md is a generated-code notice and does not govern dependency manifests), and the diff introduces no code-level constructs. All candidate smells considered by both models (version-string duplication across go.mod/go.sum, the two-file footprint of the bump) are artifacts of Go module tooling and are correctly not findings.

Spec

No confirmed material finding. The PR specifies exactly one requirement — google.golang.org/grpc (indirect) v1.83.1 -> v1.83.2 — and the diff delivers it completely: the version line in go.mod and the two matching hash lines in go.sum, nothing more. No missing requirements, no scope creep, no behaviour that looks wrong.

Reviewed independently by GLM (glm-5.3-flash) and DeepSeek (deepseek-v4-pro-0813) via Shipfox; verified and synthesized by GLM.

@flemzord
flemzord merged commit d4b86c4 into main Sep 10, 2026
7 of 11 checks passed
@flemzord
flemzord deleted the renovate/security branch September 10, 2026 09:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Development

Successfully merging this pull request may close these issues.

2 participants