fix(deps): google.golang.org/grpc 1.83.1 → 1.83.2 (GHSA-2v4p-qf9q-27wj) - #425
Merged
Merged
Conversation
gRPC-Go xDS servers: Denial of Service (DoS) via crash due to missing `:authority` and `Host` headers
Vulnerable range >= 1.83.0, < 1.83.2; patched in 1.83.2. grpc is an indirect
dependency here, so the fix is a go.mod bump plus a vendor resync — this repo
vendors its dependencies, and go.mod alone leaves vendor/modules.txt claiming
1.83.1, which `go build` rejects outright:
google.golang.org/grpc@v1.83.1: is marked as explicit in vendor/modules.txt,
but not explicitly required in go.mod
The only vendored source change is in internal/transport/http2_server.go.
Verified: `go build ./...` is clean and vendor/modules.txt reads
`# google.golang.org/grpc v1.83.2`.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
google.golang.org/grpcis on 1.83.1, inside the vulnerable range ofGHSA-2v4p-qf9q-27wj:
Vulnerable
>= 1.83.0, < 1.83.2; patched in 1.83.2. It is an indirectdependency, surfaced by a Dependabot alert on
go.mod.The change
go get google.golang.org/grpc@v1.83.2 && go mod tidy && go mod vendorgo.mod/go.sumvendor/modules.txtvendor/.../internal/transport/http2_server.goThe vendor resync is required, not cosmetic. This repo vendors its
dependencies, so bumping
go.modalone leavesvendor/modules.txtpinned at1.83.1 and
go buildrefuses:Verification
go build ./...clean.vendor/modules.txtreads# google.golang.org/grpc v1.83.2.Found in an org-wide sweep of open Dependabot alerts filtered to critical/high
with a published fix — this was the only actionable one in
cli.