CVE-2025-21190

8.8 HIGH

📋 TL;DR

This vulnerability allows remote attackers to execute arbitrary code on Windows systems by exploiting a heap-based buffer overflow in the Telephony Service. It affects Windows systems with the Telephony Service enabled, primarily impacting enterprise environments using telephony integration features.

💻 Affected Systems

Products:
  • Windows Server
  • Windows Client
Versions: Windows 10, Windows 11, Windows Server 2016, Windows Server 2019, Windows Server 2022
Operating Systems: Windows
Default Config Vulnerable: ✅ No
Notes: Only vulnerable when Telephony Service (TAPI) is enabled and configured. Many systems have this disabled by default unless specifically using telephony features.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete system compromise with SYSTEM privileges, enabling data theft, ransomware deployment, and persistent backdoor installation across the network.

🟠

Likely Case

Lateral movement within enterprise networks, credential harvesting, and deployment of additional malware payloads.

🟢

If Mitigated

Limited impact due to network segmentation, endpoint protection, and restricted service permissions preventing successful exploitation.

🌐 Internet-Facing: MEDIUM
🏢 Internal Only: HIGH

🎯 Exploit Status

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

Requires network access to the Telephony Service port and knowledge of vulnerable configurations. Likely requires some authentication or network positioning.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: February 2025 Security Update or later

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

Restart Required: Yes

Instructions:

1. Apply February 2025 Windows Security Update via Windows Update. 2. For enterprise: Deploy through WSUS or Microsoft Endpoint Configuration Manager. 3. Verify update installation and restart systems as required.

🔧 Temporary Workarounds

Disable Telephony Service

Windows

Disable the Windows Telephony Service if not required for business operations

sc config TapiSrv start= disabled
sc stop TapiSrv

Block Network Access

Windows

Block 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

🧯 If You Can't Patch

  • Implement strict network segmentation to isolate systems with Telephony Service enabled
  • Deploy endpoint detection and response (EDR) solutions with behavioral monitoring for suspicious process creation

🔍 How to Verify

Check if Vulnerable:

Check if Telephony Service is running: sc query TapiSrv. If running and system has not applied February 2025 update, it is vulnerable.

Check Version:

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

Verify Fix Applied:

Verify Windows Update history shows February 2025 Security Update installed and Telephony Service is either patched or disabled.

📡 Detection & Monitoring

Log Indicators:

  • Event ID 4688: New process creation from TapiSrv.exe
  • Event ID 4624: Network logons associated with Telephony Service
  • Unexpected service crashes or restarts of TapiSrv

Network Indicators:

  • Unusual connections to TCP port 3372 (Telephony Service)
  • Network traffic patterns indicating buffer overflow attempts

SIEM Query:

source="windows" (event_id=4688 AND process_name="TapiSrv.exe") OR (event_id=4624 AND service_name="TapiSrv")

🔗 References

📤 Share & Export