CVE-2023-28232

7.5 HIGH

📋 TL;DR

This vulnerability allows remote attackers to execute arbitrary code on Windows systems by exploiting a flaw in the Point-to-Point Tunneling Protocol (PPTP) implementation. Attackers could gain SYSTEM-level privileges on affected systems. All Windows systems with PPTP enabled are potentially vulnerable.

💻 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: ✅ No
Notes: Only vulnerable if PPTP VPN functionality is enabled and accessible. Many organizations have migrated to more secure VPN protocols.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete system compromise with SYSTEM privileges, enabling persistent access, data theft, lateral movement, and ransomware deployment.

🟠

Likely Case

Initial foothold leading to privilege escalation, credential harvesting, and installation of backdoors or malware.

🟢

If Mitigated

Limited impact due to network segmentation, disabled PPTP services, or proper patch management.

🌐 Internet-Facing: MEDIUM
🏢 Internal Only: HIGH

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ⚠️ Yes
Complexity: MEDIUM

Exploitation requires network access to PPTP services. No public exploit code has been released as of analysis date.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: April 2023 security updates (KB5025221 for Windows 10, KB5025239 for Windows 11, etc.)

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

Restart Required: Yes

Instructions:

1. Apply April 2023 Windows security updates via Windows Update. 2. For enterprise environments, deploy updates through WSUS or SCCM. 3. Restart systems after patch installation.

🔧 Temporary Workarounds

Disable PPTP VPN Server

windows

Disable the PPTP VPN service to prevent exploitation.

sc config RasMan start= disabled
sc stop RasMan

Block PPTP Ports

windows

Block PPTP ports (TCP 1723) at network perimeter.

netsh advfirewall firewall add rule name="Block PPTP" dir=in action=block protocol=TCP localport=1723

🧯 If You Can't Patch

  • Disable PPTP VPN services on all affected systems
  • Implement network segmentation to isolate PPTP traffic and restrict access

🔍 How to Verify

Check if Vulnerable:

Check if PPTP service (RasMan) is running and system has not applied April 2023 security updates.

Check Version:

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

Verify Fix Applied:

Verify April 2023 security updates are installed via 'systeminfo' command and check patch KB numbers.

📡 Detection & Monitoring

Log Indicators:

  • Unusual PPTP connection attempts in Windows Event Logs (Event ID 20270-20273)
  • Failed PPTP authentication events from unexpected sources

Network Indicators:

  • Unusual traffic on TCP port 1723
  • PPTP connection attempts from unexpected IP ranges

SIEM Query:

source="WinEventLog:Security" (EventCode=4625 OR EventCode=4776) AND ProcessName="svchost.exe" AND ServiceName="RasMan"

🔗 References

📤 Share & Export