CVE-2020-17040 Overview
CVE-2020-17040 is a security feature bypass vulnerability in Microsoft Windows Hyper-V. The flaw affects the hypervisor's security boundary enforcement between guest virtual machines and the host operating system. Microsoft disclosed the issue as part of the November 2020 Patch Tuesday release.
The vulnerability carries a CVSS 3.1 base score of 9.8 and impacts client and server editions of Windows, including Windows 10, Windows 8.1, Windows Server 2012 R2, Windows Server 2016, and Windows Server 2019. The Exploit Prediction Scoring System (EPSS) places this CVE in the 92nd percentile, indicating elevated exploitation probability relative to peer vulnerabilities.
Critical Impact
A network-reachable attacker can bypass Hyper-V security features without authentication or user interaction, breaking isolation guarantees between virtualized workloads and the host.
Affected Products
- Microsoft Windows 10 (versions 1607, 1803, 1809, 1903, 1909, 2004, 20H2)
- Microsoft Windows 8.1 and Windows Server 2012 R2
- Microsoft Windows Server 2016 and Windows Server 2019
Discovery Timeline
- 2020-11-11 - CVE-2020-17040 published to NVD as part of Microsoft's November 2020 security updates
- 2024-11-21 - Last updated in NVD database
Technical Details for CVE-2020-17040
Vulnerability Analysis
CVE-2020-17040 is classified by Microsoft as a Hyper-V security feature bypass. Hyper-V is the Type-1 hypervisor that underpins Windows virtualization, Windows Sandbox, Windows Defender Application Guard, and Virtualization-Based Security (VBS). A bypass in this component weakens the trust boundary that separates guest virtual machines from each other and from the root partition.
The CVSS vector indicates the issue is reachable over the network without privileges or user interaction. Successful exploitation can compromise confidentiality, integrity, and availability of the host or adjacent guests. NVD assigns NVD-CWE-noinfo, and Microsoft did not publish detailed root-cause information in the public advisory.
Root Cause
Microsoft has not released technical details about the underlying defect. The advisory describes the issue as a security feature bypass, which typically indicates that a check intended to enforce isolation, signing, or access control inside the hypervisor or a virtualization stack component can be circumvented under specific conditions. Refer to the Microsoft Security Advisory CVE-2020-17040 for vendor-supplied context.
Attack Vector
The attack vector is Network, meaning the vulnerable code path is reachable from a remote source rather than requiring local console access. In Hyper-V deployments this most commonly maps to traffic originating from a guest VM, a management interface, or another host on the virtualization network. No public proof-of-concept exploit, CISA KEV entry, or Exploit-DB submission is associated with CVE-2020-17040 at the time of writing.
Detection Methods for CVE-2020-17040
Indicators of Compromise
- No public IOCs have been published for CVE-2020-17040. Microsoft did not document in-the-wild exploitation in the advisory.
- Treat unexplained Hyper-V worker process (vmwp.exe) crashes, integrity check failures, or unexpected VMBus traffic on unpatched hosts as candidates for investigation.
Detection Strategies
- Inventory all Hyper-V hosts and confirm the November 2020 cumulative update is installed by querying Get-HotFix or the Windows Update history.
- Monitor the Microsoft-Windows-Hyper-V-Hypervisor and Microsoft-Windows-Hyper-V-Worker event channels for anomalous partition or VMBus errors.
- Use endpoint telemetry to flag privileged process activity originating from guest integration components on hosts that have not received the patch.
Monitoring Recommendations
- Alert on attempts to disable Hyper-V integrity features, Virtualization-Based Security, or Hypervisor-Protected Code Integrity (HVCI).
- Track lateral movement between guest VMs and the management OS, focusing on authentication events and SMB traffic on the host management network.
- Correlate patch compliance data with vulnerability scanner output to identify hosts still exposed to CVE-2020-17040.
How to Mitigate CVE-2020-17040
Immediate Actions Required
- Apply the November 2020 (or later) cumulative security update to every affected Windows 10, Windows 8.1, Windows Server 2012 R2, Windows Server 2016, and Windows Server 2019 host running the Hyper-V role.
- Prioritize Hyper-V hosts that run multi-tenant workloads or expose management interfaces to untrusted networks.
- Validate that Virtualization-Based Security and Credential Guard remain enabled after patching.
Patch Information
Microsoft released fixes through the November 2020 Patch Tuesday cycle. Refer to the Microsoft Security Advisory CVE-2020-17040 for KB numbers that correspond to each affected Windows build. Installing the latest cumulative update for the running OS version remediates the vulnerability.
Workarounds
- Microsoft did not publish a supported workaround. Patching is the required remediation.
- Where immediate patching is not possible, restrict network access to Hyper-V management interfaces using host firewalls and segmented management VLANs.
- Limit which accounts can create or attach virtual machines and reduce the population of guests running on unpatched hosts.
# Verify the Hyper-V host has received cumulative updates and list installed hotfixes
Get-HotFix | Sort-Object -Property InstalledOn -Descending | Select-Object -First 20
# Confirm Hyper-V role status and hypervisor launch configuration
Get-WindowsFeature -Name Hyper-V
bcdedit /enum | Select-String hypervisorlaunchtype
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.


