CVE-2021-1732
CVE-2021-1732 is a high-severity vulnerability in Microsoft Windows 10 1803 with a CVSS 3.x base score of 7.8. It is listed in CISA's Known Exploited Vulnerabilities (KEV) catalog, confirming it has been exploited in the wild (added 2021-11-03). The underlying weakness is classified as CWE-787.
Key facts
- Severity: High (CVSS 3.x base score 7.8)
- CVSS v2: 4.6
- EPSS exploit prediction: 78% (100th percentile)
- Actively exploited: Yes — listed in CISA KEV (added 2021-11-03)
- EU (EUVD) id: EUVD-2021-7196
- EU exploitation: Flagged exploited in the ENISA EU Vulnerability Database (since 2021-11-03)
- Weakness: CWE-787
- Affected product: Microsoft Windows 10 1803
- Published:
- Last modified:
Description
Windows Win32k Elevation of Privilege Vulnerability
CVE-2021-1732: Windows Win32k ConsoleControl Offset Confusion Elevation of Privilege
AI-generated analysis based on the vulnerability data on this page.
| Attribute | Value |
|---|---|
| CVE | CVE-2021-1732 |
| Published | 2021-02-25 |
| Severity (CVSS v3) | HIGH — 7.8 (CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H) |
| CVSS v2 | 4.6 (AV:L/AC:L/Au:N/C:P/I:P/A:P) |
| CWE | CWE-787 (Out-of-bounds Write) |
| EPSS | 0.78376 (99.529th percentile) |
| KEV Date | 2021-11-03 |
| Source | NVD |
Summary
CVE-2021-1732 is an elevation-of-privilege vulnerability in the Windows Win32k subsystem. A local attacker can exploit an out-of-bounds write condition to corrupt kernel memory and execute code with SYSTEM-level privileges.
Background
The Windows Win32k subsystem handles window management and graphics rendering in kernel mode. Because it runs with the highest privilege level, memory-safety bugs in Win32k have historically been a reliable path to local privilege escalation. CVE-2021-1732 was disclosed by Microsoft in the February 2021 Patch Tuesday updates and was later added to CISA’s Known Exploited Vulnerabilities (KEV) catalog after in-the-wild exploitation was confirmed.
Root Cause
The vulnerability is classified as CWE-787: Out-of-bounds Write. Specifically, the Win32k ConsoleControl code path suffers from an offset-confusion issue: an incorrect offset calculation during console control processing leads to writing attacker-controlled data outside the bounds of a kernel buffer. This corrupts adjacent kernel objects and can be leveraged to hijack execution flow.
Impact
- Confidentiality: High — successful exploitation grants read access to kernel memory and sensitive system data.
- Integrity: High — the attacker can modify kernel structures and install persistent implants.
- Availability: High — the attacker can crash the system or render it unstable.
These impact ratings align with the CVSS v3.1 score of 7.8 (HIGH), which reflects a local attack vector, low attack complexity, low privileges required, and no user interaction.
Exploitation Walkthrough
Ethics & Legal Notice: The following description is provided for defensive awareness only. Accessing or modifying systems without authorization is illegal.
Exploitation typically proceeds as follows:
- Primitive Acquisition: The attacker first obtains a handle to a console object and issues a crafted
ConsoleControlrequest that triggers the offset confusion. - Memory Corruption: The malformed request causes an out-of-bounds write in the kernel heap, corrupting adjacent objects such as tagWND structures.
- Privilege Escalation: By carefully controlling the overwritten data, the attacker can manipulate kernel pointers, eventually redirecting execution to attacker-controlled code running with SYSTEM privileges.
Public proof-of-concept discussions are available on Packet Storm, but this advisory deliberately omits weaponized code to prioritize defender value.
Affected and Patched Versions
Affected products (based on CPE data):
- Windows 10 Version 1803
- Windows 10 Version 1809
- Windows 10 Version 1909
- Windows 10 Version 2004
- Windows 10 Version 20H2
- Windows Server 1909
- Windows Server 2004
- Windows Server 2019
- Windows Server 20H2
Specific patch builds were not included in the source data. Organizations should consult the Microsoft Security Advisory for the exact KB articles and updated build numbers.
Remediation
- Apply Security Updates: Install the Microsoft security updates referenced in the MSRC advisory as soon as possible. This vulnerability is actively exploited, so patching urgency is high.
- Compensating Controls:
- Enforce the Principle of Least Privilege to reduce the number of users who can run code locally.
- Enable Credential Guard and Device Guard where supported to harden the kernel attack surface.
- Consider Attack Surface Reduction (ASR) rules that block untrusted executables from running.
- Use Microsoft Defender for Endpoint or equivalent EDR to detect anomalous privilege-escalation behaviors.
Detection
- Monitor for suspicious Win32k syscalls or unexpected
NtUserConsoleControlcalls from non-system processes. - Enable Windows Event ID 4673 (Sensitive Privilege Use) and look for anomalies in privilege escalation sequences.
- Leverage ETW (Event Tracing for Windows) providers such as
Microsoft-Windows-Win32kto capture kernel-mode activity. - Watch for memory-corruption crash signatures (e.g., unexpected
SYSTEM_SERVICE_EXCEPTIONbugchecks) that may indicate failed exploitation attempts.
Assessment
With an EPSS score of 0.78376 (99.529th percentile) and confirmed inclusion in the CISA KEV catalog as of 2021-11-03, CVE-2021-1732 represents a high-probability, high-impact threat. The fact that it has been exploited in the wild underscores the importance of rapid patching for Win32k vulnerabilities.
Key lessons:
- Win32k bugs remain a prime target for local privilege escalation; prioritizing kernel patches can disproportionately reduce risk.
- KEV data should drive patching SLAs; when a vulnerability appears on the CISA catalog, organizations should treat it as an active incident and patch within days, not weeks.
References
- http://packetstormsecurity.com/files/161880/Win32k-ConsoleControl-Offset-Confusion.html
- http://packetstormsecurity.com/files/166169/Win32k-ConsoleControl-Offset-Confusion-Privilege-Escalation.html
- https://portal.msrc.microsoft.com/en-US/security-guidance/advisory/CVE-2021-1732
- https://www.cisa.gov/known-exploited-vulnerabilities-catalog?field_cve=CVE-2021-1732
Frequently asked questions
- What is CVE-2021-1732?
- Windows Win32k Elevation of Privilege Vulnerability
- How severe is CVE-2021-1732?
- CVE-2021-1732 has a CVSS 3.x base score of 7.8, rated high severity. It is exploitable over local access with low attack complexity, requires low privileges and no user interaction. Impact on confidentiality is high, integrity high, and availability high.
- Is CVE-2021-1732 being actively exploited?
- Yes. CVE-2021-1732 is on CISA's Known Exploited Vulnerabilities (KEV) catalog, added on 2021-11-03, which means active exploitation has been confirmed. It should be prioritised for remediation.
- What products are affected by CVE-2021-1732?
- CVE-2021-1732 primarily affects Microsoft Windows 10 1803. In total, 9 product configurations (CPEs) are listed as vulnerable; see the affected-products list for the exact versions.
- How do I fix CVE-2021-1732?
- Review the linked vendor and NVD advisories for patched versions and mitigations, then upgrade or apply the recommended workaround. Because this CVE is known to be actively exploited, treat remediation as urgent — CISA KEV typically sets a short remediation deadline.
- Does CVE-2021-1732 have an EU (EUVD) identifier?
- Yes. CVE-2021-1732 is tracked in the ENISA EU Vulnerability Database (EUVD) as EUVD-2021-7196. It is also flagged as exploited in the EUVD (since 2021-11-03).
- When was CVE-2021-1732 published?
- CVE-2021-1732 was published on 2021-02-25 and last updated on 2026-06-17.
References
- http://packetstormsecurity.com/files/161880/Win32k-ConsoleControl-Offset-Confusion.html
- http://packetstormsecurity.com/files/166169/Win32k-ConsoleControl-Offset-Confusion-Privilege-Escalation.html
- https://portal.msrc.microsoft.com/en-US/security-guidance/advisory/CVE-2021-1732
- https://www.cisa.gov/known-exploited-vulnerabilities-catalog?field_cve=CVE-2021-1732
Affected products (9)
- cpe:2.3:o:microsoft:windows_10_1803:-:*:*:*:*:*:*:*
- cpe:2.3:o:microsoft:windows_10_1809:-:*:*:*:*:*:*:*
- cpe:2.3:o:microsoft:windows_10_1909:-:*:*:*:*:*:*:*
- cpe:2.3:o:microsoft:windows_10_2004:-:*:*:*:*:*:*:*
- cpe:2.3:o:microsoft:windows_10_20h2:-:*:*:*:*:*:*:*
- cpe:2.3:o:microsoft:windows_server_1909:-:*:*:*:*:*:*:*
- cpe:2.3:o:microsoft:windows_server_2004:-:*:*:*:*:*:*:*
- cpe:2.3:o:microsoft:windows_server_2019:-:*:*:*:*:*:*:*
- cpe:2.3:o:microsoft:windows_server_20h2:-:*:*:*:*:*:*:*
More vulnerabilities in Microsoft Windows 10 1803
- CVE-2020-1020 — High (CVSS 8.8): A remote code execution vulnerability exists in Microsoft Windows when the Windows Adobe Type Manager Library…
- CVE-2019-0903 — High (CVSS 8.8): A remote code execution vulnerability exists in the way that the Windows Graphics Device Interface (GDI) handles…
- CVE-2018-8414 — High (CVSS 8.8): A remote code execution vulnerability exists when the Windows Shell does not properly validate file paths, aka "Windows…
- CVE-2018-0824 — High (CVSS 8.8): A remote code execution vulnerability exists in "Microsoft COM for Windows" when it fails to properly handle serialized…
- CVE-2020-0601 — High (CVSS 8.1): A spoofing vulnerability exists in the way Windows CryptoAPI (Crypt32.dll) validates Elliptic Curve Cryptography (ECC)…
- CVE-2022-38396 — High (CVSS 7.8): HP Factory Preinstalled Images on certain systems that shipped with Windows 10 versions 20H2 and earlier OS versions…
All CVEs affecting Microsoft Windows 10 1803 →
Other CWE-787 (Out-of-bounds Write) vulnerabilities
- CVE-2026-42369 — Critical (CVSS 10.0): GV-VMS V20 is a Video Monitoring Software used to gather the feeds of many surveillance cameras and manage other…
- CVE-2026-4746 — Critical (CVSS 10.0): Out-of-bounds Write vulnerability in timeplus-io proton (base/poco/Foundation/src modules). This vulnerability is…
- CVE-2025-43300 — Critical (CVSS 10.0): An out-of-bounds write issue was addressed with improved bounds checking. This issue is fixed in iOS 15.8.5 and iPadOS…
- CVE-2025-24201 — Critical (CVSS 10.0): An out-of-bounds write issue was addressed with improved checks to prevent unauthorized actions. This issue is fixed in…
- CVE-2024-42479 — Critical (CVSS 10.0): llama.cpp provides LLM inference in C/C++. The unsafe `data` pointer member in the `rpc_tensor` structure can cause…
- CVE-2024-39791 — Critical (CVSS 10.0): Stack-based buffer overflow vulnerabilities affecting Vonets industrial wifi bridge relays and wifi bridge…