CVE-2023-23376 Overview
CVE-2023-23376 is an elevation of privilege vulnerability in the Windows Common Log File System (CLFS) driver. The flaw allows a local attacker with low-privileged access to execute code with SYSTEM privileges on affected Windows desktop and server platforms. Microsoft disclosed the issue in February 2023, and CISA added it to the Known Exploited Vulnerabilities (KEV) catalog after confirming active exploitation in the wild. The vulnerability is associated with [CWE-122] heap-based buffer overflow and [CWE-787] out-of-bounds write conditions in the CLFS.sys kernel driver. Affected products include Windows 10, Windows 11, and Windows Server 2008 through 2022.
Critical Impact
Successful exploitation grants SYSTEM-level privileges, enabling full host compromise from any authenticated local user context.
Affected Products
- Microsoft Windows 10 (1507, 1607, 1809, 20H2, 21H2, 22H2)
- Microsoft Windows 11 (21H2, 22H2)
- Microsoft Windows Server 2008, 2012, 2016, 2019, and 2022
Discovery Timeline
- 2023-02-14 - CVE-2023-23376 published to the National Vulnerability Database (NVD)
- 2023-02-14 - Microsoft releases security update addressing the vulnerability
- 2025-10-27 - Last updated in NVD database
Technical Details for CVE-2023-23376
Vulnerability Analysis
The vulnerability resides in the Common Log File System (CLFS) driver, CLFS.sys, a general-purpose logging subsystem used by both kernel and user-mode applications in Windows. CLFS exposes attack surface to any local user because logs can be created and manipulated without elevated privileges. An attacker who authenticates locally can trigger a memory corruption condition in the driver and gain SYSTEM execution. Microsoft classifies this as an elevation of privilege issue, and CISA's KEV listing confirms threat actors have weaponized it in real-world intrusions. The bug is commonly chained with initial-access techniques such as phishing payloads or post-exploitation tooling delivered through commodity loaders.
Root Cause
The root cause involves improper validation of structures parsed from CLFS Base Log Files (.blf). Mapped to [CWE-122] and [CWE-787], the driver performs writes outside the bounds of allocated heap structures when processing crafted log metadata. This memory corruption is leveraged to overwrite kernel objects, ultimately redirecting execution or escalating the token of an attacker-controlled process to SYSTEM.
Attack Vector
Exploitation requires local authenticated access. An attacker drops a malicious .blf file or invokes CLFS APIs with crafted parameters from a low-privileged process. The driver parses the attacker-controlled data, triggers the out-of-bounds write, and corrupts kernel memory. Public reporting links this CVE to ransomware operators using it as a post-compromise privilege escalation primitive.
No verified public proof-of-concept code is referenced in the available sources. Technical details for defenders are available in the Microsoft Security Response Center advisory and the CISA Known Exploited Vulnerabilities Catalog.
Detection Methods for CVE-2023-23376
Indicators of Compromise
- Creation of unexpected .blf (Base Log File) artifacts in writable user directories such as %TEMP%, %APPDATA%, or C:\Users\Public\.
- Unsigned or unusual processes invoking CLFS APIs (CreateLogFile, AddLogContainer) shortly before a privilege escalation event.
- New SYSTEM-level child processes spawned from medium-integrity parents without a corresponding UAC consent prompt.
Detection Strategies
- Hunt for child processes running as NT AUTHORITY\SYSTEM whose parent process token is a standard user, indicating token theft or kernel exploitation.
- Correlate CLFS driver crashes (CLFS.sys bugchecks in WER or MEMORY.DMP) with prior process activity from non-administrative users.
- Monitor for sequences where commodity loaders (SmokeLoader, Nokoyawa, Cobalt Strike beacons) are followed by lateral movement and credential dumping consistent with SYSTEM access.
Monitoring Recommendations
- Enable Windows kernel auditing for driver load events (Event ID 6) and process creation events (Event ID 4688) with command-line logging.
- Forward endpoint telemetry to a centralized analytics platform and alert on token elevation anomalies and unsigned binary execution in user-writable paths.
- Track the CLFS.sys file version on managed endpoints to confirm patch deployment status across the fleet.
How to Mitigate CVE-2023-23376
Immediate Actions Required
- Apply Microsoft's February 2023 security updates to all affected Windows 10, Windows 11, and Windows Server systems immediately.
- Prioritize patching for systems where users browse the web, open email, or run untrusted software, as these are the most common initial-access vectors paired with this CVE.
- Audit endpoints against the CISA KEV remediation deadline and confirm CLFS.sys reflects the patched build number.
Patch Information
Microsoft addressed CVE-2023-23376 in the February 14, 2023 security release. Refer to the Microsoft Security Update Guide entry for CVE-2023-23376 for the specific KB articles and cumulative updates aligned to each affected Windows build.
Workarounds
- No officially supported workaround exists; patching is the only complete remediation.
- Restrict local logon rights and remove unnecessary administrative accounts to reduce the population of users who can stage exploitation.
- Enforce application allowlisting to block unauthorized binaries from writing .blf files and invoking CLFS APIs from untrusted directories.
# Verify the patched CLFS driver version on a Windows host (PowerShell)
Get-Item C:\Windows\System32\drivers\CLFS.sys |
Select-Object -ExpandProperty VersionInfo |
Format-List ProductVersion, FileVersion, OriginalFilename
# Confirm the February 2023 cumulative update is installed
Get-HotFix | Where-Object { $_.InstalledOn -ge (Get-Date '2023-02-14') } |
Sort-Object InstalledOn -Descending
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.


