Skip to content

fix(deps): update module golang.org/x/crypto to v0.52.0 [security] - #122

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/go-golang.org-x-crypto-vulnerability
Open

fix(deps): update module golang.org/x/crypto to v0.52.0 [security]#122
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/go-golang.org-x-crypto-vulnerability

Conversation

@renovate

@renovate renovate Bot commented Dec 12, 2024

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
golang.org/x/crypto v0.22.0v0.52.0 age confidence

Misuse of ServerConfig.PublicKeyCallback may cause authorization bypass in golang.org/x/crypto

CVE-2024-45337 / GHSA-v778-237x-gjrc

More information

Details

Applications and libraries which misuse the ServerConfig.PublicKeyCallback callback may be susceptible to an authorization bypass.

The documentation for ServerConfig.PublicKeyCallback says that "A call to this function does not guarantee that the key offered is in fact used to authenticate." Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions.

For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key.

Since this API is widely misused, as a partial mitigation golang.org/x/crypto@v0.31.0 enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth.

Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.

Severity

  • CVSS Score: 9.1 / 10 (Critical)
  • Vector String: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N

References

This data is provided by the GitHub Advisory Database (CC-BY 4.0).


golang.org/x/crypto Vulnerable to Denial of Service (DoS) via Slow or Incomplete Key Exchange

CVE-2025-22869 / GHSA-hcg3-q754-cr77

More information

Details

SSH servers which implement file transfer protocols are vulnerable to a denial of service attack from clients which complete the key exchange slowly, or not at all, causing pending content to be read into memory, but never transmitted.

Severity

  • CVSS Score: 7.5 / 10 (High)
  • Vector String: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H

References

This data is provided by the GitHub Advisory Database (CC-BY 4.0).


Prefix Truncation Attack against ChaCha20-Poly1305 and Encrypt-then-MAC aka Terrapin

CVE-2023-48795 / GHSA-45x7-px36-x8w8

More information

Details

Summary

Terrapin is a prefix truncation attack targeting the SSH protocol. More precisely, Terrapin breaks the integrity of SSH's secure channel. By carefully adjusting the sequence numbers during the handshake, an attacker can remove an arbitrary amount of messages sent by the client or server at the beginning of the secure channel without the client or server noticing it.

Mitigations

To mitigate this protocol vulnerability, OpenSSH suggested a so-called "strict kex" which alters the SSH handshake to ensure a Man-in-the-Middle attacker cannot introduce unauthenticated messages as well as convey sequence number manipulation across handshakes.

Warning: To take effect, both the client and server must support this countermeasure.

As a stop-gap measure, peers may also (temporarily) disable the affected algorithms and use unaffected alternatives like AES-GCM instead until patches are available.

Details

The SSH specifications of ChaCha20-Poly1305 (chacha20-poly1305@​openssh.com) and Encrypt-then-MAC (*-etm@openssh.com MACs) are vulnerable against an arbitrary prefix truncation attack (a.k.a. Terrapin attack). This allows for an extension negotiation downgrade by stripping the SSH_MSG_EXT_INFO sent after the first message after SSH_MSG_NEWKEYS, downgrading security, and disabling attack countermeasures in some versions of OpenSSH. When targeting Encrypt-then-MAC, this attack requires the use of a CBC cipher to be practically exploitable due to the internal workings of the cipher mode. Additionally, this novel attack technique can be used to exploit previously unexploitable implementation flaws in a Man-in-the-Middle scenario.

The attack works by an attacker injecting an arbitrary number of SSH_MSG_IGNORE messages during the initial key exchange and consequently removing the same number of messages just after the initial key exchange has concluded. This is possible due to missing authentication of the excess SSH_MSG_IGNORE messages and the fact that the implicit sequence numbers used within the SSH protocol are only checked after the initial key exchange.

In the case of ChaCha20-Poly1305, the attack is guaranteed to work on every connection as this cipher does not maintain an internal state other than the message's sequence number. In the case of Encrypt-Then-MAC, practical exploitation requires the use of a CBC cipher; while theoretical integrity is broken for all ciphers when using this mode, message processing will fail at the application layer for CTR and stream ciphers.

For more details see https://terrapin-attack.com.

Impact

This attack targets the specification of ChaCha20-Poly1305 (chacha20-poly1305@​openssh.com) and Encrypt-then-MAC (*-etm@openssh.com), which are widely adopted by well-known SSH implementations and can be considered de-facto standard. These algorithms can be practically exploited; however, in the case of Encrypt-Then-MAC, we additionally require the use of a CBC cipher. As a consequence, this attack works against all well-behaving SSH implementations supporting either of those algorithms and can be used to downgrade (but not fully strip) connection security in case SSH extension negotiation (RFC8308) is supported. The attack may also enable attackers to exploit certain implementation flaws in a man-in-the-middle (MitM) scenario.

Severity

  • CVSS Score: 5.9 / 10 (Medium)
  • Vector String: CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N

References

This data is provided by the GitHub Advisory Database (CC-BY 4.0).


golang.org/x/crypto/ssh allows an attacker to cause unbounded memory consumption

CVE-2025-58181 / GHSA-j5w8-q4qc-rx2x

