CVE-2023-36403
📋 TL;DR
This Windows kernel vulnerability allows attackers to elevate privileges through race conditions in memory management. It affects Windows systems where an attacker already has local access with limited privileges. Successful exploitation enables complete system compromise.
💻 Affected Systems
- Windows 10
- Windows 11
- Windows Server 2016
- Windows Server 2019
- Windows Server 2022
📦 What is this software?
Windows 10 1507 by Microsoft
Windows 10 1507 by Microsoft
Windows 10 1607 by Microsoft
Windows 10 1607 by Microsoft
Windows 10 1809 by Microsoft
Windows 10 1809 by Microsoft
Windows 10 1809 by Microsoft
Windows 10 21h2 by Microsoft
Windows 10 22h2 by Microsoft
Windows 11 21h2 by Microsoft
Windows 11 22h2 by Microsoft
Windows 11 23h2 by Microsoft
⚠️ Risk & Real-World Impact
Worst Case
Complete system takeover with SYSTEM privileges, enabling installation of malware, credential theft, and lateral movement across the network.
Likely Case
Local privilege escalation from standard user to SYSTEM/administrator privileges, allowing attackers to bypass security controls and maintain persistence.
If Mitigated
Limited impact with proper patch management and endpoint protection that detects kernel exploitation attempts.
🎯 Exploit Status
Exploit requires local access and race condition timing precision. Public proof-of-concept exists on Packet Storm Security.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: October 2023 security updates (KB5031356 for Windows 10, KB5031354 for Windows 11, etc.)
Vendor Advisory: https://msrc.microsoft.com/update-guide/vulnerability/CVE-2023-36403
Restart Required: Yes
Instructions:
1. Apply October 2023 Windows security updates via Windows Update. 2. For enterprise environments, deploy through WSUS or Microsoft Endpoint Configuration Manager. 3. Restart systems after patch installation.
🔧 Temporary Workarounds
Restrict local user privileges
windowsLimit standard user accounts to prevent execution of arbitrary code
Enable Windows Defender Exploit Guard
windowsConfigure exploit protection to mitigate kernel exploitation
🧯 If You Can't Patch
- Implement application whitelisting to prevent unauthorized code execution
- Deploy endpoint detection and response (EDR) solutions with kernel protection
🔍 How to Verify
Check if Vulnerable:
Check Windows Update history for October 2023 security updates or use 'systeminfo' command to verify OS build version
Check Version:
systeminfo | findstr /B /C:"OS Name" /C:"OS Version"
Verify Fix Applied:
Verify KB5031356 (Windows 10) or KB5031354 (Windows 11) is installed via 'wmic qfe list' or Windows Update history
📡 Detection & Monitoring
Log Indicators:
- Windows Security Event ID 4688 with suspicious parent processes
- Unexpected kernel mode driver loads
- Process creation from unusual locations with SYSTEM privileges
Network Indicators:
- Lateral movement attempts following local privilege escalation
- Unusual outbound connections from previously low-privilege accounts
SIEM Query:
EventID=4688 AND NewProcessName="*" AND SubjectUserName!="SYSTEM" AND TokenElevationType="%%1936"