CVE-2026-61359 Overview
CVE-2026-61359 is a heap-based buffer overflow [CWE-122] in the Windows Storage component. An authorized local attacker can exploit this flaw to elevate privileges on affected Windows 11 and Windows Server systems. Microsoft published the advisory on 2026-08-11 and last updated it on 2026-08-13.
Exploitation requires local access and low privileges, with no user interaction. Successful exploitation compromises confidentiality, integrity, and availability. The vulnerability affects multiple Windows client and server releases, including Windows 11 23H2 through 26H1 and Windows Server 2022 and 2025.
Critical Impact
A local attacker with standard user privileges can corrupt heap memory in Windows Storage and gain SYSTEM-level privileges on unpatched hosts.
Affected Products
- Microsoft Windows 11 versions 23H2, 24H2, 25H2, and 26H1 (x64 and ARM64)
- Microsoft Windows Server 2022
- Microsoft Windows Server 2025 (x64)
Discovery Timeline
- 2026-08-11 - CVE-2026-61359 published to NVD
- 2026-08-13 - Last updated in NVD database
Technical Details for CVE-2026-61359
Vulnerability Analysis
The vulnerability is a heap-based buffer overflow [CWE-122] in the Windows Storage subsystem. Windows Storage handles volume, disk, and file system operations exposed to local user-mode callers through documented and undocumented interfaces. When the vulnerable code path processes attacker-controlled input, it writes past the bounds of a heap allocation.
The overflow corrupts adjacent heap metadata or object pointers. An attacker who controls the overflowing content can influence subsequent allocations and dereferences. This provides a primitive for arbitrary write or control-flow hijack inside a privileged context, leading to elevation to SYSTEM.
Successful exploitation grants full control of the confidentiality, integrity, and availability of the target host. Because the flaw is local and requires authentication, it is most commonly chained after initial access, such as phishing or a browser exploit, to escape standard user boundaries.
Root Cause
The root cause is missing or insufficient bounds validation before copying attacker-influenced data into a heap buffer allocated by the Windows Storage stack. The condition matches CWE-122, heap-based buffer overflow.
Attack Vector
The attack vector is local. An authenticated user runs code that interacts with the vulnerable Windows Storage interface, supplies crafted parameters, and triggers the overflow. No user interaction from another account is required. Public proof-of-concept code is not currently available, and the vulnerability is not listed in the CISA KEV catalog.
No verified exploitation code is publicly available. Refer to the Microsoft CVE-2026-61359 Advisory for authoritative technical details.
Detection Methods for CVE-2026-61359
Indicators of Compromise
- Unexpected creation of processes running as NT AUTHORITY\SYSTEM that are parented to standard user sessions or user-writable directories.
- Crashes or WER (Windows Error Reporting) events referencing Windows Storage services, storsvc, or related storage drivers shortly before privilege changes.
- Unusual local IOCTL activity against storage device objects issued from non-administrative user contexts.
Detection Strategies
- Alert on token manipulation and privilege escalation patterns, such as a medium-integrity process spawning a high-integrity child without a legitimate UAC prompt.
- Correlate abnormal handles opened against \\.\Storage-class device objects with subsequent process integrity changes.
- Hunt for exploitation chains that pair browser or Office child processes with local storage API calls immediately followed by SYSTEM-level actions.
Monitoring Recommendations
- Ingest Windows Security, Sysmon, and kernel crash telemetry into a centralized data lake and retain long enough to reconstruct post-compromise chains.
- Track patch state for KBs addressing CVE-2026-61359 across all Windows 11 and Windows Server 2022/2025 assets, and alert on drift.
- Monitor for new local admin accounts, scheduled tasks, or services created immediately after suspicious storage-related activity.
How to Mitigate CVE-2026-61359
Immediate Actions Required
- Apply the Microsoft security update referenced in the Microsoft CVE-2026-61359 Advisory to all affected Windows 11 and Windows Server hosts.
- Prioritize patching of multi-user systems, jump hosts, VDI hosts, and terminal servers where multiple standard users can execute code locally.
- Audit local account membership and remove unnecessary interactive logon rights to reduce the population able to trigger the flaw.
Patch Information
Microsoft has released security updates for the affected products. Refer to the Microsoft CVE-2026-61359 Advisory for the specific KB articles corresponding to each Windows 11 build and Windows Server 2022/2025 release. Apply the update through Windows Update, WSUS, Microsoft Update Catalog, or your preferred patch management tooling.
Workarounds
- No official vendor workaround is documented; patching is the required remediation.
- Enforce least privilege and application allow-listing to reduce the likelihood that untrusted binaries can reach the vulnerable Windows Storage interfaces.
- Restrict local logon on servers to administrative and service accounts to shrink the attack surface until patches are deployed.
# Verify installed updates on a Windows host and confirm patch presence
wmic qfe list brief /format:table
Get-HotFix | Sort-Object -Property InstalledOn -Descending | Select-Object -First 20
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

