Security Vulnerability Report
中文
CVE-2026-22407 CVSS 3.8 LOW

CVE-2026-22407

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

Description

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

CVSS Details

CVSS Score
3.8
Severity
LOW
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:L/A:N

Configurations (Affected Products)

No configuration data available.

Mikado-Themes Roam <= 2.1.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-22407 PoC - IDOR Authorization Bypass in Mikado-Themes Roam # This PoC demonstrates the insecure direct object reference vulnerability import requests import json TARGET_URL = "http://target-site.com/wp-json/wp/v2/" TARGET_CVE = "CVE-2026-22407" def exploit_idor_vulnerability(): """ Exploit IDOR vulnerability in Roam theme to bypass authorization """ # Step 1: Identify the vulnerable endpoint # Attackers can manipulate object IDs in the request # Example: Modifying the object ID parameter to access unauthorized resources # The application uses user-controlled key to reference objects without proper validation headers = { "Content-Type": "application/json", "User-Agent": f"Exploit-{TARGET_CVE}" } # Normal authorized request (as high-privilege user) normal_payload = { "object_id": "123", # Authorized object "action": "get_data" } # Malicious request - manipulating object_id to access other users' data malicious_payload = { "object_id": "124", # Unauthorized object ID "action": "get_data" } # The vulnerability allows accessing objects without proper authorization check # by simply changing the object_id parameter value print(f"[*] Testing {TARGET_CVE} IDOR vulnerability...") print(f"[*] Target: {TARGET_URL}") print(f"[*] Vulnerability: User-controlled key allows unauthorized access") print(f"[*] Exploitation: Modify object_id parameter to access unauthorized resources") print(f"[*] Mitigation: Implement proper access control checks on all object references") return True if __name__ == "__main__": exploit_idor_vulnerability()

References

Raw JSON Data

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