On May 12, 2026, Microsoft disclosed CVE-2026-35418, a serious elevation-of-privilege vulnerability that affects the Windows Cloud Files Mini Filter Driver. The flaw, which received an \"Important\" severity rating from Microsoft, could allow an authenticated attacker to gain SYSTEM-level privileges on a vulnerable machine. Microsoft has released security updates as part of its monthly Patch Tuesday release to address the issue across all supported Windows and Windows Server versions.
The Cloud Files Mini Filter Driver—cldflt.sys—is a kernel-mode component that enables placeholder file functionality for cloud storage providers like OneDrive, Google Drive, and Dropbox. These services rely on the driver to manage files that are stored online but appear as if they are present locally. Any vulnerability in this driver has broad implications because it runs silently on nearly every Windows 10 and Windows 11 system, as well as on Windows Server 2019 and later.
What Is CVE-2026-35418?
According to Microsoft’s Security Update Guide, CVE-2026-35418 stems from improper handling of certain file operations within the mini filter driver. An attacker who has already obtained code execution on a target system—perhaps through phishing or another exploit—could leverage this vulnerability to elevate their privileges from a standard user to SYSTEM. From there, the attacker could disable security controls, install persistent malware, access sensitive data, or move laterally across the network.
Technical specifics remain sparse, as Microsoft and its partners have not released a detailed write-up. However, elevation-of-privilege bugs in kernel-mode drivers are often the result of race conditions, double-fetch issues, or improper validation of user-supplied buffers. In the case of cloud files, a possible scenario involves a crafted reparse point or oplock manipulation that tricks the driver into performing an operation with kernel privileges on behalf of the attacker.
Cloud files placeholders work by presenting a stub file that looks real but whose content resides in cloud storage. When an application or the user accesses the file, the mini filter driver intercepts the I/O request and hydrates the file. This complex interaction between user-mode and kernel-mode components creates an attack surface. A flaw could arise if the driver incorrectly validates a file path or access mask during hydration, allowing a low-privilege caller to hijack a privileged operation.
Security researcher Jane Lowry, who frequently analyzes Windows kernel bugs, explained on Twitter that such flaws often require local access but are highly valuable in post-exploitation scenarios. “Combine this with a remote code execution bug and you have a full system compromise,” she noted. While Microsoft has not reported active exploitation in the wild, the vulnerability’s nature makes it a prime candidate for integration into exploit kits and ransomware attacks.
Affected Systems and Attack Surface
Every supported edition of Windows 10, Windows 11, and Windows Server with the cloud files mini filter installed is vulnerable. Because the driver is loaded by default in most installations—even if no third-party cloud sync client is in use—the attack surface is extensive. Microsoft rates the vulnerability as “Important,” not “Critical,” because it requires the attacker to already have a foothold on the system. Still, that prerequisite is often easily met in targeted attacks through social engineering or by exploiting other vulnerabilities.
Large enterprises face the greatest risk because their users routinely run cloud storage apps that rely on cldflt.sys. Moreover, admin accounts are not required for exploitation; a low-privileged domain user could escalate to SYSTEM and then move to domain controllers. In managed environments, defenders should count this flaw among the most pressing vulnerabilities of the month.
For reference, here are the Windows versions known to load cldflt.sys and thus potentially affected:
- Windows 11 (all editions and versions)
- Windows 10 version 20H2 and later (including Enterprise, Pro, Education, and IoT)
- Windows Server 2022, 2019, and their respective Server Core installations
The Patch and How to Deploy It
Microsoft incorporated the fix for CVE-2026-35418 in the May 2026 cumulative updates. The company has not released an out-of-band patch, which suggests coordinated disclosure and confidence that the updates can be deployed through normal channels. Administrators should install the latest rollup immediately:
- Windows 11 (all editions): install the May 2026 cumulative update.
- Windows 10 (version 20H2 and later): apply the corresponding security-only or monthly rollup.
- Windows Server 2022, 2019: same updating guidance.
Microsoft does not offer a specific workaround, such as disabling the Cloud Files Mini Filter Driver. While technically possible, doing so would break core functionality in OneDrive and other sync clients, potentially disrupting business workflows. Therefore, patching remains the only reliable mitigation.
For organizations using third-party patch management solutions, it may take an extra day or two for the updates to appear. In the interim, security teams can monitor for suspicious behavior related to privilege escalation—unusual process creation with SYSTEM integrity, unexpected driver interaction, or abnormal cloud file placeholder activity. Enable attack surface reduction rules in Microsoft Defender for Endpoint if they are not already active.
Administrators can verify patch application by checking the version of cldflt.sys. The updated driver file will have a version number that corresponds to the one listed in the security bulletin. Run the following PowerShell command to review:
Get-Item C:\\Windows\\System32\\drivers\\cldflt.sys | Select-Object -ExpandProperty VersionInfo
Testing and Deployment Challenges
Although most organizations will deploy these patches without incident, compatibility issues can arise in environments with legacy applications that also use mini filter drivers. Some early reports on WindowsForum indicate that backup agents from certain vendors temporarily failed to load after the update, requiring a reboot or service restart. Before rolling out the patch broadly, test it on a representative sample of systems that include your full software stack.
Use Microsoft’s Update Compliance tools to track patch rollout progress. Aim for a 100% deployment within 72 hours for critical servers and 7 days for endpoints. The WUfB (Windows Update for Business) deployment rings can expedite uptake while managing risk.
Broader Implications for Cloud Storage Security
CVE-2026-35418 highlights a persistent challenge in modern operating systems: the tension between convenience and security. Cloud files integration into the file system requires deep kernel interactions, and any coding mistake in that low-level code can have severe consequences. As more enterprises adopt cloud-first strategies, the reliance on such mini filter drivers only increases.
Microsoft has invested heavily in offloading functionality to user mode where possible (e.g., Project Volterra, the User Mode Driver Framework), but some legacy and performance-critical components remain in kernel space. This vulnerability serves as a reminder that kernel-mode drivers must be subjected to rigorous fuzzing and static analysis. In recent years, Microsoft has responded by expanding its bug bounty programs and integrating the Windows Insider preview program for early driver feedback. Yet kernel EoP flaws continue to surface regularly.
Looking ahead, the industry might see a push toward isolating file system operations in more constrained execution environments, such as virtual security modes. For now, IT administrators should audit which mini filter drivers are loading on their endpoints and remove any that are unnecessary. Every running kernel driver increases the system’s exposure. A tool like Sysinternals FLTMC can enumerate and control filter drivers; use it to verify that only expected drivers are active.
Historical Context: Kernel Elevation-of-Privilege Vulnerabilities
This is far from the first kernel EoP in a Windows driver. Over the past decade, vulnerabilities in Win32k, font drivers, and storage drivers have been exploited by advanced threat actors. For example, CVE-2021-1732 (a win32k EoP) was actively exploited before being patched. CVE-2023-28252, a CLFS driver bug, saw similar in-the-wild use. These patterns indicate that attackers place a high premium on kernel-level access once they’ve broken through user-mode defenses.
The Cloud Files Mini Filter Driver specifically has been under scrutiny since its introduction. In 2022, a researcher demonstrated how placeholder file handling could be abused for privilege escalation in certain edge cases, though Microsoft classified that finding as a defense-in-depth improvement rather than an exploitable vulnerability. CVE-2026-35418 appears to be a distinct issue that warrants immediate attention.
What Security Teams Should Do Next
- Patch immediately. Deploy May 2026 security updates across all Windows endpoints and servers. If using WSUS or Configuration Manager, approve the updates and force a compliance check. For air-gapped systems, download the standalone packages from the Microsoft Update Catalog.
- Audit driver inventory. Run
fltmc instanceson a sample of machines to verify that cldflt.sys is the only cloud files filter. Look for any rogue drivers that may have been loaded. Integrity checks (PowerShell’sGet-FileHashagainst known good values) can detect tampered driver files. - Harden privilege boundaries. Apply the principle of least privilege to user accounts. Even without this EoP, a standard user account limits an attacker’s initial abilities. Combine that with network segmentation to contain a potential breach.
- Monitor for IoCs. At the time of writing, no public proof-of-concept exists for CVE-2026-35418. However, detection engineers can write Sigma rules that flag anomalous cloud file operations or unexpected SYSTEM-level token usage. Microsoft Defender Antivirus and Microsoft Defender for Endpoint may later include dedicated detection logic; ensure cloud-delivered protection is enabled.
- Review third-party sync clients. Because the vulnerability lies in a Microsoft driver, it affects all clients that depend on it. However, some third-party cloud storage applications install their own mini filter drivers. Check whether any of those have known vulnerabilities or are no longer maintained. Consolidate on a well-supported solution to minimize the attack surface.
Industry Response and Future Outlook
The security community’s reaction to CVE-2026-35418 has been measured but concerned. Forums like WindowsForum.com saw administrators sharing patch deployment experiences, with most reporting smooth updates. A few noted brief incompatibilities with older versions of enterprise backup tools that also use mini filter drivers, but these were resolved by restarting the affected services.
Microsoft’s Security Response Center (MSRC) has not indicated whether the vulnerability was reported externally or found internally. Given the coordinated Patch Tuesday release, it’s likely the issue was responsibly disclosed. There is no evidence of a zero-day exploit chain using this flaw yet, but history shows that weaponization often follows public disclosure. The window between patch release and attack attempts is shrinking: it once was weeks, then days, and now sometimes hours. In May 2026, defenders can assume that exploits could be available within a week.
To stay ahead, organizations should sign up for Microsoft’s security notifications (via the API or RSS feeds) and integrate them into their threat intelligence platforms. Automating the correlation between CVEs and internal asset inventories can slash remediation time by 80% or more. If you’re not already using a solution like Microsoft Defender Vulnerability Management, now is the time to evaluate one.
Ultimately, CVE-2026-35418 will not be the last kernel EoP vulnerability. The combination of legacy code, evolving cloud storage features, and a complex driver model guarantees a steady stream of such flaws. What will evolve is how quickly we detect and patch them—and how resilient our architectures become when a single driver bug is no longer a path to total system compromise.
Immediate patch application is the most critical action. Delaying exposes your entire Windows fleet to a high-probability, high-impact attack vector. In a world where ransomware gangs and nation-state actors actively seek privilege escalation tools, this vulnerability is a gift if left unaddressed.