CVE-2026-21509 CrowdStrike LogScale · LogScale

Detect Microsoft Office Security Feature Bypass (CVE-2026-21509) in CrowdStrike LogScale

Detects exploitation of CVE-2026-21509, a security feature bypass vulnerability in Microsoft Office classified under CWE-807 (Reliance on Untrusted Inputs in a Security Decision). This vulnerability is actively exploited in the wild (CISA KEV) and allows attackers to bypass security controls within Office applications, potentially enabling malicious document execution without expected security warnings or Protected View enforcement.

MITRE ATT&CK

Tactic
Initial Access Defense Evasion

LogScale Detection Query

CrowdStrike LogScale (LogScale)
cql
event_simpleName=ProcessRollup2
| search ParentBaseFileName IN ("WINWORD.EXE", "EXCEL.EXE", "POWERPNT.EXE", "OUTLOOK.EXE", "MSPUB.EXE", "ONENOTE.EXE")
| search FileName IN ("cmd.exe", "powershell.exe", "wscript.exe", "cscript.exe", "mshta.exe", "rundll32.exe", "regsvr32.exe", "certutil.exe", "bitsadmin.exe")
| eval cve="CVE-2026-21509"
| eval technique="Office Security Feature Bypass"
| eval risk_score=case(
    FileName IN ("powershell.exe", "mshta.exe", "wscript.exe", "cscript.exe"), 85,
    FileName IN ("cmd.exe", "rundll32.exe", "regsvr32.exe"), 75,
    true(), 65
  )
| table timestamp, ComputerName, UserName, ParentBaseFileName, FileName, CommandLine, ParentCommandLine, cve, technique, risk_score
| sort -timestamp
high severity medium confidence

CrowdStrike Falcon query detecting Microsoft Office spawning suspicious child processes, indicating potential CVE-2026-21509 security feature bypass exploitation activity.

Data Sources

CrowdStrike Falcon EDRCrowdStrike Process Telemetry

Required Tables

ProcessRollup2

False Positives & Tuning

  • Enterprise Office macro automation that legitimately invokes scripting engines
  • Falcon-whitelisted IT management tools using Office and PowerShell together
  • Software packaging workflows testing Office-integrated deployment scripts
  • Security assessment tools performing Office document analysis via CLI

Other platforms for CVE-2026-21509


Testing Methodology

Validate this detection against 3 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 1Office Protected View Bypass via Registry Modification

    Expected signal: Registry write events (Sysmon EventID 13) targeting HKCU\Software\Microsoft\Office\16.0\Word\Security with values DisableProtectedView and VBAWarnings modified

  2. Test 2Office Spawning PowerShell Child Process

    Expected signal: Sysmon EventID 1 / Windows EventID 4688 showing WINWORD.EXE as ParentImage and powershell.exe as child Image with encoded or suspicious command-line arguments

  3. Test 3Office Dropping Executable to Temp Directory

    Expected signal: Sysmon EventID 11 (FileCreate) showing an .exe file written to %TEMP% by an Office-related initiating process; DeviceFileEvents in MDE with InitiatingProcessFileName matching an Office executable

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections