CVE-2026-62701 Overview
CVE-2026-62701 is a use-after-free vulnerability [CWE-416] in the Windows Telephony Service. An authenticated local attacker can exploit the flaw to elevate privileges on the target system. The issue affects a wide range of Microsoft Windows client and server releases, including Windows 10, Windows 11, and Windows Server 2012 through Windows Server 2025.
The vulnerability requires low privileges and no user interaction. Successful exploitation yields high impact to confidentiality, integrity, and availability, giving an attacker the ability to run code in the context of a more privileged account.
Critical Impact
A low-privileged local user can trigger a use-after-free condition in the Windows Telephony Service to escalate to higher privileges, compromising the entire host.
Affected Products
- Microsoft Windows 10 (1607, 1809, 21H2, 22H2) across x86, x64, and ARM64
- Microsoft Windows 11 (23H2, 24H2, 25H2, 26H1) across x64 and ARM64
- Microsoft Windows Server 2012, 2012 R2, 2016, 2019, 2022, and 2025
Discovery Timeline
- 2026-08-11 - CVE-2026-62701 published to the National Vulnerability Database
- 2026-08-13 - Last updated in the NVD database
Technical Details for CVE-2026-62701
Vulnerability Analysis
The Windows Telephony Service (TapiSrv) exposes the Telephony Application Programming Interface (TAPI) to local processes over Remote Procedure Call (RPC). The service manages call-control and line-device state on behalf of client applications. A use-after-free defect in this component allows a local attacker to reference freed memory and manipulate the service's execution flow.
Because the Telephony Service runs with elevated privileges, corruption of its internal state can be turned into arbitrary code execution in a privileged context. The result is local privilege escalation from a standard user to a higher-integrity account.
Root Cause
The root cause is memory mismanagement classified as CWE-416 (Use After Free). An object inside the Telephony Service is freed while at least one reference to it remains reachable. Subsequent operations dereference the stale pointer, producing an exploitable condition. Attackers can groom the heap so that the freed slot is reoccupied by controlled data, redirecting execution or corrupting security-sensitive fields.
Attack Vector
Exploitation is local and requires an authenticated session with low privileges. No user interaction is needed. An attacker with code execution as a standard user issues crafted requests to the Telephony Service, races the free-and-reuse window, and leverages the resulting memory corruption to run code with elevated rights. See the Microsoft CVE-2026-62701 Advisory for vendor details.
No public proof-of-concept exploit or in-the-wild exploitation has been reported at time of writing. The EPSS probability is 0.318%.
Detection Methods for CVE-2026-62701
Indicators of Compromise
- Unexpected crashes, restarts, or Windows Error Reporting entries associated with the TapiSrv service or svchost.exe hosting the Telephony Service.
- New or unusual child processes spawned by the Telephony Service or by svchost.exe instances that host it.
- Standard user accounts suddenly performing actions consistent with SYSTEM or administrative privileges.
Detection Strategies
- Hunt for local processes issuing TAPI RPC calls that are not part of legitimate telephony applications.
- Alert on token manipulation, SeImpersonatePrivilege abuse, or privilege elevation events (Windows Event ID 4672) originating from non-administrative users.
- Correlate service crash events (Event IDs 7031, 7034, 1000) for the Telephony Service with subsequent process creation events.
Monitoring Recommendations
- Enable command-line and process creation auditing (Event ID 4688) with parent-process tracking on all Windows endpoints and servers.
- Forward Windows Security, System, and Application logs to a centralized analytics platform for cross-host correlation.
- Baseline normal Telephony Service activity and alert on deviations, particularly on servers that do not host telephony workloads.
How to Mitigate CVE-2026-62701
Immediate Actions Required
- Apply the Microsoft security update referenced in the Microsoft CVE-2026-62701 Advisory to all affected Windows client and server systems.
- Prioritize multi-user hosts such as Remote Desktop Session Hosts, jump boxes, and Virtual Desktop Infrastructure where local users are already present.
- Audit local accounts and remove unnecessary interactive logon rights to reduce the population of potential attackers.
Patch Information
Microsoft has published guidance and updates through the Microsoft Security Response Center. Refer to the Microsoft CVE-2026-62701 Advisory for the specific KB numbers that apply to each affected Windows 10, Windows 11, and Windows Server release. Install the corresponding cumulative update through Windows Update, Windows Server Update Services (WSUS), or your endpoint management platform.
Workarounds
- Disable the Windows Telephony Service (TapiSrv) on systems that do not require TAPI functionality, after validating that no dependent applications rely on it.
- Restrict local logon rights so that only trusted administrators can obtain the authenticated session required for exploitation.
- Apply application allowlisting to block unauthorized binaries from interacting with the Telephony Service RPC interface.
# Configuration example: disable the Windows Telephony Service where not needed
sc.exe config TapiSrv start= disabled
sc.exe stop TapiSrv
# Verify the service state
sc.exe query TapiSrv
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

