CVE-2024-6227:
Aim denial of service vulnerability
7.5
CVSS ScoreBasic Information
CVE ID
GHSA ID
EPSS Score
-
CWE
Published
7/8/2024
Updated
8/30/2024
KEV Status
No
Technology
Python
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
aim | pip | <= 3.19.3 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability occurs when a remote tracking server is configured to point to itself. The Repo class constructor (init) handles 'aim://' URIs by creating a Client and RemoteRepoProxy without checking if the target is the local instance. This allows circular connections where the server connects to itself, creating an unreachable loop condition. The code at line 195 in repo.py initiates this remote connection setup without validation mechanisms to prevent self-referential configurations.