CVE-2026-2441 Elastic Security · Elastic

Detect CVE-2026-2441: Google Chromium CSS Use-After-Free Exploitation in Elastic Security

Detects exploitation of CVE-2026-2441, a use-after-free vulnerability in the CSS engine of Google Chromium. This vulnerability is actively exploited in the wild (CISA KEV) and can allow remote code execution via a malicious web page. Detection focuses on abnormal Chromium renderer process behavior, suspicious child process spawning, and memory corruption indicators consistent with UAF exploitation.

MITRE ATT&CK

Tactic
Initial Access Execution Defense Evasion

Elastic Detection Query

Elastic Security (Elastic)
eql
sequence by host.name with maxspan=30s
  [process where event.type == "start"
    and (process.parent.name : ("chrome.exe", "chromium", "chrome") or process.parent.executable : ("*chrome*", "*chromium*"))
    and process.parent.args : "--type=renderer"
    and process.name : ("cmd.exe", "powershell.exe", "wscript.exe", "cscript.exe", "mshta.exe", "rundll32.exe", "regsvr32.exe", "certutil.exe", "bitsadmin.exe", "schtasks.exe")
  ]
  [network where event.type == "connection"
    and process.name : ("cmd.exe", "powershell.exe", "rundll32.exe")
    and not destination.ip : ("127.0.0.1", "::1", "10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16")
  ]
critical severity high confidence

EQL sequence rule correlating a Chromium renderer spawning a suspicious process followed by an outbound network connection from that process, indicating successful exploitation and potential C2 callback.

Data Sources

Elastic Endpoint SecurityAuditbeatWinlogbeat with Sysmon

Required Tables

logs-endpoint.events.process-*logs-endpoint.events.network-*

False Positives & Tuning

  • Enterprise proxy tools that legitimately intercept Chrome network calls
  • Automated testing frameworks (Selenium, Playwright) that control Chrome subprocess behavior
  • Non-standard Chromium forks used in kiosk or embedded environments

Other platforms for CVE-2026-2441


Testing Methodology

Validate this detection against 4 adversary techniques from Atomic Red Team. Each test below lists the behaviour to exercise and the telemetry you should expect to see. Executable commands and cleanup steps are available with Pro.

  1. Test 1Simulate Chromium Renderer Spawning cmd.exe

    Expected signal: Sysmon Event ID 1 showing chrome.exe (with --type=renderer in command line) as ParentImage for cmd.exe process creation. DeviceProcessEvents in MDE will show the renderer→cmd.exe lineage.

  2. Test 2Chromium Renderer Spawning PowerShell with Network Callback

    Expected signal: Sysmon Event ID 1 (process create: powershell under chrome renderer), Sysmon Event ID 3 (network connection from powershell to 127.0.0.1:8080). Elastic EQL sequence rule should correlate both events.

  3. Test 3Validate Unpatched Chrome Version Detection via Asset Inventory

    Expected signal: Registry query results showing Chrome version strings per host. CrowdStrike RTR or MDE LiveResponse will log the query execution.

  4. Test 4CSS Object Lifecycle Stress Test for UAF Trigger Research

    Expected signal: On a vulnerable build: renderer process crashes (SIGSEGV or similar) visible in /var/log/syslog or Chromium crash reports under ~/.config/chromium/Crash Reports/. On a patched build: no crash, normal page operation.

Unlock Pro Content

Get the full detection package for CVE-2026-2441 including response playbook, investigation guide, and atomic red team tests.

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections