Skip to content

fix(deps): update module golang.org/x/crypto to v0.45.0 [security]#74

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

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

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Dec 12, 2024

This PR contains the following updates:

Package Change Age Confidence
golang.org/x/crypto v0.26.0v0.45.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).


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


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • ""
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Dec 12, 2024

ℹ Artifact update notice

File name: 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):

  • 3 additional dependencies were updated

Details:

Package Change
golang.org/x/sync v0.8.0 -> v0.11.0
golang.org/x/sys v0.23.0 -> v0.30.0
golang.org/x/text v0.17.0 -> v0.22.0

@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 Dec 17, 2024
@renovate renovate Bot closed this Dec 17, 2024
@renovate renovate Bot deleted the renovate/go-golang.org-x-crypto-vulnerability branch December 17, 2024 23:16
@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] Dec 18, 2024
@renovate renovate Bot reopened this Dec 18, 2024
@renovate renovate Bot force-pushed the renovate/go-golang.org-x-crypto-vulnerability branch from 05f2fd8 to bb024ab Compare December 18, 2024 00:35
@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.35.0 [security] Apr 14, 2025
@renovate renovate Bot force-pushed the renovate/go-golang.org-x-crypto-vulnerability branch from bb024ab to abae744 Compare April 14, 2025 19:32
@renovate renovate Bot force-pushed the renovate/go-golang.org-x-crypto-vulnerability branch from abae744 to 933f214 Compare August 10, 2025 13:50
@renovate renovate Bot force-pushed the renovate/go-golang.org-x-crypto-vulnerability branch from 933f214 to af4f396 Compare November 20, 2025 04:33
@renovate renovate Bot changed the title fix(deps): update module golang.org/x/crypto to v0.35.0 [security] fix(deps): update module golang.org/x/crypto to v0.45.0 [security] Nov 20, 2025
@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Mar 1, 2026

ℹ️ Artifact update notice

File name: 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
  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.23.0 -> 1.24.0
golang.org/x/sync v0.8.0 -> v0.18.0
golang.org/x/net v0.27.0 -> v0.47.0
golang.org/x/sys v0.23.0 -> v0.38.0
golang.org/x/text v0.17.0 -> v0.31.0

@renovate renovate Bot force-pushed the renovate/go-golang.org-x-crypto-vulnerability branch from af4f396 to abecf4c Compare March 1, 2026 13:13
@renovate renovate Bot changed the title fix(deps): update module golang.org/x/crypto to v0.45.0 [security] fix(deps): update module golang.org/x/crypto to v0.45.0 [security] - autoclosed Mar 16, 2026
@renovate renovate Bot closed this Mar 16, 2026
@renovate renovate Bot changed the title fix(deps): update module golang.org/x/crypto to v0.45.0 [security] - autoclosed fix(deps): update module golang.org/x/crypto to v0.45.0 [security] Mar 16, 2026
@renovate renovate Bot reopened this Mar 16, 2026
@renovate renovate Bot force-pushed the renovate/go-golang.org-x-crypto-vulnerability branch 2 times, most recently from abecf4c to f719b8c Compare March 16, 2026 17:54
@renovate renovate Bot changed the title fix(deps): update module golang.org/x/crypto to v0.45.0 [security] fix(deps): update module golang.org/x/crypto to v0.45.0 [security] - autoclosed Mar 27, 2026
@renovate renovate Bot closed this Mar 27, 2026
@renovate renovate Bot changed the title fix(deps): update module golang.org/x/crypto to v0.45.0 [security] - autoclosed fix(deps): update module golang.org/x/crypto to v0.45.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 f719b8c to 3e0b069 Compare March 30, 2026 22:13
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.

0 participants