More information

Details

SSH servers parsing GSSAPI authentication requests do not validate the number of mechanisms specified in the request, allowing an attacker to cause unbounded memory consumption.

Severity

  • CVSS Score: 5.3 / 10 (Medium)
  • Vector String: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L

References

This data is provided by the GitHub Advisory Database (CC-BY 4.0).


golang.org/x/crypto/ssh/agent vulnerable to panic if message is malformed due to out of bounds read

CVE-2025-47914 / GHSA-f6x5-jh6r-wrfv

More information

Details

SSH Agent servers do not validate the size of messages when processing new identity requests, which may cause the program to panic if the message is malformed due to an out of bounds read.

Severity

  • CVSS Score: 5.3 / 10 (Medium)
  • Vector String: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L

References

This data is provided by the GitHub Advisory Database (CC-BY 4.0).


golang.org/x/crypto vulnerable to invoking bypass of certificate restrictions

CVE-2026-39828 / GHSA-45gg-vh54-h5m9

More information

Details

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. Returning non-nil Permissions with PartialSuccessError now results in a connection error.

Severity

  • CVSS Score: 6.3 / 10 (Medium)
  • Vector String: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L

References

This data is provided by the GitHub Advisory Database (CC-BY 4.0).


golang.org/x/crypto is vulnerable to invoking server panic during CheckHostKey/Authenticate flow

CVE-2026-39835 / GHSA-78mq-xcr3-xm33

More information

Details

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. CertChecker now returns an error instead of panicking when these callbacks are nil.

Severity

  • CVSS Score: 5.3 / 10 (Medium)
  • Vector String: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L

References

This data is provided by the GitHub Advisory Database (CC-BY 4.0).


golang.org/x/crypto vulnerable to auth bypass via unenforced @​revoked status

CVE-2026-42508 / GHSA-5cgq-3rg8-m6cv

More information

Details

Previously, a revoked 'SignatureKey' belonging to a CA was not correctly checked for revocation. Now, both the 'key' and 'key.SignatureKey' are checked for @​revoked.

Severity

  • CVSS Score: 9.1 / 10 (Critical)
  • Vector String: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N

References

This data is provided by the GitHub Advisory Database (CC-BY 4.0).


golang.org/x/crypto doesn't enforce invoking key constraints

CVE-2026-39833 / GHSA-jppx-rxg9-jmrx

More information

Details

The in-memory keyring returned by NewKeyring() silently accepted keys with the ConfirmBeforeUse constraint but never enforced it. The key would sign without any confirmation prompt, with no indication to the caller that the constraint was not in effect. NewKeyring() now returns an error when unsupported constraints are requested.

Severity

  • CVSS Score: 9.1 / 10 (Critical)
  • Vector String: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N

References

This data is provided by the GitHub Advisory Database (CC-BY 4.0).


golang.org/x/crypto: Invoking byte arithmetic causes underflow and panic

CVE-2026-46597 / GHSA-q4h4-gmj2-qvw2

More information

Details

An incorrectly placed cast from bytes to int allowed for server-side panic in the AES-GCM packet decoder for well-crafted inputs.

Severity

  • CVSS Score: 7.5 / 10 (High)
  • Vector String: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H

References

This data is provided by the GitHub Advisory Database (CC-BY 4.0).


golang.org/x/crypto: Invoking VerifiedPublicKeyCallback permissions skip enforcement

CVE-2026-46595 / GHSA-x527-x647-q7gg

More information

Details

Previously, CVE-2024-45337 fixed an authorization bypass for misused ssh server configurations; if any other type of callback is passed other than public key, then the source-address validation would be skipped.

Severity

  • CVSS Score: 10.0 / 10 (Critical)
  • Vector String: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:L

References

