Part of epic tracebloc/backend#1106 (WS-A: Security & toolchain). Report: https://claude.ai/code/artifact/b4b6e6a6-4d76-4e46-a668-6f4f0f944344 — §5 WS-A.1.
Context
govulncheck ./... reports 6 reachable vulnerabilities in the shipped CLI: 4 stdlib (incl. GO-2026-5856 in crypto/tls, fixed in go1.26.4/.5) — go.mod declares go 1.26.0 with no toolchain directive, so released v0.8.0 binaries were built with the vulnerable stdlib — plus 2 in golang.org/x/net v0.49.0 (GO-2026-4918 HTTP/2 infinite loop, fixed v0.53.0; GO-2026-5026, fixed v0.55.0 → combined bump floor v0.55.0), reachable via api.userAgentTransport.RoundTrip, submit.HTTPSubmitter.Submit, push.CheckCSVEncoding. This is a customer-installed binary.
Tasks
Exit criteria
Part of epic tracebloc/backend#1106 (WS-A: Security & toolchain). Report: https://claude.ai/code/artifact/b4b6e6a6-4d76-4e46-a668-6f4f0f944344 — §5 WS-A.1.
Context
govulncheck ./...reports 6 reachable vulnerabilities in the shipped CLI: 4 stdlib (incl. GO-2026-5856 in crypto/tls, fixed in go1.26.4/.5) —go.moddeclaresgo 1.26.0with notoolchaindirective, so released v0.8.0 binaries were built with the vulnerable stdlib — plus 2 ingolang.org/x/net v0.49.0(GO-2026-4918 HTTP/2 infinite loop, fixed v0.53.0; GO-2026-5026, fixed v0.55.0 → combined bump floor v0.55.0), reachable viaapi.userAgentTransport.RoundTrip,submit.HTTPSubmitter.Submit,push.CheckCSVEncoding. This is a customer-installed binary.Tasks
toolchain go1.26.5to go.mod (verify latest 1.26.x patch at implementation time)go get golang.org/x/net@v0.55.0(or current fix floor) +go mod tidygovulncheck ./...→ 0 reachable vulns; full unit suite greengovulncheck@v1.1.4on PRs/develop + weekly cron (a new CVE should redden develop, not wait for the next PR)Exit criteria