Important CVSS 7 EPSS 0.0018 🔬 Patch diffed 2026-04 archive

Executive Summary

Concurrent execution using shared resource with improper synchronization ('race condition') in Windows Cloud Files Mini Filter Driver allows an authorized attacker to elevate privileges locally.

Overview

7
CVSS HIGH
Important
MS Severity
Not Exploited
MS Exploit Status
Less Likely
MS Exploit Likelihood
Category Elevation of Privilege
Released Apr 14 2026
Last Updated Apr 14 2026
Publicly Disclosed No
CISA KEV Not Listed
Known Exploits None Known
EPSS Score 0.0018 — 0.07738 percentile
NVD CVSS 7 HIGH — matches MSRC

CVSS Vector

CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H/E:U/RL:O/RC:C
ATTACK VECTOR
Local
ATTACK COMPLEXITY
High
PRIVILEGES REQUIRED
Low
USER INTERACTION
None
SCOPE
Unchanged
CONFIDENTIALITY
High
INTEGRITY
High
AVAILABILITY
High
EXPLOIT CODE MATURITY
Unproven
REMEDIATION LEVEL
Official Fix
REPORT CONFIDENCE
Confirmed
Temporal Score: 6.1

EPSS Score

0.0018
probability of exploitation in the next 30 days
0.07738 percentile - updated 2026-08-14
View on FIRST.org

Affected Products

23 affected products
Product KB Article Severity Impact Restart Required
Windows 10 Version 1809 for 32-bit Systems 5082123 (Security Update) Important Elevation of Privilege Yes
Windows 10 Version 1809 for x64-based Systems 5082123 (Security Update) Important Elevation of Privilege Yes
Windows 10 Version 21H2 for 32-bit Systems 5082200 (Security Update) Important Elevation of Privilege Yes
Windows 10 Version 21H2 for ARM64-based Systems 5082200 (Security Update) Important Elevation of Privilege Yes
Windows 10 Version 21H2 for x64-based Systems 5082200 (Security Update) Important Elevation of Privilege Yes
Windows 10 Version 22H2 for 32-bit Systems 5082200 (Security Update) Important Elevation of Privilege Yes
Windows 10 Version 22H2 for ARM64-based Systems 5082200 (Security Update) Important Elevation of Privilege Yes
Windows 10 Version 22H2 for x64-based Systems 5082200 (Security Update) Important Elevation of Privilege Yes
Windows 11 Version 23H2 for ARM64-based Systems 5082052 (Security Update) Important Elevation of Privilege Yes
Windows 11 Version 23H2 for x64-based Systems 5082052 (Security Update) Important Elevation of Privilege Yes
Windows 11 Version 24H2 for ARM64-based Systems 5083769 (Security Update) Important Elevation of Privilege Yes
Windows 11 Version 24H2 for x64-based Systems 5083769 (Security Update) Important Elevation of Privilege Yes
Windows 11 Version 25H2 for ARM64-based Systems 5083769 (Security Update) Important Elevation of Privilege Yes
Windows 11 Version 25H2 for x64-based Systems 5083769 (Security Update) Important Elevation of Privilege Yes
Windows 11 Version 26H1 for ARM64-based Systems 5083768 (Security Update) Important Elevation of Privilege Yes
Windows 11 version 26H1 for x64-based Systems 5083768 (Security Update) Important Elevation of Privilege Yes
Windows Server 2019 5082123 (Security Update) Important Elevation of Privilege Yes
Windows Server 2019 (Server Core installation) 5082123 (Security Update) Important Elevation of Privilege Yes
Windows Server 2022 5082142 (Security Update) Important Elevation of Privilege Yes
Windows Server 2022 (Server Core installation) 5082142 (Security Update) Important Elevation of Privilege Yes
Windows Server 2022, 23H2 Edition (Server Core installation) 5082060 (Security Update) Important Elevation of Privilege Yes
Windows Server 2025 5082063 (Security Update) Important Elevation of Privilege Yes
Windows Server 2025 (Server Core installation) 5082063 (Security Update) Important Elevation of Privilege Yes

Patches

