fix(deps): bump golang.org/x/net to v0.56.0, clear GO-2026-5942 - #208
Open
acamarata wants to merge 1 commit into
Open
fix(deps): bump golang.org/x/net to v0.56.0, clear GO-2026-5942#208acamarata wants to merge 1 commit into
acamarata wants to merge 1 commit into
Conversation
The Nightly Security Audit re-run after #207 landed flagged a newly published govulncheck finding (GO-2026-5942, CVE-2026-46600, added to the vuln DB 2026-08-14 — after #207's local scan): parsing an invalid SVCB/HTTPS DNS resource record can panic when a parameter value overflows the message buffer. The stdlib half of this CVE (net.LookupCNAME et al.) is already fixed by the go1.26.6 toolchain bump from #207. The remaining reachable path is golang.org/x/net/dns/dnsmessage, pulled in transitively via grpc; bumped v0.55.0 -> v0.56.0 (fixed version) and re-vendored. Verified locally with go1.26.6: govulncheck ./... reports 0 vulnerabilities, go build -mod=vendor ./... succeeds, go test -mod=vendor ./... passes all 98 packages.
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.
Summary
net.LookupCNAMEet al.) is already covered by the go1.26.6 toolchain bump from fix(deps): bump Go toolchain to 1.26.6, clear govulncheck findings #207. The remaining reachable path isgolang.org/x/net/dns/dnsmessage, pulled in transitively via grpc.golang.org/x/netv0.55.0 -> v0.56.0 (the fixed version) viago get+go mod vendor.Test plan
go build -mod=vendor ./...— cleanCGO_ENABLED=0 go test -mod=vendor ./...— 98/98 packages pass, 0 failuresgo run golang.org/x/vuln/cmd/govulncheck@latest ./...(go1.26.6) — 0 vulnerabilities