CVE-2025-21302

8.8 HIGH

📋 TL;DR

This is a heap-based buffer overflow vulnerability in Windows Telephony Service that allows remote attackers to execute arbitrary code with SYSTEM privileges. It affects Windows systems with the Telephony service enabled. Attackers can exploit this by sending specially crafted requests to the vulnerable service.

💻 Affected Systems

Products:
  • Windows Telephony Service
Versions: Windows 10, Windows 11, Windows Server 2016, Windows Server 2019, Windows Server 2022
Operating Systems: Windows
Default Config Vulnerable: ⚠️ Yes
Notes: Systems with Telephony service disabled or blocked by firewall are not vulnerable. The service may be enabled by default on some Windows editions.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Full system compromise with SYSTEM privileges, enabling lateral movement, data exfiltration, and persistent backdoor installation across the network.

🟠

Likely Case

Remote code execution leading to malware deployment, ransomware installation, or credential theft from affected systems.

🟢

If Mitigated

Limited impact due to network segmentation, restricted service access, and proper patch management preventing exploitation.

🌐 Internet-Facing: MEDIUM
🏢 Internal Only: HIGH

🎯 Exploit Status

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

Exploitation requires network access to the Telephony service port. No authentication is required once network access is established.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Windows Security Update KB5034441 or later

Vendor Advisory: https://msrc.microsoft.com/update-guide/vulnerability/CVE-2025-21302

Restart Required: Yes

Instructions:

1. Apply the latest Windows security updates from Microsoft Update. 2. Restart affected systems. 3. Verify the patch is installed using Windows Update history or systeminfo command.

🔧 Temporary Workarounds

Disable Telephony Service

Windows

Disable the Windows Telephony service to prevent exploitation

sc config TapiSrv start= disabled
sc stop TapiSrv

Block Network Access

Windows

Block inbound network access to Telephony service ports using firewall rules

netsh advfirewall firewall add rule name="Block Telephony Service" dir=in action=block protocol=TCP localport=3372,3373,3374

🧯 If You Can't Patch

  • Implement strict network segmentation to isolate systems with Telephony service
  • Deploy endpoint detection and response (EDR) solutions to detect exploitation attempts

🔍 How to Verify

Check if Vulnerable:

Check if Telephony service is running: sc query TapiSrv

Check Version:

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

Verify Fix Applied:

Verify KB5034441 is installed: wmic qfe list | findstr KB5034441

📡 Detection & Monitoring

Log Indicators:

  • Event ID 4625 failed logons to Telephony service
  • Unexpected process creation from TapiSvr.exe
  • Crash logs from Telephony service

Network Indicators:

  • Unusual network traffic to port 3372-3374
  • Multiple connection attempts to Telephony service

SIEM Query:

source="windows" AND (event_id=4625 AND service_name="TapiSrv") OR (process_name="TapiSvr.exe" AND parent_process!="services.exe")

🔗 References

📤 Share & Export