8 patches
Article Type Restart
5082123 Security Update Yes
5082200 Security Update Yes
5082052 Security Update Yes
5083769 Security Update Yes
5083768 Security Update Yes
5082142 Security Update Yes
5082060 Security Update Yes
5082063 Security Update Yes

Patch Diff

ghidriff · cldflt.sys (KB5083769)

Race condition (CWE-362) leading to use-after-free (CWE-416) in the Windows Cloud Files minifilter cldflt.sys sync-root lifecycle, local EoP to SYSTEM (AC:H race). cldflt.sys (Cloud Files / OneDrive on-demand) tracks per-volume 'sync root' objects in a Unicode prefix table; CldSyncGetRootInfo / HsmiCldGetSyncRootInfoByFileObject look a sync root up and read its info while CldSyncCleanup / CldiPortNotifyDisconnect remove/free it. PRE: sync-root lookup/info-read was not synchronized against cleanup, so a concurrent CldSyncCleanup could remove the root from the prefix table and free it while another thread was still using it - a race yielding a use-after-free of the sync-root object. Because cldflt runs in the kernel and the sync operations are reachable by a local user, winning the race (AC:H) is a local EoP-to-SYSTEM primitive. Diff of cldflt.sys 10.0.26100.8115 -> .8246 (Apr 14 2026, KB5083769) confirms the fix: gated behind CFR flag Feature_1074201912, CldSyncCleanup now acquires an Flt push lock (FltAcquirePushLockExclusiveEx) around the prefix-table removal (RtlRemoveUnicodePrefix), and CldSyncGetRootInfo takes rundown protection and a reference on the root (CldiSyncReferenceRoot / ExReleaseRundownProtection on root+0x58) before using it - so the root cannot be freed while in use, closing the race/UAF.

Pre-patch version 10.0.26100.8115 Download
Post-patch version 10.0.26100.8246 Download
Function Address Change Note
CldSyncCleanup code change code (prefix-table removal under push lock, CFR-gated) Post (Feature_1074201912): FltAcquirePushLockExclusiveEx(&lock) around RtlRemoveUnicodePrefix(root prefix) / RtlNextUnicodePrefix, then FltReleasePushLockEx - serializing sync-root removal against lookups.
CldSyncGetRootInfo code change code (reference + rundown protection before use) Post: CldiSyncReferenceRoot(root) + rundown protection (ExReleaseRundownProtection on root+0x58) taken before reading root info, so the root can't be freed mid-use.
HsmiCldGetSyncRootInfoByFileObject / CldSyncConnectRoot / CldiPortNotifyDisconnect / CldSyncGetSyncProviderProcessId code change code (sync-root access serialized) Related sync-root lookup/connect/disconnect paths updated under the same gate to use the lock/reference discipline.
Feature_1074201912 gate added (CFR gate) CFR flag gating the push-lock + rundown-reference synchronization; the original unsynchronized path still ships when disabled.
View full diff report View RCA report

Attack Path

A Cloud Files sync root is cleaned up/freed while another thread reads its info, causing a UAF

Attack path for CVE-2026-27926 A Cloud Files sync root is cleaned up/freed while another thread reads its info, causing a UAF 01 — ENTRY Local user drives Cloud Files sync operations cldflt.sys CldSyncGetRootInfo / HsmiCldGetSyncRootInfoByFileObject look up a sync root in the prefix table. AV:L/PR:L/AC:H (race). 02 — CONTROLLED INPUT Races a sync-root info read against cleanup/disconnect CldSyncCleanup / CldiPortNotifyDisconnect remove and free the sync root concurrently. 03 — MISSING CHECK Lookup/read unsynchronized against removal (CWE-362 -> CWE-416) The root is removed from the prefix table and freed while another thread still uses it -> use-after-free. 04 — PATH Freed sync-root object is dereferenced in the kernel Controlling the freed/reused allocation influences kernel state. 05 — PRIMITIVE Use-after-free in the Cloud Files minifilter -> EoP to SYSTEM The Apr 2026 fix (Feature_1074201912) serializes cleanup with a push lock and takes rundown/reference protection on the root before use.

Derived from the patch delta: the checks added by the vendor identify which fields crossed a trust boundary unvalidated. Reachability and privilege are taken from the call chain in the RCA report.

Exploits & PoC

Detection Rules

Acknowledgments