CVE-2023-32012

7.8 HIGH

📋 TL;DR

This vulnerability allows an authenticated attacker to gain SYSTEM-level privileges on Windows systems by exploiting a flaw in the Container Manager Service. It affects Windows Server and Windows client systems with container features enabled. Attackers must already have local access to the system.

💻 Affected Systems

Products:
  • Windows Server
  • Windows 10
  • Windows 11
Versions: Windows Server 2022, Windows Server 2019, Windows 10 21H2, Windows 10 22H2, Windows 11 21H2, Windows 11 22H2
Operating Systems: Windows
Default Config Vulnerable: ⚠️ Yes
Notes: Requires Windows Container features to be installed/enabled. Affects both Server and client editions with container support.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete system compromise with SYSTEM privileges, enabling installation of persistent malware, credential theft, and lateral movement across the network.

🟠

Likely Case

Local privilege escalation allowing attackers to bypass security controls, install additional tools, and access sensitive data on the compromised system.

🟢

If Mitigated

Limited impact if proper access controls, least privilege principles, and network segmentation are implemented, though local compromise would still occur.

🌐 Internet-Facing: LOW - Requires local authenticated access, not directly exploitable over the internet.
🏢 Internal Only: HIGH - Significant risk for internal systems where attackers could gain initial access through other means and then escalate privileges.

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ✅ No
Complexity: MEDIUM

Requires authenticated local access. Exploitation involves manipulating container manager service operations to achieve privilege escalation.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Security updates from June 2023 or later

Vendor Advisory: https://msrc.microsoft.com/update-guide/vulnerability/CVE-2023-32012

Restart Required: Yes

Instructions:

1. Apply the latest Windows security updates from Windows Update. 2. For enterprise environments, deploy updates through WSUS or Microsoft Endpoint Configuration Manager. 3. Restart affected systems after patch installation.

🔧 Temporary Workarounds

Disable Windows Container features

windows

Remove or disable Windows Container functionality if not required

Disable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V-All
Disable-WindowsOptionalFeature -Online -FeatureName Containers

Restrict local access

all

Implement strict access controls to limit who can log into affected systems

🧯 If You Can't Patch

  • Implement strict least privilege access controls and limit local administrator accounts
  • Deploy application control solutions to prevent unauthorized code execution

🔍 How to Verify

Check if Vulnerable:

Check if Windows Container features are installed and system has not received June 2023 or later security updates

Check Version:

systeminfo | findstr /B /C:"OS Name" /C:"OS Version"

Verify Fix Applied:

Verify system has installed KB5027231 (June 2023) or later security updates and check Windows Update history

📡 Detection & Monitoring

Log Indicators:

  • Unusual Container Manager Service activity
  • Privilege escalation attempts in Security logs (Event ID 4672, 4688)
  • Suspicious process creation from container-related executables

Network Indicators:

  • Lateral movement from previously compromised systems
  • Unexpected outbound connections from container hosts

SIEM Query:

EventID=4672 OR EventID=4688 | where ProcessName contains "container" OR ParentProcessName contains "container"

🔗 References

📤 Share & Export