Skip to content

github.com/intelops/go-common-v1.0.20: 9 vulnerabilities (highest severity is: 7.5) #464

@mend-bolt-for-github

Description

@mend-bolt-for-github
Vulnerable Library - github.com/intelops/go-common-v1.0.20

Path to dependency file: /server/go.mod

Path to vulnerable library: /go/pkg/mod/cache/download/golang.org/x/net/@v/v0.24.0.mod

Vulnerabilities

Vulnerability Severity CVSS Dependency Type Fixed in (github.com/intelops/go-common-v1.0.20 version) Remediation Possible**
CVE-2025-47913 High 7.5 golang.org/x/crypto-v0.22.0 Transitive N/A*
CVE-2025-22869 High 7.5 golang.org/x/crypto-v0.22.0 Transitive N/A*
CVE-2024-45337 High 7.4 golang.org/x/crypto-v0.22.0 Transitive N/A*
WS-2023-0431 Medium 6.5 github.com/go-jose/go-jose/v3-v3.0.0 Transitive N/A*
CVE-2024-6104 Medium 6.0 github.com/HashiCorp/go-retryablehttp-v0.7.4 Transitive N/A*
CVE-2025-58181 Medium 5.3 golang.org/x/crypto-v0.22.0 Transitive N/A*
CVE-2025-47914 Medium 5.3 golang.org/x/crypto-v0.22.0 Transitive N/A*
CVE-2024-45338 Medium 5.3 golang.org/x/net-v0.24.0 Transitive N/A*
CVE-2025-22870 Medium 4.4 golang.org/x/net-v0.24.0 Transitive N/A*

*For some transitive vulnerabilities, there is no version of direct dependency with a fix. Check the "Details" section below to see if there is a version of transitive dependency where vulnerability is fixed.

**In some cases, Remediation PR cannot be created automatically for a vulnerability despite the availability of remediation

Details

CVE-2025-47913

Vulnerable Library - golang.org/x/crypto-v0.22.0

Library home page: https://proxy.golang.org/golang.org/x/crypto/@v/v0.22.0.zip

Path to dependency file: /server/go.mod

Path to vulnerable library: /go/pkg/mod/cache/download/golang.org/x/crypto/@v/v0.22.0.mod

Dependency Hierarchy:

  • github.com/intelops/go-common-v1.0.20 (Root Library)
    • github.com/hashicorp/Vault/api-v1.9.2
      • github.com/go-jose/go-jose/v3-v3.0.0
        • golang.org/x/crypto-v0.22.0 (Vulnerable Library)

Found in base branch: main

Vulnerability Details

SSH clients receiving SSH_AGENT_SUCCESS when expecting a typed response will panic and cause early termination of the client process.

Publish Date: 2025-11-13

URL: CVE-2025-47913

CVSS 3 Score Details (7.5)

Base Score Metrics:

  • Exploitability Metrics:
    • Attack Vector: Network
    • Attack Complexity: Low
    • Privileges Required: None
    • User Interaction: None
    • Scope: Unchanged
  • Impact Metrics:
    • Confidentiality Impact: None
    • Integrity Impact: None
    • Availability Impact: High

For more information on CVSS3 Scores, click here.

Suggested Fix

Type: Upgrade version

Release Date: 2025-11-13

Fix Resolution: https://github.com/golang/crypto.git - v0.43.0

Step up your Open Source Security Game with Mend here

CVE-2025-22869

Vulnerable Library - golang.org/x/crypto-v0.22.0

Library home page: https://proxy.golang.org/golang.org/x/crypto/@v/v0.22.0.zip

Path to dependency file: /server/go.mod

Path to vulnerable library: /go/pkg/mod/cache/download/golang.org/x/crypto/@v/v0.22.0.mod

Dependency Hierarchy:

  • github.com/intelops/go-common-v1.0.20 (Root Library)
    • github.com/hashicorp/Vault/api-v1.9.2
      • github.com/go-jose/go-jose/v3-v3.0.0
        • golang.org/x/crypto-v0.22.0 (Vulnerable Library)

Found in base branch: main

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

Publish Date: 2025-02-26

URL: CVE-2025-22869

CVSS 3 Score Details (7.5)

Base Score Metrics:

  • Exploitability Metrics:
    • Attack Vector: Network
    • Attack Complexity: Low
    • Privileges Required: None
    • User Interaction: None
    • Scope: Unchanged
  • Impact Metrics:
    • Confidentiality Impact: None
    • Integrity Impact: None
    • Availability Impact: High

For more information on CVSS3 Scores, click here.

Suggested Fix

Type: Upgrade version

Origin: https://pkg.go.dev/vuln/GO-2025-3487

Release Date: 2025-02-26

Fix Resolution: v0.35.0

Step up your Open Source Security Game with Mend here

CVE-2024-45337

Vulnerable Library - golang.org/x/crypto-v0.22.0

Library home page: https://proxy.golang.org/golang.org/x/crypto/@v/v0.22.0.zip

Path to dependency file: /server/go.mod

Path to vulnerable library: /go/pkg/mod/cache/download/golang.org/x/crypto/@v/v0.22.0.mod

