fix(operators): bump x/crypto + x/net to clear 14 HIGH CVEs (security CI red)#50
Merged
Conversation
… CI red)
The security workflow's trivy filesystem scan has been red on main, flagging 14
HIGH advisories — all in operators/go.mod, with pnpm-lock.yaml clean:
- golang.org/x/crypto v0.50.0 → v0.53.0: 8 SSH CVEs (CVE-2026-39827/39828/39829/
39830/39835/42508/46595/46597 — channel-open DoS, unauthorized command exec,
knownhosts revocation bypass, source-address authorization bypass, …).
- golang.org/x/net v0.53.0 → v0.56.0: 6 HTML/idna CVEs (CVE-2026-25680/25681/
27136/39821/42502/42506 — HTML-render CPU DoS, idna Punycode privilege escalation).
Both are indirect deps; go mod tidy carried the consistent x/term/x/text/x/tools
bumps along. Verified with trivy 0.70.0 (HIGH,CRITICAL, ignore-unfixed) locally:
operators/go.mod now reports 0 vulnerabilities. go build ./... passes.
Closes #49.
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.
The
securitytrivy scan has been red on main (and blocking PR #48). Ground-truth scan (local trivy 0.70.0, same flags as CI): 14 HIGH, all inoperators/go.mod; pnpm-lock clean.golang.org/x/crypto v0.50.0 → v0.53.0— 8 SSH CVEs (channel-open DoS, unauthorized command exec, knownhosts revocation bypass, source-address authz bypass, …)golang.org/x/net v0.53.0 → v0.56.0— 6 HTML/idna CVEs (HTML-render CPU DoS, idna Punycode privilege escalation, …)Indirect deps;
go mod tidycarried consistent x/term/x/text/x/tools bumps. trivy now reports 0 for operators/go.mod;go build ./...passes.Closes #49.