Skip to content

[openshift-5.0] OCPBUGS-97969 OCPBUGS-98134 OCPBUGS-95514 OCPBUGS-93620 OCPBUGS-98913 OCPBUGS-98911 OCPBUGS-98909: Bump golang.org/x/crypto to v0.52.0#625

Open
AkashMore08 wants to merge 1 commit into
openshift:mainfrom
AkashMore08:OCPBUGS-97969_release-5.0
Open

[openshift-5.0] OCPBUGS-97969 OCPBUGS-98134 OCPBUGS-95514 OCPBUGS-93620 OCPBUGS-98913 OCPBUGS-98911 OCPBUGS-98909: Bump golang.org/x/crypto to v0.52.0#625
AkashMore08 wants to merge 1 commit into
openshift:mainfrom
AkashMore08:OCPBUGS-97969_release-5.0

Conversation

@AkashMore08

@AkashMore08 AkashMore08 commented Jul 15, 2026

Copy link
Copy Markdown

Bumps golang.org/x/crypto from v0.47.0 to v0.52.0 to remediate the below CVE.

CVE-2026-39829 (OCPBUGS-97969) — Pathological RSA/DSA parameters cause DoS
The RSA and DSA public key parsers did not enforce size limits on key parameters. A crafted public key with an excessively large modulus or DSA parameter could cause several minutes of CPU consumption during signature verification.

CVE-2026-39828 (OCPBUGS-98134) — Bypass of certificate restrictions
When an SSH server authentication callback returned PartialSuccessError with non-nil Permissions, those permissions were silently discarded, potentially dropping certificate restrictions such as force-command after a second factor succeeded.

CVE-2026-46597 (OCPBUGS-95514) — Byte arithmetic underflow and panic
An incorrectly placed cast from bytes to int allowed for server-side panic in the AES-GCM packet decoder for well-crafted inputs.

CVE-2026-39835 (OCPBUGS-93620) — Server panic during CheckHostKey/Authenticate
SSH servers which use CertChecker as a public key callback without setting IsUserAuthority or IsHostAuthority could be caused to panic by a client presenting a certificate.

CVE-2026-46595 (OCPBUGS-98913) — VerifiedPublicKeyCallback permissions skip enforcement
Source-address validation was skipped for non-public-key callbacks, an incomplete fix for CVE-2024-45337. Connections from unauthorized source IPs could be accepted.

CVE-2026-39831 (OCPBUGS-98911) — Bypass of FIDO/U2F security keys physical interaction
The Verify() method for FIDO/U2F security key types did not check the User Presence flag. Signatures generated without physical touch were accepted, allowing unattended use of a hardware security key.

CVE-2026-39830 (OCPBUGS-98909) — Client can cause server deadlock on unexpected responses
A malicious SSH peer could send unsolicited global request responses to fill an internal buffer, blocking the connection's read loop. The blocked goroutine could not be released by calling Close(), resulting in a resource leak per connection.

Impact Analysis:

linuxptp-daemon does not directly import golang.org/x/crypto/ssh. The package enters the dependency graph indirectly via github.com/google/goexpect, which imports crypto/ssh for its SpawnSSH functionality. linuxptp-daemon only uses goexpect's local process spawning (Spawn, SpawnGeneric), never SpawnSSH. govulncheck confirms no call path to any vulnerable symbol. However, we are proactively bumping golang.org/x/crypto/ssh to v0.52.0 on the main branch as a best practice to prevent any potential exposure in the future.

Changes

golang.org/x/crypto v0.47.0 → v0.52.0
Transitive bumps:
golang.org/x/sync v0.19.0 → v0.20.0
golang.org/x/net v0.49.0 → v0.54.0
golang.org/x/sys v0.40.0 → v0.45.0
golang.org/x/term v0.39.0 → v0.43.0
golang.org/x/text v0.33.0 → v0.37.0

Remediates CVE-2026-39829: RSA/DSA public key parsers in
golang.org/x/crypto/ssh did not enforce size limits on key
parameters, allowing DoS via CPU exhaustion.

