T1518.001 CrowdStrike LogScale · LogScale

Detect Security Software Discovery in CrowdStrike LogScale

Adversaries enumerate installed security software, defensive tools, and monitoring agents prior to executing payloads or deploying evasion techniques. By identifying what endpoint protection, EDR, firewalls, and cloud monitoring agents are present, adversaries can determine whether to proceed with infection, disable specific defenses, or select evasion techniques tailored to the detected product. Common methods include WMI queries to the SecurityCenter2 namespace (enumerating AntiVirusProduct, FirewallProduct, AntiSpywareProduct classes), PowerShell Get-WmiObject/Get-CimInstance targeting security product WMI classes, tasklist and WMIC process enumeration filtered to known AV/EDR binary names, and registry inspection of installed software keys for security vendor paths. Threat actors including Darkhotel, Clop, QakBot, Raspberry Robin, TONESHELL (Mustang Panda), and Sidewinder are documented performing this technique in the wild.

MITRE ATT&CK

Tactic
Discovery
Technique
T1518 Software Discovery
Sub-technique
T1518.001 Security Software Discovery
Canonical reference
https://attack.mitre.org/techniques/T1518/001/

LogScale Detection Query

CrowdStrike LogScale (LogScale)
cql
#event_simpleName = "ProcessRollup2"
| ImageFileName = /\\(wmic|powershell|pwsh|tasklist|reg)\.exe$/i
| CommandLine = /(SecurityCenter|AntiVirusProduct|AntiSpywareProduct|FirewallProduct|Get-WmiObject|Get-CimInstance|gwmi|gcim|ekrn|egui|msmpeng|mbam|csagent|falconhost|sentinelagent|cbdaemon|cylancesvc|xagt|avgnt|avp\.exe|bdservicehost|sophossps|WinDefend|Windows Defender|ESET|Kaspersky|CrowdStrike|SentinelOne|Carbon Black|Symantec|McAfee|Sophos|Bitdefender|Malwarebytes)/i
| case {
    ImageFileName = /wmic\.exe/i AND CommandLine = /SecurityCenter/i | DetectionSource := "WMI_SecurityCenter2" | RiskScore := 80;
    ImageFileName = /wmic\.exe/i AND CommandLine = /(AntiVirusProduct|AntiSpywareProduct|FirewallProduct)/i | DetectionSource := "WMI_SecurityCenter2" | RiskScore := 80;
    ImageFileName = /(powershell|pwsh)\.exe/i AND CommandLine = /(SecurityCenter|AntiVirusProduct|AntiSpywareProduct|FirewallProduct)/i | DetectionSource := "PS_WMI_SecurityCenter2" | RiskScore := 75;
    ImageFileName = /tasklist\.exe/i | DetectionSource := "Process_Enum_AV" | RiskScore := 60;
    ImageFileName = /reg\.exe/i AND CommandLine = /query/i | DetectionSource := "Registry_AV_Query" | RiskScore := 65;
    * | DetectionSource := "Other" | RiskScore := 50;
  }
| table([@timestamp, ComputerName, UserName, ImageFileName, CommandLine, ParentBaseFileName, DetectionSource, RiskScore])
| sort(RiskScore, order=desc)
medium severity high confidence

CrowdStrike LogScale CQL query detecting security software discovery using Falcon ProcessRollup2 events. Identifies command-line patterns for WMI SecurityCenter2 enumeration via wmic.exe, PowerShell security class queries, tasklist enumeration of known AV/EDR process names, and reg.exe queries targeting security vendor registry paths.

Data Sources

CrowdStrike Falcon Endpoint ProtectionFalcon ProcessRollup2 telemetry

Required Tables

ProcessRollup2

False Positives & Tuning

  • Falcon sensor self-diagnostic or health-check routines that may inspect co-installed security products for compatibility verification during updates
  • Managed detection and response (MDR) scripts executed during investigation workflows that query installed security tools to assess endpoint defense posture
  • Software packaging or deployment automation that checks for conflicting security products before installing a new EDR agent to prevent multi-agent conflicts
Download portable Sigma rule (.yml)

Other platforms for T1518.001


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 1WMI SecurityCenter2 AV Enumeration via WMIC

    Expected signal: Sysmon Event ID 1: Process Create with Image=wmic.exe, CommandLine containing 'SecurityCenter2' and 'AntiVirusProduct'. Security Event ID 4688 (if command line auditing enabled). Microsoft-Windows-WMI-Activity/Operational Event ID 5857 for SecurityCenter2 provider load.

  2. Test 2PowerShell Get-WmiObject AntiVirusProduct Enumeration

    Expected signal: Sysmon Event ID 1: Process Create with Image=powershell.exe, CommandLine containing 'SecurityCenter2' and 'AntiVirusProduct'. PowerShell ScriptBlock Log Event ID 4104 capturing the full Get-WmiObject command. No network connection expected.

  3. Test 3Tasklist Process Enumeration for AV Binary Names

    Expected signal: Multiple Sysmon Event ID 1 entries for tasklist.exe, each with CommandLine containing the respective AV binary name filter. Security Event ID 4688 entries if command line auditing is enabled. No file or network events expected.

  4. Test 4Registry Query for Installed Security Software

    Expected signal: Multiple Sysmon Event ID 1 entries for reg.exe with CommandLine containing 'query' and the respective vendor path. Security Event ID 4688 if command line auditing enabled. Registry queries will return data on installed products or 'ERROR: The system was unable to find the specified registry key or value' for absent products.

Unlock Pro Content

Get the full detection package for T1518.001 including response playbook, investigation guide, and atomic red team tests.

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections