CVE-2024-30079

7.8 HIGH

📋 TL;DR

This vulnerability allows an authenticated attacker to elevate privileges on a Windows system by exploiting a flaw in the Remote Access Connection Manager service. It affects Windows systems with this service enabled, potentially allowing attackers to gain SYSTEM-level access. This impacts Windows servers and workstations where the service is running.

💻 Affected Systems

Products:
  • Microsoft Windows
Versions: Windows 10, Windows 11, Windows Server 2016, Windows Server 2019, Windows Server 2022
Operating Systems: Windows
Default Config Vulnerable: ⚠️ Yes
Notes: Requires Remote Access Connection Manager service to be running. This service may not be enabled by default on all systems but is commonly present.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Attacker gains SYSTEM privileges, enabling complete system compromise, installation of malware, credential theft, and lateral movement across the network.

🟠

Likely Case

Authenticated attacker elevates from standard user to administrator/SYSTEM privileges to install backdoors, steal sensitive data, or disable security controls.

🟢

If Mitigated

With proper access controls and monitoring, impact is limited to isolated systems with rapid detection and containment.

🌐 Internet-Facing: LOW
🏢 Internal Only: HIGH

🎯 Exploit Status

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

Requires authenticated access to the target system. No public exploit code is known at this time.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: May 2024 security updates (KB5037771 for Windows 11, KB5037768 for Windows 10, etc.)

Vendor Advisory: https://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-30079

Restart Required: Yes

Instructions:

1. Apply the May 2024 Windows security updates from Windows Update. 2. For enterprise environments, deploy updates via WSUS, SCCM, or Intune. 3. Restart affected systems after patch installation.

🔧 Temporary Workarounds

Disable Remote Access Connection Manager Service

windows

Disables the vulnerable service to prevent exploitation

sc config RasMan start= disabled
sc stop RasMan

🧯 If You Can't Patch

  • Restrict user access to systems with Remote Access Connection Manager service running
  • Implement network segmentation to limit lateral movement from potentially compromised systems

🔍 How to Verify

Check if Vulnerable:

Check if Remote Access Connection Manager service is running: sc query RasMan

Check Version:

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

Verify Fix Applied:

Verify May 2024 security updates are installed: wmic qfe list | findstr "KB5037771 KB5037768"

📡 Detection & Monitoring

Log Indicators:

  • Event ID 4688 with process creation from RasMan service
  • Unexpected privilege escalation events in security logs
  • Service control manager events related to RasMan service

Network Indicators:

  • Unusual outbound connections from systems with RasMan service
  • Lateral movement attempts from previously low-privilege accounts

SIEM Query:

EventID=4688 AND (NewProcessName="*\system32\*" OR ParentProcessName="*\svchost.exe*") AND CommandLine="*RasMan*"

🔗 References

📤 Share & Export