Transitive bumps:
- golang.org/x/sync v0.19.0 → v0.20.0
- golang.org/x/net v0.49.0 → v0.54.0
- golang.org/x/sys v0.40.0 → v0.45.0
- golang.org/x/term v0.39.0 → v0.43.0
- golang.org/x/text v0.33.0 → v0.37.0

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
@openshift-ci-robot openshift-ci-robot added jira/severity-important Referenced Jira bug's severity is important for the branch this PR is targeting. jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. jira/valid-bug Indicates that a referenced Jira bug is valid for the branch this PR is targeting. labels Jul 15, 2026
@openshift-ci-robot

Copy link
Copy Markdown
Contributor

@AkashMore08: This pull request references Jira Issue OCPBUGS-97969, which is valid. The bug has been moved to the POST state.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state ASSIGNED, which is one of the valid states (NEW, ASSIGNED, POST)

Requesting review from QA contact:
/cc @tonyxrmdavidson

The bug has been updated to refer to the pull request using the external bug tracker.

Details

In response to this:

Bumps golang.org/x/crypto from v0.47.0 to v0.52.0 to remediate CVE-2026-39829 (DoS via crafted RSA/DSA public key with excessive parameters in golang.org/x/crypto/ssh).

The RSA and DSA public key parsers did not enforce size limits on key parameters. A crafted public key with an excessively large modulus or DSA parameter could cause several minutes of CPU consumption during signature verification.

Impact Analysis:
linuxptp-daemon does not directly import golang.org/x/crypto/ssh. The package enters the dependency graph indirectly via github.com/google/goexpect, which imports crypto/ssh for its SpawnSSH functionality. linuxptp-daemon only uses goexpect's local process spawning (Spawn, SpawnGeneric), never SpawnSSH. govulncheck confirms no call path to any vulnerable symbol. However, we are proactively bumping golang.org/x/crypto/ssh to v0.52.0 on the main branch as a best practice to prevent any potential exposure in the future.

Changes
golang.org/x/crypto v0.47.0 → v0.52.0

Transitive bumps:
golang.org/x/sync v0.19.0 → v0.20.0
golang.org/x/net v0.49.0 → v0.54.0
golang.org/x/sys v0.40.0 → v0.45.0
golang.org/x/term v0.39.0 → v0.43.0
golang.org/x/text v0.33.0 → v0.37.0

Instructions 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 openshift-eng/jira-lifecycle-plugin repository.

@openshift-ci

openshift-ci Bot commented Jul 15, 2026

Copy link
Copy Markdown
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: AkashMore08
Once this PR has been reviewed and has the lgtm label, please assign vitus133 for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@openshift-ci

openshift-ci Bot commented Jul 15, 2026

Copy link
Copy Markdown
Contributor

@AkashMore08: all tests passed!

Full PR test history. Your PR dashboard.

Details

Instructions 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.

@AkashMore08 AkashMore08 changed the title [openshift-5.0] OCPBUGS-97969: Bump golang.org/x/crypto to v0.52.0 [openshift-5.0] OCPBUGS-97969 OCPBUGS-98134 OCPBUGS-95514 OCPBUGS-93620: Bump golang.org/x/crypto to v0.52.0 Jul 16, 2026
@openshift-ci-robot

Copy link
Copy Markdown
Contributor

@AkashMore08: This pull request references Jira Issue OCPBUGS-97969, which is valid.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state POST, which is one of the valid states (NEW, ASSIGNED, POST)

Requesting review from QA contact:
/cc @tonyxrmdavidson

The bug has been updated to refer to the pull request using the external bug tracker.

This pull request references Jira Issue OCPBUGS-98134, which is valid. The bug has been moved to the POST state.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state ASSIGNED, which is one of the valid states (NEW, ASSIGNED, POST)

Requesting review from QA contact:
/cc @tonyxrmdavidson

The bug has been updated to refer to the pull request using the external bug tracker.

This pull request references Jira Issue OCPBUGS-95514, which is valid. The bug has been moved to the POST state.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state ASSIGNED, which is one of the valid states (NEW, ASSIGNED, POST)

Requesting review from QA contact:
/cc @tonyxrmdavidson

The bug has been updated to refer to the pull request using the external bug tracker.

This pull request references Jira Issue OCPBUGS-93620, which is valid. The bug has been moved to the POST state.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state ASSIGNED, which is one of the valid states (NEW, ASSIGNED, POST)

