Ocpbugs 92691 CVE 2026 46597 4 13 - #16977
Conversation
…ypto/ssh: Denial of Service via crafted AES-GCM packet decoder inputs [openshift-4.13.z]
…penshift-4.13.z] Scope test-backend.sh vendor consistency check to vendor/, go.mod, and go.sum to avoid false positives from unrelated ignored directories. Resolve i18next binary path absolutely in build-i18n.sh since Yarn 4 does not inject node_modules/.bin into PATH for child shell processes.
|
Pipeline controller notification For optional jobs, comment This repository is configured in: LGTM mode |
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Repository: openshift/coderabbit/.coderabbit.yaml Review profile: CHILL Plan: Pro Plus Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: tonyxrmdavidson The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
|
/test backend |
|
/retest |
|
/pipeline required |
|
Scheduling required tests: |
|
@tonyxrmdavidson: The following tests failed, say
Full PR test history. Your PR dashboard. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
OCPBUGS-92691: CVE-2026-46597 — golang.org/x/crypto/ssh Denial of Service [openshift-4.13.z]
Vulnerability
CVE-2026-46597 is a Denial of Service vulnerability in
golang.org/x/crypto/sshcaused by crafted AES-GCM packet decoder inputs. An attacker could exploit malformed SSH packets to crash or hang the server.Remediation steps
Replaced
golang.org/x/cryptowith a patched fork: Added areplacedirective ingo.modto pingolang.org/x/cryptotogithub.com/openshift-sustaining/crypto v0.24.0-sec.3, which contains the fix for CVE-2026-46597.Bumped transitive
golang.org/x/dependencies to compatible versions required by the patched crypto module:golang.org/x/crypto: v0.5.0 -> v0.23.0 (replaced by patched fork)golang.org/x/net: v0.5.0 -> v0.25.0golang.org/x/sys: v0.4.0 -> v0.21.0golang.org/x/mod: v0.6.0 -> v0.17.0golang.org/x/sync: v0.1.0 -> v0.7.0golang.org/x/term: v0.4.0 -> v0.21.0golang.org/x/text: v0.6.0 -> v0.16.0Regenerated vendor directory: Ran
go mod tidy && go mod vendorto sync all vendored dependencies with the updatedgo.mod.Fixed test infrastructure to unblock CI after the dependency update:
test-backend.sh: Scoped thegit statusvendor consistency check tovendor/,go.mod, andgo.sumonly. The previousgit status --porcelain --ignoredwas picking up unrelated ignored directories (e.g.node_modules/,.claude/), causing false positives.build-i18n.sh: Resolved thei18nextbinary path absolutely using the script's directory. Yarn 4 does not injectnode_modules/.bininto PATH for child shell processes, so the barei18nextcommand was not found.Test results