CVE-2026-54129 Overview
CVE-2026-54129 is a use-after-free vulnerability in the Windows Hyper-V virtualization stack. An authorized local attacker can trigger the flaw to elevate privileges on the host system. The weakness is tracked under CWE-416 and affects multiple supported Windows client and server releases running the Hyper-V role.
Microsoft published the advisory on the MSRC portal and confirms local attack vector with low complexity and low privileges required. No public exploit code or in-the-wild activity has been reported at publication time.
Critical Impact
Successful exploitation grants an authenticated local attacker high impact on confidentiality, integrity, and availability, enabling privilege escalation within the Hyper-V host context.
Affected Products
- Microsoft Windows 10 (1809, 21H2, 22H2) on x86, x64, and ARM64
- Microsoft Windows 11 (24H2, 25H2, 26H1) on x64 and ARM64
- Microsoft Windows Server 2019, 2022, and 2025
Discovery Timeline
- 2026-07-14 - CVE-2026-54129 published to NVD
- 2026-07-20 - Last updated in NVD database
Technical Details for CVE-2026-54129
Vulnerability Analysis
The defect resides in Windows Hyper-V, Microsoft's Type-1 hypervisor that partitions the host into a root partition and one or more guest partitions. Hyper-V exposes virtualization services through kernel components such as vmswitch.sys, vid.sys, and hvix64.exe, all of which manage complex object lifetimes across partition boundaries. A use-after-free condition occurs when one of these components dereferences a kernel object after it has been released. An attacker with local access and low privileges can reclaim the freed allocation and steer execution to attacker-controlled data.
Because the vulnerable code paths run in the root partition kernel, successful exploitation yields SYSTEM-level code execution on the Hyper-V host. This breaks the intended isolation boundary between an authorized user context and privileged kernel state.
Root Cause
The root cause is improper object lifetime management in a Hyper-V kernel component [CWE-416]. A reference to a kernel object persists after the object is freed, and subsequent operations dereference the stale pointer. Attackers who can influence heap layout can place a controlled structure at the freed address before the reuse occurs.
Attack Vector
Exploitation requires local access with a valid low-privilege account on a Windows host where Hyper-V is enabled. The attacker interacts with Hyper-V interfaces reachable from user mode, triggers the free path, races to reclaim the allocation, and then forces the vulnerable dereference. No user interaction is needed, and the scope remains unchanged within the host.
Verified public proof-of-concept code is not available. Refer to the Microsoft Vulnerability Advisory for authoritative technical guidance.
Detection Methods for CVE-2026-54129
Indicators of Compromise
- Unexpected creation of SYSTEM-level processes originating from a standard user session on Hyper-V hosts.
- Kernel crashes or bugchecks referencing Hyper-V modules such as vmswitch.sys, vid.sys, or hvix64.exe.
- Anomalous handle activity or IOCTL calls to Hyper-V device objects from non-administrative processes.
Detection Strategies
- Monitor Windows Event Log channels Microsoft-Windows-Hyper-V-* for abnormal partition, worker process, or driver errors.
- Correlate token elevation events (Event ID 4672, 4688) with the originating user account and parent process on Hyper-V hosts.
- Hunt for local privilege escalation patterns where a low-privilege process spawns a child running as NT AUTHORITY\SYSTEM.
Monitoring Recommendations
- Enable kernel dump collection and forward crash telemetry from Hyper-V hosts to a centralized analytics platform.
- Track patch compliance for KB updates addressing CVE-2026-54129 across all Hyper-V-enabled endpoints and servers.
- Alert on new or unsigned drivers loading alongside Hyper-V components on production hypervisors.
How to Mitigate CVE-2026-54129
Immediate Actions Required
- Apply the Microsoft security update for CVE-2026-54129 to every affected Windows client and server build with Hyper-V enabled.
- Prioritize patching on multi-tenant Hyper-V hosts and developer workstations where untrusted users hold local accounts.
- Audit local account membership and remove unnecessary interactive logon rights on Hyper-V hosts.
Patch Information
Microsoft has released fixes through the standard security update channels. Consult the Microsoft Vulnerability Advisory for the specific KB article, build numbers, and deployment guidance for each affected Windows version.
Workarounds
- Restrict local logon to Hyper-V hosts to trusted administrators until patches are deployed.
- Where feasible, disable the Hyper-V role on systems that do not require virtualization services.
- Enforce application control policies such as Windows Defender Application Control to limit which binaries can invoke Hyper-V user-mode interfaces.
# Verify Hyper-V feature state and disable if not required (run as Administrator)
Get-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V-All
Disable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V-All -NoRestart
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