Dependency Hierarchy:

  • github.com/intelops/go-common-v1.0.20 (Root Library)
    • github.com/hashicorp/Vault/api-v1.9.2
      • github.com/go-jose/go-jose/v3-v3.0.0
        • golang.org/x/crypto-v0.22.0 (Vulnerable Library)

Found in base branch: main

Vulnerability 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/[email protected] 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.

Publish Date: 2024-12-11

URL: CVE-2024-45337

CVSS 3 Score Details (7.4)

Base Score Metrics:

  • Exploitability Metrics:
    • Attack Vector: Network
    • Attack Complexity: High
    • Privileges Required: None
    • User Interaction: None
    • Scope: Unchanged
  • Impact Metrics:
    • Confidentiality Impact: High
    • Integrity Impact: High
    • Availability Impact: None

For more information on CVSS3 Scores, click here.

Suggested Fix

Type: Upgrade version

Origin: GHSA-v778-237x-gjrc

Release Date: 2024-12-11

Fix Resolution: golang.org/x/crypto - v0.31.0

Step up your Open Source Security Game with Mend here

WS-2023-0431

Vulnerable Library - github.com/go-jose/go-jose/v3-v3.0.0

An implementation of JOSE standards (JWE, JWS, JWT) in Go

Library home page: https://proxy.golang.org/github.com/go-jose/go-jose/v3/@v/v3.0.0.zip

Path to dependency file: /server/go.mod

Path to vulnerable library: /go/pkg/mod/cache/download/github.com/go-jose/go-jose/v3/@v/v3.0.0.mod

Dependency Hierarchy:

  • github.com/intelops/go-common-v1.0.20 (Root Library)
    • github.com/hashicorp/Vault/api-v1.9.2
      • github.com/go-jose/go-jose/v3-v3.0.0 (Vulnerable Library)

Found in base branch: main

Vulnerability Details

The go-jose package before 3.0.1 is subject to a "billion hashes attack" causing denial-of-service when decrypting JWE inputs. This occurs when an attacker can provide a PBES2 encrypted JWE blob with a very large p2c value that, when decrypted, produces a denial-of-service.

Publish Date: 2023-11-22

URL: WS-2023-0431

CVSS 3 Score Details (6.5)

Base Score Metrics:

  • Exploitability Metrics:
    • Attack Vector: Network
    • Attack Complexity: Low
    • Privileges Required: Low
    • User Interaction: None
    • Scope: Unchanged
  • Impact Metrics:
    • Confidentiality Impact: None
    • Integrity Impact: None
    • Availability Impact: High

For more information on CVSS3 Scores, click here.

Suggested Fix

Type: Upgrade version

Origin: GHSA-2c7c-3mj9-8fqh

Release Date: 2023-11-22

Fix Resolution: v3.0.1

Step up your Open Source Security Game with Mend here

CVE-2024-6104

Vulnerable Library - github.com/HashiCorp/go-retryablehttp-v0.7.4

Library home page: https://proxy.golang.org/github.com/!hashi!corp/go-retryablehttp/@v/v0.7.4.zip

Path to dependency file: /server/go.mod

Path to vulnerable library: /go/pkg/mod/cache/download/github.com/hashicorp/go-retryablehttp/@v/v0.7.4.mod,/go/pkg/mod/cache/download/github.com/hashicorp/go-retryablehttp/@v/v0.7.4.mod

Dependency Hierarchy:

  • github.com/intelops/go-common-v1.0.20 (Root Library)
    • github.com/HashiCorp/go-retryablehttp-v0.7.4 (Vulnerable Library)

Found in base branch: main

Vulnerability Details

go-retryablehttp prior to 0.7.7 did not sanitize urls when writing them to its log file. This could lead to go-retryablehttp writing sensitive HTTP basic auth credentials to its log file. This vulnerability, CVE-2024-6104, was fixed in go-retryablehttp 0.7.7.

Publish Date: 2024-06-24

URL: CVE-2024-6104

CVSS 3 Score Details (6.0)

Base Score Metrics:

  • Exploitability Metrics:
    • Attack Vector: Local
    • Attack Complexity: Low
    • Privileges Required: High
    • User Interaction: None
    • Scope: Changed
  • Impact Metrics:
    • Confidentiality Impact: High
    • Integrity Impact: None
    • Availability Impact: None

For more information on CVSS3 Scores, click here.

Step up your Open Source Security Game with Mend here

CVE-2025-58181

Vulnerable Library - golang.org/x/crypto-v0.22.0

Library home page: https://proxy.golang.org/golang.org/x/crypto/@v/v0.22.0.zip

Path to dependency file: /server/go.mod

Path to vulnerable library: /go/pkg/mod/cache/download/golang.org/x/crypto/@v/v0.22.0.mod

Dependency Hierarchy:

  • github.com/intelops/go-common-v1.0.20 (Root Library)
    • github.com/hashicorp/Vault/api-v1.9.2
      • github.com/go-jose/go-jose/v3-v3.0.0
        • golang.org/x/crypto-v0.22.0 (Vulnerable Library)

Found in base branch: main

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

Publish Date: 2025-11-19