Requesting review from QA contact:
/cc @tonyxrmdavidson

The bug has been updated to refer to the pull request using the external bug tracker.

Details

In response to this:

Bumps golang.org/x/crypto from v0.47.0 to v0.52.0 to remediate CVE-2026-39829 (DoS via crafted RSA/DSA public key with excessive parameters in golang.org/x/crypto/ssh).

The RSA and DSA public key parsers did not enforce size limits on key parameters. A crafted public key with an excessively large modulus or DSA parameter could cause several minutes of CPU consumption during signature verification.

Impact Analysis:
linuxptp-daemon does not directly import golang.org/x/crypto/ssh. The package enters the dependency graph indirectly via github.com/google/goexpect, which imports crypto/ssh for its SpawnSSH functionality. linuxptp-daemon only uses goexpect's local process spawning (Spawn, SpawnGeneric), never SpawnSSH. govulncheck confirms no call path to any vulnerable symbol. However, we are proactively bumping golang.org/x/crypto/ssh to v0.52.0 on the main branch as a best practice to prevent any potential exposure in the future.

Changes
golang.org/x/crypto v0.47.0 → v0.52.0

Transitive bumps:
golang.org/x/sync v0.19.0 → v0.20.0
golang.org/x/net v0.49.0 → v0.54.0
golang.org/x/sys v0.40.0 → v0.45.0
golang.org/x/term v0.39.0 → v0.43.0
golang.org/x/text v0.33.0 → v0.37.0

Instructions 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 openshift-eng/jira-lifecycle-plugin repository.

@openshift-ci-robot

Copy link
Copy Markdown
Contributor

@AkashMore08: This pull request references Jira Issue OCPBUGS-97969, which is valid.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state POST, which is one of the valid states (NEW, ASSIGNED, POST)

Requesting review from QA contact:
/cc @tonyxrmdavidson

This pull request references Jira Issue OCPBUGS-98134, which is valid.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state POST, which is one of the valid states (NEW, ASSIGNED, POST)

Requesting review from QA contact:
/cc @tonyxrmdavidson

This pull request references Jira Issue OCPBUGS-95514, which is valid.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state POST, which is one of the valid states (NEW, ASSIGNED, POST)

Requesting review from QA contact:
/cc @tonyxrmdavidson

This pull request references Jira Issue OCPBUGS-93620, which is valid.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state POST, which is one of the valid states (NEW, ASSIGNED, POST)

Requesting review from QA contact:
/cc @tonyxrmdavidson

Details

In response to this:

Bumps golang.org/x/crypto from v0.47.0 to v0.52.0 to remediate CVE-2026-39829, CVE-2026-39828, CVE-2026-46597, CVE-2026-39835

CVE-2026-39829 (OCPBUGS-97969): Pathological RSA/DSA parameters cause DoS
The RSA and DSA public key parsers did not enforce size limits on key parameters. A crafted public key with an excessively large modulus or DSA parameter could cause several minutes of CPU consumption during signature verification.

CVE-2026-39828 (OCPBUGS-98134): Bypass of certificate restrictions
When an SSH server authentication callback returned PartialSuccessError with non-nil Permissions, those permissions were silently discarded, potentially dropping certificate restrictions such as force-command after a second factor succeeded.

CVE-2026-46597 (OCPBUGS-95514): Byte arithmetic underflow and panic
An incorrectly placed cast from bytes to int allowed for server-side panic in the AES-GCM packet decoder for well-crafted inputs.

CVE-2026-39835 (OCPBUGS-93620): Server panic during CheckHostKey/Authenticate
SSH servers which use CertChecker as a public key callback without setting IsUserAuthority or IsHostAuthority could be caused to panic by a client presenting a certificate.

CVE-2026-46595
CVE-2026-39831
CVE-2026-39830

Impact Analysis:

linuxptp-daemon does not directly import golang.org/x/crypto/ssh. The package enters the dependency graph indirectly via github.com/google/goexpect, which imports crypto/ssh for its SpawnSSH functionality. linuxptp-daemon only uses goexpect's local process spawning (Spawn, SpawnGeneric), never SpawnSSH. govulncheck confirms no call path to any vulnerable symbol. However, we are proactively bumping golang.org/x/crypto/ssh to v0.52.0 on the main branch as a best practice to prevent any potential exposure in the future.

Changes

golang.org/x/crypto v0.47.0 → v0.52.0
Transitive bumps:
golang.org/x/sync v0.19.0 → v0.20.0
golang.org/x/net v0.49.0 → v0.54.0
golang.org/x/sys v0.40.0 → v0.45.0
golang.org/x/term v0.39.0 → v0.43.0
golang.org/x/text v0.33.0 → v0.37.0

Instructions 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 openshift-eng/jira-lifecycle-plugin repository.

@AkashMore08

Copy link
Copy Markdown
Author

/hold
We are still checking all the CVE address by this bump.

@openshift-ci openshift-ci Bot added the do-not-merge/hold Indicates that a PR should not merge because someone has issued a /hold command. label Jul 16, 2026
@AkashMore08 AkashMore08 changed the title [openshift-5.0] OCPBUGS-97969 OCPBUGS-98134 OCPBUGS-95514 OCPBUGS-93620: Bump golang.org/x/crypto to v0.52.0 [openshift-5.0] OCPBUGS-97969 OCPBUGS-98134 OCPBUGS-95514 OCPBUGS-93620 OCPBUGS-98913 OCPBUGS-98911 OCPBUGS-98909: Bump golang.org/x/crypto to v0.52.0 Jul 16, 2026
@openshift-ci-robot

Copy link
Copy Markdown
Contributor

@AkashMore08: This pull request references Jira Issue OCPBUGS-97969, which is valid.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state POST, which is one of the valid states (NEW, ASSIGNED, POST)

Requesting review from QA contact:
/cc @tonyxrmdavidson

The bug has been updated to refer to the pull request using the external bug tracker.

This pull request references Jira Issue OCPBUGS-98134, which is valid.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state POST, which is one of the valid states (NEW, ASSIGNED, POST)

Requesting review from QA contact:
/cc @tonyxrmdavidson

The bug has been updated to refer to the pull request using the external bug tracker.

This pull request references Jira Issue OCPBUGS-95514, which is valid.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state POST, which is one of the valid states (NEW, ASSIGNED, POST)

Requesting review from QA contact:
/cc @tonyxrmdavidson

The bug has been updated to refer to the pull request using the external bug tracker.

This pull request references Jira Issue OCPBUGS-93620, which is valid.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state POST, which is one of the valid states (NEW, ASSIGNED, POST)

Requesting review from QA contact:
/cc @tonyxrmdavidson

The bug has been updated to refer to the pull request using the external bug tracker.

This pull request references Jira Issue OCPBUGS-98913, which is valid. The bug has been moved to the POST state.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state ASSIGNED, which is one of the valid states (NEW, ASSIGNED, POST)

The bug has been updated to refer to the pull request using the external bug tracker.

This pull request references Jira Issue OCPBUGS-98911, which is valid. The bug has been moved to the POST state.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state ASSIGNED, which is one of the valid states (NEW, ASSIGNED, POST)

The bug has been updated to refer to the pull request using the external bug tracker.

This pull request references Jira Issue OCPBUGS-98909, which is valid. The bug has been moved to the POST state.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state ASSIGNED, which is one of the valid states (NEW, ASSIGNED, POST)

The bug has been updated to refer to the pull request using the external bug tracker.

Details

In response to this:

Bumps golang.org/x/crypto from v0.47.0 to v0.52.0 to remediate CVE-2026-39829, CVE-2026-39828, CVE-2026-46597, CVE-2026-39835

CVE-2026-39829 (OCPBUGS-97969): Pathological RSA/DSA parameters cause DoS
The RSA and DSA public key parsers did not enforce size limits on key parameters. A crafted public key with an excessively large modulus or DSA parameter could cause several minutes of CPU consumption during signature verification.

CVE-2026-39828 (OCPBUGS-98134): Bypass of certificate restrictions
When an SSH server authentication callback returned PartialSuccessError with non-nil Permissions, those permissions were silently discarded, potentially dropping certificate restrictions such as force-command after a second factor succeeded.

CVE-2026-46597 (OCPBUGS-95514): Byte arithmetic underflow and panic
An incorrectly placed cast from bytes to int allowed for server-side panic in the AES-GCM packet decoder for well-crafted inputs.

