CVE-2026-61368 Overview
CVE-2026-61368 is a heap-based buffer overflow vulnerability [CWE-122] in the Windows Hyper-V virtualization stack. An authorized local attacker can trigger the overflow to disclose sensitive information from adjacent heap memory regions. The flaw affects a broad range of Windows client and server releases that ship the Hyper-V role, including Windows 10, Windows 11, and Windows Server editions from 2016 through 2025. Microsoft published the advisory on August 11, 2026, and rates the issue as MEDIUM severity with a CVSS 3.1 score of 5.5. The vulnerability requires local access and low privileges, but no user interaction, and impacts confidentiality only.
Critical Impact
An authenticated local attacker can leverage a heap overflow in Hyper-V to read sensitive memory contents, potentially exposing data belonging to the host or other guest partitions.
Affected Products
- Microsoft Windows 10 (1607, 1809, 21H2, 22H2)
- Microsoft Windows 11 (23H2, 24H2, 25H2, 26H1)
- Microsoft Windows Server 2016, 2019, 2022, and 2025
Discovery Timeline
- 2026-08-11 - CVE CVE-2026-61368 published to NVD
- 2026-08-13 - Last updated in NVD database
Technical Details for CVE-2026-61368
Vulnerability Analysis
The vulnerability resides in the Windows Hyper-V hypervisor components responsible for handling requests from guest virtual machines or local partitions. A heap-based buffer overflow [CWE-122] occurs when Hyper-V allocates a buffer of a fixed size and later writes beyond its bounds while processing attacker-influenced input. Because the overflowing write touches adjacent heap allocations, an authorized attacker can coerce Hyper-V into returning data from neighboring memory rather than the intended buffer contents. The scope remains unchanged, meaning the disclosed data is bounded to the vulnerable Hyper-V component, but that surface can still include cryptographic material, credentials, or partition metadata.
Root Cause
The root cause is insufficient bounds validation on a heap-allocated buffer inside the Hyper-V code path. Microsoft's advisory categorizes the issue under CWE-122 (Heap-based Buffer Overflow), indicating that a length or offset value drives a write or read past the end of the allocation. Refer to the Microsoft Security Update CVE-2026-61368 for component-level detail.
Attack Vector
Exploitation requires local access to a system running the Hyper-V role and low-privilege authentication. The attacker interacts with a Hyper-V interface reachable from a guest or local partition, submits crafted input that trips the overflow, and receives residual heap data in the response. No user interaction is required, and network reachability is not needed. Public proof-of-concept code and in-the-wild exploitation are not currently reported. The EPSS score is 0.453%, placing exploitation probability in the 37th percentile.
No verified proof-of-concept code is available. Consult the vendor advisory for technical details on the affected code path.
Detection Methods for CVE-2026-61368
Indicators of Compromise
- Unexpected crashes or bug checks in vmms.exe, vmwp.exe, or Hyper-V kernel components (hvix64.exe, hvax64.exe) that suggest memory corruption attempts.
- Guest-to-host hypercall patterns originating from low-privileged accounts that deviate from baseline VM management activity.
- Presence of new or unsigned tooling on Hyper-V hosts capable of issuing raw hypercalls or WMI virtualization requests.
Detection Strategies
- Monitor Windows Event Logs under Microsoft-Windows-Hyper-V-Worker and Microsoft-Windows-Hyper-V-Hypervisor for repeated worker process terminations or partition faults.
- Correlate local logon events (Event ID 4624 type 2/10) on Hyper-V hosts with subsequent virtualization API calls from non-administrative principals.
- Baseline expected callers of Hyper-V management interfaces and alert on unauthorized processes invoking Vmms RPC endpoints.
Monitoring Recommendations
- Enable Windows Defender Exploit Guard and kernel-mode crash telemetry forwarding to a central SIEM for pattern analysis across Hyper-V hosts.
- Track patch compliance for the August 2026 Microsoft security update across all Windows Server hosts running the Hyper-V role.
- Audit local account membership in the Hyper-V Administrators group and remove stale or unnecessary members to shrink the attack surface.
How to Mitigate CVE-2026-61368
Immediate Actions Required
- Apply the Microsoft security update for CVE-2026-61368 to all Hyper-V hosts, referencing the Microsoft Security Update CVE-2026-61368 advisory for KB numbers per Windows release.
- Restrict local logon rights on Hyper-V hosts to a minimal, audited set of administrators and service accounts.
- Review and reduce membership in the Hyper-V Administrators local group, and revoke unnecessary VM management delegations.
Patch Information
Microsoft addressed CVE-2026-61368 in the security updates released on August 11, 2026, covering Windows 10 (1607, 1809, 21H2, 22H2), Windows 11 (23H2, 24H2, 25H2, 26H1), and Windows Server 2016, 2019, 2022, and 2025. Administrators should validate patch deployment through Windows Update, WSUS, or their configuration management tool, and confirm build numbers on each Hyper-V host post-installation.
Workarounds
- Where patching cannot be performed immediately, isolate Hyper-V hosts from untrusted local users and disable interactive logon for standard accounts.
- Consider temporarily disabling the Hyper-V role on hosts that do not currently run production virtual machines until updates are applied.
- Enforce just-in-time administration and privileged access workstation policies for any account authorized to manage Hyper-V.
# Verify Hyper-V patch level and administrator membership on Windows Server
Get-HotFix | Sort-Object -Property InstalledOn -Descending | Select-Object -First 10
Get-LocalGroupMember -Group "Hyper-V Administrators"
Get-WindowsFeature -Name Hyper-V
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

