CVE-2026-32088 Overview
CVE-2026-32088 is a race condition vulnerability in the Windows Biometric Service that allows an unauthorized attacker with physical access to bypass a security feature. The flaw is categorized as concurrent execution using a shared resource with improper synchronization [CWE-362]. Microsoft published the advisory on April 14, 2026, and the issue affects a broad range of Windows client and server versions, including Windows 10, Windows 11, and Windows Server 2019 through 2025. Successful exploitation can compromise confidentiality and integrity by circumventing biometric authentication protections such as Windows Hello.
Critical Impact
An attacker with physical access can win a timing race in the Windows Biometric Service to bypass biometric authentication, compromising confidentiality and integrity of the affected device.
Affected Products
- Microsoft Windows 10 (1809, 21H2, 22H2) across x86, x64, and ARM64
- Microsoft Windows 11 (23H2, 24H2, 25H2, 26H1) across x64 and ARM64
- Microsoft Windows Server 2019, 2022, 2022 23H2, and 2025
Discovery Timeline
- 2026-04-14 - CVE-2026-32088 published to NVD
- 2026-04-21 - Last updated in NVD database
Technical Details for CVE-2026-32088
Vulnerability Analysis
The Windows Biometric Service (WbioSrvc) brokers biometric data between sensors and the authentication subsystem. CVE-2026-32088 stems from a race condition in how the service coordinates access to a shared resource during biometric verification. An attacker who can interact with the device physically can manipulate the timing of concurrent operations to influence the authentication result. Because the attack vector is physical and complexity is high, exploitation requires direct hardware interaction and precise timing. When successful, the attacker bypasses the biometric security feature without valid credentials, exposing protected data and allowing tampering with system state tied to the authenticated session.
Root Cause
The root cause is improper synchronization of concurrent execution paths within the Windows Biometric Service [CWE-362]. The service accesses a shared resource without sufficient locking or atomic guarantees during the verification workflow. This creates a time-of-check to time-of-use window where the validation state can be altered before it is consumed by the dependent security decision.
Attack Vector
Exploitation requires physical access to the target device. The attacker must trigger biometric authentication operations and interleave them with carefully timed inputs that race against the service's internal state transitions. No prior privileges or user interaction beyond physical proximity are required. Winning the race causes the biometric service to accept an unauthenticated session as authenticated, bypassing Windows Hello or related sign-in protections.
No public proof-of-concept code is available, and the vulnerability has not been observed in active exploitation. Refer to the Microsoft Vulnerability Advisory for vendor-supplied technical details.
Detection Methods for CVE-2026-32088
Indicators of Compromise
- Unexpected successful Windows Hello or biometric sign-in events on devices that were physically unattended or in attacker-accessible locations.
- Repeated biometric authentication attempts followed by an anomalous success in the Windows Biometric Framework event log (Microsoft-Windows-Biometrics/Operational).
- Sign-in sessions established without a corresponding fingerprint or facial recognition enrollment event for the active user.
Detection Strategies
- Correlate Windows Security event ID 4624 (logon) with Biometric Framework operational events to identify logons attributed to biometrics that lack expected sensor telemetry.
- Alert on bursts of biometric verification attempts on a single device within a short interval, which is characteristic of attempts to win a race condition.
- Monitor for sign-ins occurring outside normal working hours on devices that rely on biometric authentication at physical access points.
Monitoring Recommendations
- Forward Microsoft-Windows-Biometrics/Operational and Security channel logs to a centralized log platform for correlation and retention.
- Track patch deployment status for the April 2026 Windows security updates across all endpoints and servers.
- Audit physical access controls and tamper indicators for laptops, kiosks, and shared workstations that use Windows Hello.
How to Mitigate CVE-2026-32088
Immediate Actions Required
- Apply the Microsoft security update referenced in the Microsoft Vulnerability Advisory to all affected Windows 10, Windows 11, and Windows Server systems.
- Prioritize patching for mobile devices, kiosks, and any endpoint exposed to physical access by untrusted parties.
- Enforce full-disk encryption with BitLocker and a pre-boot PIN to reduce the impact of physical attacks against unpatched systems.
Patch Information
Microsoft released a security update addressing CVE-2026-32088 alongside the April 2026 advisory. Administrators should deploy the cumulative update for each affected Windows build through Windows Update, Windows Server Update Services (WSUS), or Microsoft Endpoint Configuration Manager. Confirm successful installation by validating the build number against the KB referenced in the vendor advisory.
Workarounds
- Disable Windows Hello biometric sign-in via Group Policy on high-risk devices until the patch is applied, requiring PIN or password instead.
- Require multi-factor authentication that does not rely solely on the local biometric subsystem for privileged accounts.
- Restrict physical access to endpoints using locked enclosures, port blockers, and tamper-evident seals where biometric sign-in cannot be disabled.
# Disable Windows Hello biometrics via registry (run as Administrator)
reg add "HKLM\SOFTWARE\Policies\Microsoft\Biometrics" /v Enabled /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Biometrics\Credential Provider" /v Enabled /t REG_DWORD /d 0 /f
# Restart the Windows Biometric Service to apply the change
sc stop WbioSrvc
sc start WbioSrvc
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.