URL: CVE-2025-58181

CVSS 3 Score Details (5.3)

Base Score Metrics:

  • Exploitability Metrics:
    • Attack Vector: Network
    • Attack Complexity: Low
    • Privileges Required: None
    • User Interaction: None
    • Scope: Unchanged
  • Impact Metrics:
    • Confidentiality Impact: None
    • Integrity Impact: None
    • Availability Impact: Low

For more information on CVSS3 Scores, click here.

Suggested Fix

Type: Upgrade version

Release Date: 2025-11-19

Fix Resolution: golang.org/x/crypto - v0.45.0

Step up your Open Source Security Game with Mend here

CVE-2025-47914

Vulnerable Library - golang.org/x/crypto-v0.22.0

Library home page: https://proxy.golang.org/golang.org/x/crypto/@v/v0.22.0.zip

Path to dependency file: /server/go.mod

Path to vulnerable library: /go/pkg/mod/cache/download/golang.org/x/crypto/@v/v0.22.0.mod

Dependency Hierarchy:

  • github.com/intelops/go-common-v1.0.20 (Root Library)
    • github.com/hashicorp/Vault/api-v1.9.2
      • github.com/go-jose/go-jose/v3-v3.0.0
        • golang.org/x/crypto-v0.22.0 (Vulnerable Library)

Found in base branch: main

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

Publish Date: 2025-11-19

URL: CVE-2025-47914

CVSS 3 Score Details (5.3)

Base Score Metrics:

  • Exploitability Metrics:
    • Attack Vector: Network
    • Attack Complexity: Low
    • Privileges Required: None
    • User Interaction: None
    • Scope: Unchanged
  • Impact Metrics:
    • Confidentiality Impact: None
    • Integrity Impact: None
    • Availability Impact: Low

For more information on CVSS3 Scores, click here.

Suggested Fix

Type: Upgrade version

Release Date: 2025-11-19

Fix Resolution: golang.org/x/crypto - v0.45.0

Step up your Open Source Security Game with Mend here

CVE-2024-45338

Vulnerable Library - golang.org/x/net-v0.24.0

Library home page: https://proxy.golang.org/golang.org/x/net/@v/v0.24.0.zip

Path to dependency file: /server/go.mod

Path to vulnerable library: /go/pkg/mod/cache/download/golang.org/x/net/@v/v0.24.0.mod

Dependency Hierarchy:

  • github.com/intelops/go-common-v1.0.20 (Root Library)
    • github.com/hashicorp/Vault/api-v1.9.2
      • golang.org/x/net-v0.24.0 (Vulnerable Library)

Found in base branch: main

Vulnerability Details

An attacker can craft an input to the Parse functions that would be processed non-linearly with respect to its length, resulting in extremely slow parsing. This could cause a denial of service.

Publish Date: 2024-12-18

URL: CVE-2024-45338

CVSS 3 Score Details (5.3)

Base Score Metrics:

  • Exploitability Metrics:
    • Attack Vector: Network
    • Attack Complexity: Low
    • Privileges Required: None
    • User Interaction: None
    • Scope: Unchanged
  • Impact Metrics:
    • Confidentiality Impact: None
    • Integrity Impact: None
    • Availability Impact: Low

For more information on CVSS3 Scores, click here.

Step up your Open Source Security Game with Mend here

CVE-2025-22870

Vulnerable Library - golang.org/x/net-v0.24.0

Library home page: https://proxy.golang.org/golang.org/x/net/@v/v0.24.0.zip

Path to dependency file: /server/go.mod

Path to vulnerable library: /go/pkg/mod/cache/download/golang.org/x/net/@v/v0.24.0.mod

Dependency Hierarchy:

  • github.com/intelops/go-common-v1.0.20 (Root Library)
    • github.com/hashicorp/Vault/api-v1.9.2
      • golang.org/x/net-v0.24.0 (Vulnerable Library)

Found in base branch: main

Vulnerability Details

In Go net/http, x/net/proxy, x/net/http/httpproxy there is a proxy bypass vulnerability using IPv6 zone IDs. Matching of hosts against proxy patterns could improperly treat an IPv6 zone ID
as a hostname component. For example, when the NO_PROXY environment variable was
set to "*.example.com", a request to "[::1%25.example.com]:80` would incorrectly
match and not be proxied. This affects versions before 1.23.7 and 1.24.x before 1.24.1.

Publish Date: 2025-03-12

URL: CVE-2025-22870

CVSS 3 Score Details (4.4)

Base Score Metrics:

  • Exploitability Metrics:
    • Attack Vector: Local
    • Attack Complexity: Low
    • Privileges Required: Low
    • User Interaction: None
    • Scope: Unchanged
  • Impact Metrics:
    • Confidentiality Impact: Low
    • Integrity Impact: None
    • Availability Impact: Low

For more information on CVSS3 Scores, click here.

Suggested Fix

Type: Upgrade version

Release Date: 2025-03-12

Fix Resolution: https://github.com/golang/net.git - v0.36.0,https://github.com/golang/go.git - go1.23.6,https://github.com/golang/go.git - go1.24.1

Step up your Open Source Security Game with Mend here

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions