CVE-2025-1497:
PlotAI eval vulnerability
9.3
CVSS Score
4.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.64238%
CWE
Published
3/10/2025
Updated
3/10/2025
KEV Status
No
Technology
Python
Technical Details
CVSS Vector
CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
plotai | pip | < 0.0.7 | 0.0.7 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from the exec() call in executor.py's run method:
- The commit diff explicitly shows the exec() line being commented out with security warnings
- CWE-77 (Command Injection) matches exec()'s behavior of executing raw code
- All advisories explicitly attribute the RCE risk to LLM output execution via this mechanism
- The vendor's warning about 'uncommenting accepting risk' confirms this was the attack surface
- The function's purpose (executing generated code) aligns with the vulnerability description