Right. Two distinct problems, two different threat models. Let me cut through the noise and give you something actionable.
Exchange CVE-2026-42897 — OWA HTTP Routing flaw
Look, the EEMS mitigation dropped May 14 and has an ID of M2.1.x according to Microsoft's TechCommunity announcement. Admins need to verify this mitigation is actually applied and active on-premise. My understanding from the Microsoft advisory is that FIP-FS antimalware scanning was also bypassed (Microsoft notes: "The FIP-FS bypass technique is still being investigated") — so you're potentially looking at detection blind spot + exploitation vector combined, though I need to note this FIP-FS bypass is not yet fully verified.
For air-gapped environments: EEMS obviously won't reach you. You'll need to manually deploy the URL rewrite rule published in the advisory to IIS to block the specific injection pattern. I found no specific air-gapped "regulatory-approved" offline package — it appears to be a manual IIS configuration + service restart.
Re: Migration-to-Exchange-Online — I have no major update here. The Secure Boot cert expiry situation has been ongoing since late 2024, and if you're scrambling to patch Exchange on-premises while also managing SBAT revocations and attestation cert rotations, now is exactly the wrong time to be running critical infrastructure on-prem. The migration calculus hasn't shifted — but your window to stay on-prem safely just narrowed.
MiniPlasma / cldflt.sys SYSTEM privesc
Here's where I get slightly concerned. I found a GitHub PoC for CVE-2025-62221 (temporal memory inconsistency in cldflt.sys). The question of whether this can be safely disabled without breaking functionality is critical.
cLDFLT.sys is the Cloud Files filter driver — it's part of OneDrive and other Microsoft cloud-backed storage. The driver gets loaded when:
- OneDrive client is installed and running
- Windows Cloud Files API is being used (some third-party sync tools)
- Certain enterprise file sync scenarios with cloud-backed shares
If you have OneDrive for Business deployed across your estate, this driver is loaded on most workstations.
Can it be disabled? Technically yes — you could block the driver via Code Integrity or unload it. But here's my concern: dropping a kernel driver that hundreds of user endpoints rely on for file sync? File explorers will hang, sync will stop, and your helpdesk will light up. I would estimate a significant false positive rate on any detection rule targeting this driver without careful baseline establishment. I would not blanket-disable this on production without a test group first — that 24-hour staging window is non-negotiable.
On detection: without a patch, you're in hunting mode. Look for:
- Process creation chains from low-privilege processes spawning SYSTEM shells
- Abnormal handle manipulations to cldflt.sys from non-Windows signed binaries
I need more data on confirmed detection rules — if Lena has IOCs from this campaign, I'll be able to give you higher-fidelity signals.
Priority Matrix:
ExCHANGE CVE-2026-42897 — CRITICAL (do today):
- Verify EEMS mitigation M2.1.x is showing as "Applied" in your Exchange Admin Center
- If air-gapped: manually deploy the IIS URL rewrite rule from the advisory, restart services, test OWA availability
- Test your current EDR coverage — FIP-FS bypass means your antimalware detection may miss this (pending verification)
MiniPlasma cldflt.sys — HIGH (do this week):
- Audit your estate: PowerShell query for
Get-Process | Where-Object {$_.Modules.ExportedFunctions -like "*cldflt*"} or check driver load status (driverquery /v | findstr cldflt)
- For high-value targets without OneDrive dependency: test cldflt.sys disable in staging for 24 hours minimum
- Deploy behavioral detection: monitor for unprivileged-to-SYSTEM elevation via kernel driver exploitation
MEDIUM (schedule):
- Exchange Online migration assessment if your on-prem operational burden is now unsustainable between this CVE and Secure Boot expiry
- Document and rehearse your incident response playbook for kernel driver exploitation — this won't be the last time
Who owns this at 3am? Exchange team for OWA validation, Endpoint team for driver audit, Incident Response for detection rule tuning.
Halil, I need more intel on MiniPlasma context. Lena, do we have confirmed IOCs or a specific actor campaign tied to this cldflt.sys exploitation? Alex, what's the exploit reliability — are we talking stable SYSTEM shell or still developing? The detection rules I can write change dramatically between "reliable exploit seen in the wild" versus "PoC-land."