Skip to main content

PPTAgent CVE-2026-42079

| EUVDEUVD-2026-27015 HIGH
Eval Injection (CWE-95)
2026-05-04 GitHub_M GHSA-89g2-xw5c-v95p
8.6
CVSS 3.1 · GitHub Advisory
Share

Severity by source

GitHub Advisory PRIMARY
8.6 HIGH
AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H

Primary rating from GitHub Advisory · only source for this CVE.

CVSS VectorGitHub Advisory

CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H
Attack Vector
Local
Attack Complexity
Low
Privileges Required
None
User Interaction
Required
Scope
Changed
Confidentiality
High
Integrity
High
Availability
High

Lifecycle Timeline

7
Patch available
May 04, 2026 - 18:32 EUVD
Source Code Evidence Fetched
May 04, 2026 - 17:49 vuln.today
Analysis Generated
May 04, 2026 - 17:49 vuln.today
Patch released
May 04, 2026 - 17:16 nvd
Patch available
EUVD ID Assigned
May 04, 2026 - 17:15 euvd
EUVD-2026-27015
Analysis Generated
May 04, 2026 - 17:15 vuln.today
CVE Published
May 04, 2026 - 16:57 nvd
HIGH 8.6

DescriptionGitHub Advisory

PPTAgent is an agentic framework for reflective PowerPoint generation. Prior to commit 418491a, PPTAgent is vulnerable to arbitrary code execution via Python eval() of LLM-generated code with builtins in scope. This issue has been patched via commit 418491a.

AnalysisAI

Arbitrary code execution in PPTAgent allows local attackers to execute Python code by exploiting unsafe eval() of LLM-generated content with unrestricted builtins. The framework's agentic architecture passes AI-generated code directly to eval() with full builtin access, enabling execution of arbitrary system commands. Patch available via commit 418491a which restricts eval() globals to an empty builtins dictionary and adds path traversal protections. CVSS 8.6 with local attack vector and user interaction requirement; no evidence of active exploitation or public POC at time of analysis.

Technical ContextAI

PPTAgent (cpe:2.3:a:icip-cas:pptagent) is an agentic framework that uses LLMs to generate PowerPoint presentations by dynamically executing Python code. The vulnerability stems from CWE-95 (Improper Neutralization of Directives in Dynamically Evaluated Code) in the execute_actions() function within pptagent/apis.py. The code called eval(line, {}, {func: partial_func}), passing an empty globals dictionary but leaving __builtins__ implicitly available in scope. In Python, eval() with empty globals still has access to all builtin functions (open, exec, __import__, etc.) unless explicitly restricted. This allowed LLM-generated malicious code strings to invoke arbitrary builtins for file system access, module imports, or subprocess execution. The patch replaces the empty globals with SAFE_EVAL_GLOBALS = {'__builtins__': {}} to explicitly remove builtin access. Additional hardening includes path traversal validation via resolve_path_in_workspace() to confine file operations to the designated workspace directory.

RemediationAI

Update to PPTAgent commit 418491a or later by pulling the latest code from the GitHub repository at https://github.com/icip-cas/PPTAgent/commit/418491a9a1c02d9d93194b5973bb58df35cf9d00. The patch replaces unsafe eval() calls with restricted globals (SAFE_EVAL_GLOBALS = {'__builtins__': {}}) and adds resolve_path_in_workspace() to prevent path traversal attacks. If immediate patching is not feasible, implement compensating controls: restrict PPTAgent execution to isolated containers or VMs with no network access, validate and sanitize all LLM-generated code through static analysis before execution, or disable dynamic code execution features entirely if presentation generation can operate without eval(). Note that disabling eval() may break core framework functionality. Run PPTAgent under least-privilege service accounts with no access to sensitive files or credentials. Monitor process execution for unexpected child processes (shells, network tools) spawned by Python. These workarounds reduce but do not eliminate risk; patching is the only complete mitigation. Refer to GHSA-89g2-xw5c-v95p for vendor guidance.

More in Python

View all
CVE-2025-24016 CRITICAL POC
9.9 Feb 10

Wazuh SIEM platform versions 4.4.0 through 4.9.0 contain an unsafe deserialization vulnerability in the DistributedAPI t

CVE-2025-27520 CRITICAL POC
9.8 Apr 04

BentoML version 1.4.2 and earlier contains an unauthenticated remote code execution vulnerability through insecure deser

CVE-2025-2945 CRITICAL POC
9.9 Apr 03

pgAdmin 4 contains critical remote code execution vulnerabilities in the Query Tool download and Cloud Deployment endpoi

CVE-2013-5093 MEDIUM POC
6.8 Sep 27

The renderLocalView function in render/views.py in graphite-web in Graphite 0.9.5 through 0.9.10 uses the pickle Python

CVE-2025-32375 CRITICAL POC
9.8 Apr 09

BentoML is a Python library for building online serving systems optimized for AI apps and model inference. Rated critica

CVE-2014-0224 HIGH POC
7.4 Jun 05

OpenSSL before 0.9.8za, 1.0.0 before 1.0.0m, and 1.0.1 before 1.0.1h does not properly restrict processing of ChangeCiph

CVE-2024-21644 HIGH POC
7.5 Jan 08

pyLoad download manager version prior to 0.5.0b3.dev77 exposes the Flask SECRET_KEY through an unauthenticated endpoint.

CVE-2017-9462 HIGH POC
8.8 Jun 06

In Mercurial before 4.1.3, "hg serve --stdio" allows remote authenticated users to launch the Python debugger, and conse

CVE-2026-39987 CRITICAL POC
9.3 Apr 08

Unauthenticated remote code execution in Marimo ≤0.20.4 allows attackers to execute arbitrary system commands via the `/

CVE-2024-21645 MEDIUM POC
5.3 Jan 08

pyLoad is the free and open-source Download Manager written in pure Python. Rated medium severity (CVSS 5.3), this vulne

CVE-2026-33017 CRITICAL POC
9.3 Mar 17

Langflow (a visual LLM pipeline builder) contains a critical unauthenticated code execution vulnerability (CVE-2026-3301

CVE-2026-55255 HIGH POC
8.4 Jun 19

Cross-user flow execution in Langflow (< 1.9.1) lets any authenticated API-key holder run another user's flow by passing

Share

CVE-2026-42079 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy