CVE-2022-29150

7.0 HIGH

📋 TL;DR

This vulnerability allows an authenticated attacker to gain SYSTEM privileges on Windows systems using Cluster Shared Volume (CSV). It affects Windows Server systems configured with Failover Clustering and CSV enabled.

💻 Affected Systems

Products:
  • Windows Server
Versions: Windows Server 2019, 2022
Operating Systems: Windows Server 2019, Windows Server 2022
Default Config Vulnerable: ✅ No
Notes: Only affects systems with Failover Clustering and Cluster Shared Volume (CSV) enabled. Not applicable to client Windows versions.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Attacker gains full SYSTEM privileges, enabling complete system compromise, data theft, lateral movement, and persistence establishment.

🟠

Likely Case

Privilege escalation from authenticated user to SYSTEM, allowing installation of malware, credential harvesting, and administrative control.

🟢

If Mitigated

Limited impact with proper network segmentation, least privilege access, and monitoring of privileged account usage.

🌐 Internet-Facing: LOW - Requires authenticated access to the Windows Server with CSV configured.
🏢 Internal Only: HIGH - Internal attackers with authenticated access can exploit this for privilege escalation.

🎯 Exploit Status

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

Requires authenticated access and specific CSV configuration. No public exploit code available as of analysis.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: May 2022 security updates

Vendor Advisory: https://msrc.microsoft.com/update-guide/vulnerability/CVE-2022-29150

Restart Required: Yes

Instructions:

1. Apply May 2022 Windows Server security updates via Windows Update. 2. For manual installation, download appropriate KB from Microsoft Update Catalog. 3. Restart affected servers after patch installation.

🔧 Temporary Workarounds

Disable CSV if not required

windows

Temporarily disable Cluster Shared Volume feature if not essential for operations

Disable-ClusterSharedVolume -Name "CSVName"
Remove-ClusterSharedVolume -Name "CSVName"

🧯 If You Can't Patch

  • Implement strict access controls and monitor authenticated user activities on CSV-enabled servers
  • Segment CSV-enabled servers from general network and restrict access to authorized administrators only

🔍 How to Verify

Check if Vulnerable:

Check if system has Failover Clustering and CSV enabled: Get-ClusterSharedVolume

Check Version:

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

Verify Fix Applied:

Verify May 2022 security updates are installed: Get-HotFix -Id KB5013942 (Server 2019) or KB5013943 (Server 2022)

📡 Detection & Monitoring

Log Indicators:

  • Windows Security Event ID 4672 (Special privileges assigned to new logon)
  • Unexpected SYSTEM privilege escalation events
  • Cluster service abnormal activities

Network Indicators:

  • Unusual SMB traffic patterns to CSV shares
  • Unexpected administrative connections to cluster nodes

SIEM Query:

EventID=4672 AND SubjectUserName NOT IN (expected_admin_accounts) AND TargetUserName="SYSTEM"

🔗 References

📤 Share & Export