Three Compromises, One Untrusted Measurement Substrate
A stolen CPU core, a hijacked browser session, and a SYSTEM escalation corrupt the same two things: the machine that produced your number and the identity that collected your data.
The escalation with no CVE attached
A public proof-of-concept called Nightmare Eclipse bypasses a Microsoft Defender patch and escalates from any level of access to SYSTEM, per CSO First Look. The disclosure carries no CVE and no affected-version list, and it arrived in the middle of a months-long feud between the researcher and Microsoft. Planning around a coordinated patch timeline is therefore an assumption with nothing behind it.
Map that onto where ML work actually runs. Windows notebooks, training nodes, and ETL workers routinely hold warehouse and feature-store credentials. On those hosts, initial access becomes full node compromise in one step, which means training data, model artifacts, and long-lived service credentials. The controls worth spending time on are the ones that do not wait for a patch: short-TTL scoped credentials, sandbox egress allowlists, artifact integrity checks.
The crawl fleet is the densest session farm in the building
The Chrome DevTools Protocol technique in the available reporting targets a live, already-authenticated Chrome or Edge process on Windows. No password, no MFA prompt, because the session already cleared both. Puppeteer and Playwright nodes are the single densest concentration of CDP plus valid authenticated sessions in a data organization. Browser-authenticated warehouse, registry, and notebook consoles come second.
The detection signals are cheap and specific: a debug port bound to a non-loopback interface, unexpected CDP attach events, session-token reuse from a new device fingerprint. Rotating long-lived scraping cookies to short-TTL scoped tokens is hours of work. Skipping it costs a compromised data-collection identity plus whatever else those sessions can reach.
The regression that was a cryptominer
The Netherlands NCSC reports active exploitation of a macOS Screen Sharing flaw to install Monero miners on internet-exposed Macs. A miner taking cores on a Mac CI runner or an on-prem benchmark box does not show up as a security event. It shows up as unmodeled variance in latency, tokens per second, or step time. The source's illustration is a double-digit inference-latency regression whose nearest available explanation is the quantization change that shipped last Tuesday.
Correlation with a deploy is not evidence the deploy caused it, and a compromised host is the confounder your benchmark harness has never controlled for.
The instrument to add is an idle-CPU baseline per host, sampled before and after each run, with automatic invalidation of any run deviating beyond two standard deviations from that host's profile. It rejects contaminated runs instead of recording them, and it catches ordinary noisy-neighbor effects at no extra cost. Any latency, throughput, or training-step benchmark measured on an internet-exposed macOS host since the Screen Sharing patch date should be quarantined and re-run before it informs a shipping decision.
Where the two sources converge
Both sets of reporting land on the same two controls from opposite directions: credential time-to-live and egress restriction. Neither depends on the unverified statistics circulating in the agent-security coverage, and neither waits on a vendor patch. The thing this reporting does not tell you is prevalence. The source items are truncated, with no IOCs, no CDP detection artifacts, and no driver hashes. That makes this a controls-and-hygiene matter rather than a detection-rule one, and the honest confidence level sits on the mechanism, not the frequency.
What to do
Inventory every headless-browser node in the data-collection stack this week, confirm no remote-debugging port binds to a non-loopback interface, and rotate the fleet's long-lived session cookies to short-TTL scoped tokens.
Quarantine and re-run every latency, throughput, and step-time benchmark taken on internet-exposed macOS hosts since the Screen Sharing patch date, then add an idle-CPU baseline gate that auto-invalidates runs deviating beyond 2σ.
Cap credential TTL on Windows notebook, training, and ETL hosts and enforce sandbox egress allowlists this sprint rather than waiting on a Defender patch cycle.