This data is provided by the [GitHub Advisory Database](https://redirect.github.com/advisories/GHSA-x527-x

Note

PR body was truncated to here.

@renovate

renovate Bot commented Dec 12, 2024

Copy link
Copy Markdown
Contributor Author

ℹ Artifact update notice

File name: pkgs/identity/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 4 additional dependencies were updated

Details:

Package Change
golang.org/x/sync v0.6.0 -> v0.10.0
golang.org/x/sys v0.19.0 -> v0.28.0
golang.org/x/term v0.19.0 -> v0.27.0
golang.org/x/text v0.14.0 -> v0.21.0

@renovate
renovate Bot requested review from a team and dezren39 as code owners December 12, 2024 00:18
@renovate
renovate Bot force-pushed the renovate/go-golang.org-x-crypto-vulnerability branch from 535be85 to 241b4e4 Compare August 10, 2025 13:38
@renovate renovate Bot changed the title Update module golang.org/x/crypto to v0.31.0 [SECURITY] Update module golang.org/x/crypto to v0.35.0 [SECURITY] Aug 13, 2025
@renovate
renovate Bot force-pushed the renovate/go-golang.org-x-crypto-vulnerability branch from 241b4e4 to 1fe8bce Compare August 13, 2025 15:16
@renovate
renovate Bot force-pushed the renovate/go-golang.org-x-crypto-vulnerability branch from 1fe8bce to 833cfc0 Compare October 9, 2025 11:07
@renovate renovate Bot changed the title Update module golang.org/x/crypto to v0.35.0 [SECURITY] Update module golang.org/x/crypto to v0.31.0 [SECURITY] Oct 15, 2025
@renovate
renovate Bot force-pushed the renovate/go-golang.org-x-crypto-vulnerability branch from 833cfc0 to f0083d0 Compare October 15, 2025 22:07
@renovate

renovate Bot commented Dec 15, 2025

Copy link
Copy Markdown
Contributor Author

ℹ️ Artifact update notice

File name: pkgs/identity/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 5 additional dependencies were updated
  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.22 -> 1.25.0
golang.org/x/net v0.24.0 -> v0.54.0
golang.org/x/sync v0.6.0 -> v0.20.0
golang.org/x/sys v0.19.0 -> v0.45.0
golang.org/x/term v0.19.0 -> v0.43.0
golang.org/x/text v0.14.0 -> v0.37.0

@renovate
renovate Bot force-pushed the renovate/go-golang.org-x-crypto-vulnerability branch from f0083d0 to 1720cd0 Compare December 15, 2025 17:00
@renovate
renovate Bot force-pushed the renovate/go-golang.org-x-crypto-vulnerability branch from 1720cd0 to e645430 Compare February 2, 2026 18:58
@renovate
renovate Bot force-pushed the renovate/go-golang.org-x-crypto-vulnerability branch from e645430 to a115a26 Compare February 24, 2026 18:44
@renovate
renovate Bot force-pushed the renovate/go-golang.org-x-crypto-vulnerability branch from a115a26 to d57712a Compare March 13, 2026 18:08
@renovate renovate Bot changed the title Update module golang.org/x/crypto to v0.31.0 [SECURITY] fix(deps): update module golang.org/x/crypto to v0.31.0 [security] Mar 23, 2026
@renovate renovate Bot changed the title fix(deps): update module golang.org/x/crypto to v0.31.0 [security] Update module golang.org/x/crypto to v0.31.0 [SECURITY] Mar 25, 2026
@renovate renovate Bot changed the title Update module golang.org/x/crypto to v0.31.0 [SECURITY] Update module golang.org/x/crypto to v0.31.0 [SECURITY] - autoclosed Mar 27, 2026
@renovate renovate Bot closed this Mar 27, 2026
@renovate
renovate Bot deleted the renovate/go-golang.org-x-crypto-vulnerability branch March 27, 2026 02:01
@renovate renovate Bot changed the title Update module golang.org/x/crypto to v0.31.0 [SECURITY] - autoclosed fix(deps): update module golang.org/x/crypto to v0.31.0 [security] Mar 30, 2026
@renovate renovate Bot reopened this Mar 30, 2026
@renovate
renovate Bot force-pushed the renovate/go-golang.org-x-crypto-vulnerability branch 2 times, most recently from d57712a to f467665 Compare March 30, 2026 21:46
@renovate
renovate Bot force-pushed the renovate/go-golang.org-x-crypto-vulnerability branch from f467665 to 969e036 Compare April 29, 2026 19:50
@renovate renovate Bot changed the title fix(deps): update module golang.org/x/crypto to v0.31.0 [security] fix(deps): update module golang.org/x/crypto to v0.31.0 [security] - autoclosed Jul 22, 2026
@renovate renovate Bot closed this Jul 22, 2026
@renovate renovate Bot changed the title fix(deps): update module golang.org/x/crypto to v0.31.0 [security] - autoclosed fix(deps): update module golang.org/x/crypto to v0.31.0 [security] Jul 22, 2026
@renovate renovate Bot reopened this Jul 22, 2026
@renovate
renovate Bot force-pushed the renovate/go-golang.org-x-crypto-vulnerability branch from 732c43b to 969e036 Compare July 22, 2026 04:39
@renovate
renovate Bot force-pushed the renovate/go-golang.org-x-crypto-vulnerability branch from 969e036 to 732c43b Compare July 22, 2026 04:39
@renovate renovate Bot changed the title fix(deps): update module golang.org/x/crypto to v0.31.0 [security] fix(deps): update module golang.org/x/crypto to v0.31.0 [security] - autoclosed Aug 8, 2026
@renovate renovate Bot closed this Aug 8, 2026
@renovate renovate Bot changed the title fix(deps): update module golang.org/x/crypto to v0.31.0 [security] - autoclosed fix(deps): update module golang.org/x/crypto to v0.31.0 [security] Aug 8, 2026
@renovate renovate Bot reopened this Aug 8, 2026
@renovate
renovate Bot force-pushed the renovate/go-golang.org-x-crypto-vulnerability branch 2 times, most recently from 732c43b to 4d1c215 Compare August 8, 2026 09:33
@renovate renovate Bot changed the title fix(deps): update module golang.org/x/crypto to v0.31.0 [security] fix(deps): update module golang.org/x/crypto to v0.52.0 [security] Aug 26, 2026
@renovate
renovate Bot force-pushed the renovate/go-golang.org-x-crypto-vulnerability branch from 4d1c215 to 868b61c Compare August 26, 2026 13:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant