CVE-2026-83955 Overview
CVE-2026-83955 is a heap-based buffer overflow [CWE-122] in the Windows Biometric Service that enables local privilege escalation. An authorized attacker with low-privileged access to an affected host can corrupt heap memory managed by the service to gain higher privileges. Microsoft published the advisory on 2026-09-08, and the entry was last updated on 2026-09-10.
The vulnerability affects a wide range of client and server versions, including Windows 10, Windows 11, and Windows Server releases from 2016 through 2025. No public exploit code or CISA Known Exploited Vulnerabilities (KEV) listing exists at the time of publication.
Critical Impact
Successful exploitation grants high confidentiality, integrity, and availability impact on the affected Windows host, enabling full local privilege escalation from a standard user context.
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 2016, 2019, 2022, and 2025
Discovery Timeline
- 2026-09-08 - CVE-2026-83955 published to NVD
- 2026-09-08 - Microsoft releases security update for CVE-2026-83955
- 2026-09-10 - Last updated in NVD database
Technical Details for CVE-2026-83955
Vulnerability Analysis
The Windows Biometric Service (WbioSrvc) manages access to biometric hardware and stores enrolled biometric templates. The service runs with elevated privileges and exposes RPC interfaces reachable from local user context. A heap-based buffer overflow in this service allows a local, authenticated attacker to write outside the bounds of an allocated heap buffer.
Because the service handles binary biometric data and RPC input from lower-privileged clients, corrupt input can trigger the overflow during parsing or copy operations. Successful exploitation can overwrite adjacent heap metadata or object pointers, redirecting execution into attacker-controlled memory. The result is code execution in the security context of the Biometric Service.
Root Cause
The root cause is classified under [CWE-122]: Heap-based Buffer Overflow. The service writes data to a heap-allocated buffer without properly validating the size of the incoming input against the allocation size. Microsoft has not released public technical details describing the exact function or field responsible.
Attack Vector
Exploitation requires local access and low-privilege authentication on the target system. No user interaction is needed. An attacker sends crafted requests to the Biometric Service through its exposed local interface, triggering the overflow and pivoting execution to a higher privilege level. Verified public proof-of-concept code is not available.
Detection Methods for CVE-2026-83955
Indicators of Compromise
- Unexpected crashes, restarts, or Windows Error Reporting entries associated with WbioSrvc.dll or the svchost.exe instance hosting the Biometric Service
- New or unusual child processes spawned by the Biometric Service, particularly cmd.exe, powershell.exe, or LOLBins running as SYSTEM
- Suspicious loading of unsigned or unexpected modules into the Biometric Service process
Detection Strategies
- Monitor process lineage for the Biometric Service host and alert on any process creation with a parent tied to WbioSrvc
- Alert on service crashes correlated with local logon activity from non-administrative users
- Baseline biometric enrollment and authentication events, then flag anomalous RPC volumes or timing patterns preceding a service fault
Monitoring Recommendations
- Ingest Windows Security, System, and Application event logs plus Sysmon Event ID 1 (process create) and Event ID 11 (file create) into a centralized analytics platform
- Track WER (Werfault) events referencing biometric components to identify exploitation attempts that trigger crashes before achieving code execution
- Review privilege escalation activity by correlating token elevation events with Biometric Service activity in the same session
How to Mitigate CVE-2026-83955
Immediate Actions Required
- Apply the Microsoft security update referenced in the Microsoft Security Update CVE-2026-83955 advisory to all affected Windows and Windows Server systems
- Prioritize patching multi-user hosts, jump servers, and systems where standard users can obtain local sessions
- Audit local account inventories and remove unnecessary interactive logon rights
Patch Information
Microsoft has released a security update addressing CVE-2026-83955. Refer to the Microsoft Security Update CVE-2026-83955 advisory for the specific KB articles that map to each affected build. Deploy the update through Windows Update, WSUS, Microsoft Endpoint Configuration Manager, or Intune based on your existing patch management process.
Workarounds
- If patching must be delayed, disable the Windows Biometric Service (WbioSrvc) on systems that do not rely on Windows Hello or fingerprint authentication
- Restrict local logon rights so that only trusted administrative users can reach the vulnerable local attack surface
- Enforce application allowlisting to limit which binaries a low-privileged user can execute while attempting exploitation
# Stop and disable the Windows Biometric Service where biometrics are not required
sc.exe stop WbioSrvc
sc.exe config WbioSrvc start= disabled
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

