CVE-2023-23385

7.0 HIGH

📋 TL;DR

This vulnerability allows an attacker to gain SYSTEM-level privileges on Windows systems by exploiting an integer overflow in the PPPoE driver. It affects Windows systems with PPPoE enabled, which is commonly used for DSL internet connections.

💻 Affected Systems

Products:
  • Windows 10
  • Windows 11
  • Windows Server 2019
  • Windows Server 2022
Versions: All versions prior to March 2023 security updates
Operating Systems: Windows
Default Config Vulnerable: ⚠️ Yes
Notes: Only affects systems with PPPoE enabled, which is not default on most Windows installations but common on systems using DSL connections.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete system compromise with SYSTEM privileges, allowing installation of malware, data theft, and persistence mechanisms.

🟠

Likely Case

Local privilege escalation from a standard user account to SYSTEM, enabling lateral movement and credential harvesting.

🟢

If Mitigated

Limited impact if proper network segmentation and least privilege principles are followed, though local compromise remains possible.

🌐 Internet-Facing: LOW - Requires local access to the system; not directly exploitable over the internet.
🏢 Internal Only: MEDIUM - Can be exploited by authenticated users on the local network or through phishing/social engineering.

🎯 Exploit Status

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

Requires local access and user-level privileges to exploit. No public exploit code available as of analysis.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: March 2023 security updates (KB5023696 for Windows 10, KB5023705 for Windows 11, etc.)

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

Restart Required: Yes

Instructions:

1. Open Windows Update settings. 2. Click 'Check for updates'. 3. Install March 2023 security updates. 4. Restart the system when prompted.

🔧 Temporary Workarounds

Disable PPPoE service

windows

Disables the vulnerable PPPoE driver if not needed for network connectivity

sc config RasMan start= disabled
sc stop RasMan

🧯 If You Can't Patch

  • Implement strict network segmentation to limit lateral movement
  • Enforce least privilege principles and monitor for privilege escalation attempts

🔍 How to Verify

Check if Vulnerable:

Check if PPPoE service is running and system has not installed March 2023 security updates

Check Version:

winver

Verify Fix Applied:

Verify March 2023 security updates are installed via 'winver' command or Windows Update history

📡 Detection & Monitoring

Log Indicators:

  • Event ID 4697: Service installation in Security logs
  • Unexpected SYSTEM privilege processes

Network Indicators:

  • Unusual PPPoE connection attempts from internal systems

SIEM Query:

EventID=4697 AND ServiceName="RasMan" OR ProcessName="svchost.exe" AND ParentProcessName="services.exe" AND CommandLine LIKE "%pppoe%"

🔗 References

📤 Share & Export