-
Notifications
You must be signed in to change notification settings - Fork 20
Open
Conversation
Picks up the fix for CVE-2026-56854 (GO-2026-6303) in golang.org/x/crypto/ssh. tokenizer only imports curve25519 and nacl/box, so the vulnerable ssh server code path is not linked into the binary; the bump clears scanner findings (AWS Inspector flags the module version) and keeps the dependency current. `go get golang.org/x/crypto@v0.55.0 && go mod tidy`; golang.org/x/sys and golang.org/x/text move as transitive requirements. `go build ./...` and `go test ./...` pass.
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.
Bumps
golang.org/x/cryptofrom v0.50.0 to v0.55.0 (go get golang.org/x/crypto@v0.55.0 && go mod tidy;golang.org/x/sysv0.43.0 → v0.47.0 andgolang.org/x/textv0.36.0 → v0.41.0 move as transitive requirements).Why: v0.55.0 carries the fix for CVE-2026-56854 / GO-2026-6303 in
golang.org/x/crypto/ssh(thesource-addresscritical option was not enforced for Permissions returned by non-public-key auth callbacks). tokenizer itself only importscurve25519andnacl/box, so the vulnerablesshserver path is not linked into the binary — but container scanners (AWS Inspector in our case) flag the module version recorded in the binary's build info, so every image built from this module currently shows up as HIGH. Bumping clears that and keeps the dependency current, same as #50 did for the previous round.Verification:
go build ./...andgo test ./...pass locally (go 1.26, linux/arm64).This PR was prepared by Claude Code (an AI coding agent) and reviewed and approved by a human (@carrotRakko) before submission.
✍️ Author: Claude Code with @carrotRakko (AI-written, human-approved)