CVE-2024-45190: Mage AI Path Traversal vulnerability
6.5
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.11963%
CWE
Published
8/23/2024
Updated
8/23/2024
KEV Status
No
Technology
Python
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
mage-ai | pip | <= 0.9.73 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability manifests in the pipeline interaction endpoint (/api/pipelines/{pipeline_id}/interaction/{path}). The PoC shows path traversal via URL-encoded '../' sequences in the interaction path parameter. This suggests the handler function
processing this endpoint likely: 1. Accepts user-controlled path input 2. Fails to properly sanitize path traversal sequences 3. Uses this input to construct filesystem paths. In Python web frameworks, this would typically map to a GET
handler method in a route controller. The medium confidence reflects the lack of direct code evidence, but the endpoint structure and vulnerability pattern strongly indicate the interaction handler's path parameter processing is flawed.