CVE-2026-39835 (OCPBUGS-93620): Server panic during CheckHostKey/Authenticate
SSH servers which use CertChecker as a public key callback without setting IsUserAuthority or IsHostAuthority could be caused to panic by a client presenting a certificate.

CVE-2026-46595
CVE-2026-39831
CVE-2026-39830

Impact Analysis:

linuxptp-daemon does not directly import golang.org/x/crypto/ssh. The package enters the dependency graph indirectly via github.com/google/goexpect, which imports crypto/ssh for its SpawnSSH functionality. linuxptp-daemon only uses goexpect's local process spawning (Spawn, SpawnGeneric), never SpawnSSH. govulncheck confirms no call path to any vulnerable symbol. However, we are proactively bumping golang.org/x/crypto/ssh to v0.52.0 on the main branch as a best practice to prevent any potential exposure in the future.

Changes

golang.org/x/crypto v0.47.0 → v0.52.0
Transitive bumps:
golang.org/x/sync v0.19.0 → v0.20.0
golang.org/x/net v0.49.0 → v0.54.0
golang.org/x/sys v0.40.0 → v0.45.0
golang.org/x/term v0.39.0 → v0.43.0
golang.org/x/text v0.33.0 → v0.37.0

Instructions 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 openshift-eng/jira-lifecycle-plugin repository.

@AkashMore08

Copy link
Copy Markdown
Author

/jira refresh

@openshift-ci-robot

Copy link
Copy Markdown
Contributor

@AkashMore08: This pull request references Jira Issue OCPBUGS-97969, which is valid.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state POST, which is one of the valid states (NEW, ASSIGNED, POST)

Requesting review from QA contact:
/cc @tonyxrmdavidson

This pull request references Jira Issue OCPBUGS-98134, which is valid.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state POST, which is one of the valid states (NEW, ASSIGNED, POST)

Requesting review from QA contact:
/cc @tonyxrmdavidson

This pull request references Jira Issue OCPBUGS-95514, which is valid.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state POST, which is one of the valid states (NEW, ASSIGNED, POST)

Requesting review from QA contact:
/cc @tonyxrmdavidson

This pull request references Jira Issue OCPBUGS-93620, which is valid.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state POST, which is one of the valid states (NEW, ASSIGNED, POST)

Requesting review from QA contact:
/cc @tonyxrmdavidson

This pull request references Jira Issue OCPBUGS-98913, which is valid.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state POST, which is one of the valid states (NEW, ASSIGNED, POST)

This pull request references Jira Issue OCPBUGS-98911, which is valid.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state POST, which is one of the valid states (NEW, ASSIGNED, POST)

This pull request references Jira Issue OCPBUGS-98909, which is valid.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state POST, which is one of the valid states (NEW, ASSIGNED, POST)
Details

In response to this:

Bumps golang.org/x/crypto from v0.47.0 to v0.52.0 to remediate CVE-2026-39829, CVE-2026-39828, CVE-2026-46597, CVE-2026-39835

CVE-2026-39829 (OCPBUGS-97969) — Pathological RSA/DSA parameters cause DoS
The RSA and DSA public key parsers did not enforce size limits on key parameters. A crafted public key with an excessively large modulus or DSA parameter could cause several minutes of CPU consumption during signature verification.

CVE-2026-39828 (OCPBUGS-98134) — Bypass of certificate restrictions
When an SSH server authentication callback returned PartialSuccessError with non-nil Permissions, those permissions were silently discarded, potentially dropping certificate restrictions such as force-command after a second factor succeeded.

CVE-2026-46597 (OCPBUGS-95514) — Byte arithmetic underflow and panic
An incorrectly placed cast from bytes to int allowed for server-side panic in the AES-GCM packet decoder for well-crafted inputs.

CVE-2026-39835 (OCPBUGS-93620) — Server panic during CheckHostKey/Authenticate
SSH servers which use CertChecker as a public key callback without setting IsUserAuthority or IsHostAuthority could be caused to panic by a client presenting a certificate.

CVE-2026-46595 (OCPBUGS-98913) — VerifiedPublicKeyCallback permissions skip enforcement
Source-address validation was skipped for non-public-key callbacks, an incomplete fix for CVE-2024-45337. Connections from unauthorized source IPs could be accepted.

CVE-2026-39831 (OCPBUGS-98911) — Bypass of FIDO/U2F security keys physical interaction
The Verify() method for FIDO/U2F security key types did not check the User Presence flag. Signatures generated without physical touch were accepted, allowing unattended use of a hardware security key.

CVE-2026-39830 (OCPBUGS-98909) — Client can cause server deadlock on unexpected responses
A malicious SSH peer could send unsolicited global request responses to fill an internal buffer, blocking the connection's read loop. The blocked goroutine could not be released by calling Close(), resulting in a resource leak per connection.

Impact Analysis:

linuxptp-daemon does not directly import golang.org/x/crypto/ssh. The package enters the dependency graph indirectly via github.com/google/goexpect, which imports crypto/ssh for its SpawnSSH functionality. linuxptp-daemon only uses goexpect's local process spawning (Spawn, SpawnGeneric), never SpawnSSH. govulncheck confirms no call path to any vulnerable symbol. However, we are proactively bumping golang.org/x/crypto/ssh to v0.52.0 on the main branch as a best practice to prevent any potential exposure in the future.

Changes

golang.org/x/crypto v0.47.0 → v0.52.0
Transitive bumps:
golang.org/x/sync v0.19.0 → v0.20.0
golang.org/x/net v0.49.0 → v0.54.0
golang.org/x/sys v0.40.0 → v0.45.0
golang.org/x/term v0.39.0 → v0.43.0
golang.org/x/text v0.33.0 → v0.37.0

Instructions 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 openshift-eng/jira-lifecycle-plugin repository.

@openshift-ci-robot

Copy link
Copy Markdown
Contributor

@AkashMore08: This pull request references Jira Issue OCPBUGS-97969, which is valid.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state POST, which is one of the valid states (NEW, ASSIGNED, POST)

Requesting review from QA contact:
/cc @tonyxrmdavidson

This pull request references Jira Issue OCPBUGS-98134, which is valid.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state POST, which is one of the valid states (NEW, ASSIGNED, POST)

Requesting review from QA contact:
/cc @tonyxrmdavidson

This pull request references Jira Issue OCPBUGS-95514, which is valid.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state POST, which is one of the valid states (NEW, ASSIGNED, POST)

Requesting review from QA contact:
/cc @tonyxrmdavidson

This pull request references Jira Issue OCPBUGS-93620, which is valid.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state POST, which is one of the valid states (NEW, ASSIGNED, POST)

Requesting review from QA contact:
/cc @tonyxrmdavidson

This pull request references Jira Issue OCPBUGS-98913, which is valid.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state POST, which is one of the valid states (NEW, ASSIGNED, POST)

This pull request references Jira Issue OCPBUGS-98911, which is valid.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state POST, which is one of the valid states (NEW, ASSIGNED, POST)

This pull request references Jira Issue OCPBUGS-98909, which is valid.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state POST, which is one of the valid states (NEW, ASSIGNED, POST)
Details

In response to this:

/jira refresh

Instructions 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 openshift-eng/jira-lifecycle-plugin repository.

@openshift-ci openshift-ci Bot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Jul 16, 2026
@openshift-ci

openshift-ci Bot commented Jul 16, 2026

Copy link
Copy Markdown
Contributor

PR needs rebase.

Details

Instructions 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.

@rissh

rissh commented Jul 16, 2026

Copy link
Copy Markdown

/unhold

@openshift-ci openshift-ci Bot removed the do-not-merge/hold Indicates that a PR should not merge because someone has issued a /hold command. label Jul 16, 2026
@rissh

rissh commented Jul 16, 2026

Copy link
Copy Markdown

/hold
Keeping on hold — PR needs a rebase, and more importantly, the upstream repo sync stuff need to review

@openshift-ci openshift-ci Bot added the do-not-merge/hold Indicates that a PR should not merge because someone has issued a /hold command. label Jul 16, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

do-not-merge/hold Indicates that a PR should not merge because someone has issued a /hold command. jira/severity-important Referenced Jira bug's severity is important for the branch this PR is targeting. jira/valid-bug Indicates that a referenced Jira bug is valid for the branch this PR is targeting. jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants