CVE-2023-36405
📋 TL;DR
This Windows kernel vulnerability allows an authenticated attacker to execute arbitrary code with elevated SYSTEM privileges. It affects Windows systems where an attacker already has local access. Successful exploitation requires the attacker to have initial access to the target system.
💻 Affected Systems
- Microsoft Windows
📦 What is this software?
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
An attacker gains full SYSTEM privileges, enabling complete system compromise, persistence installation, credential theft, and lateral movement across the network.
Likely Case
Privilege escalation from a standard user or lower-privileged account to SYSTEM, allowing installation of malware, disabling security controls, or accessing protected resources.
If Mitigated
Limited impact due to proper patch management, endpoint protection, and least privilege principles preventing initial access.
🎯 Exploit Status
Exploitation requires local access and knowledge of kernel exploitation techniques. No public exploit code is available at this time.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: Apply the October 2023 Windows security updates (KB5031356 for Windows 10, KB5031354 for Windows 11, etc.)
Vendor Advisory: https://msrc.microsoft.com/update-guide/vulnerability/CVE-2023-36405
Restart Required: Yes
Instructions:
1. Open Windows Update settings. 2. Click 'Check for updates'. 3. Install all available security updates. 4. Restart the system when prompted.
🔧 Temporary Workarounds
Restrict local access
windowsLimit who has local login access to critical systems to reduce attack surface
Implement least privilege
windowsEnsure users operate with minimal necessary privileges to limit impact of successful exploitation
🧯 If You Can't Patch
- Implement strict access controls and network segmentation to limit lateral movement
- Deploy endpoint detection and response (EDR) solutions to detect privilege escalation attempts
🔍 How to Verify
Check if Vulnerable:
Check if October 2023 Windows security updates are installed via 'winver' command or Windows Update history
Check Version:
winver
Verify Fix Applied:
Verify KB5031356 (Windows 10) or KB5031354 (Windows 11) is installed in Windows Update history
📡 Detection & Monitoring
Log Indicators:
- Windows Security Event ID 4688 (process creation) showing unexpected SYSTEM privilege processes
- Event ID 4672 (special privileges assigned)
Network Indicators:
- Unusual outbound connections from SYSTEM processes
- Lateral movement attempts following privilege escalation
SIEM Query:
EventID=4688 AND NewProcessName CONTAINS 'cmd.exe' AND SubjectUserName='SYSTEM' AND NOT ParentProcessName CONTAINS 'services.exe'