T1518.002 CrowdStrike LogScale · LogScale

Detect Backup Software Discovery in CrowdStrike LogScale

Adversaries may attempt to get a listing of backup software or configurations installed on a system. This discovery technique is commonly performed as pre-ransomware reconnaissance to identify backup solutions (Veeam, Acronis, Backup Exec, Commvault, Windows Server Backup) so attackers can disable, destroy, or encrypt them before deploying ransomware payloads. Methods include registry queries (reg query), process enumeration (tasklist, wmic), service enumeration (sc query, net start), directory listings, and PowerShell-based enumeration scripts such as the Get-DataInfo.ps1 script used by Wizard Spider (FIN12).

MITRE ATT&CK

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

LogScale Detection Query

CrowdStrike LogScale (LogScale)
cql
#event_simpleName=ProcessRollup2
| FileName = /(?i)(reg|sc|net|net1|wmic|powershell|pwsh|tasklist|cmd)\.exe$/i
| CommandLine = /(?i)(veeam|acronis|commvault|arcserve|paragon|cobian|backupassist|carbonite|backblaze|crashplan|barracuda|datto|zerto|veritas|wbadmin|ntbackup|backup exec|simpana)/i
| case {
    FileName = /(?i)reg\.exe$/i
      | CommandLine = /(?i)query/i
      | DiscoveryMethod := "Registry Query" ;
    FileName = /(?i)sc\.exe$/i
      | CommandLine = /(?i)query/i
      | DiscoveryMethod := "Service Control Query" ;
    FileName = /(?i)net1?\.exe$/i
      | CommandLine = /(?i)start/i
      | DiscoveryMethod := "Net Service Enumeration" ;
    FileName = /(?i)wmic\.exe$/i
      | CommandLine = /(?i)(product|process|service)/i
      | DiscoveryMethod := "WMI Query" ;
    FileName = /(?i)(powershell|pwsh)\.exe$/i
      | CommandLine = /(?i)(get-datainfo|get-service|get-itemproperty|get-wmiobject|get-ciminstance)/i
      | DiscoveryMethod := "PowerShell Enumeration" ;
    FileName = /(?i)tasklist\.exe$/i
      | DiscoveryMethod := "Process List Enumeration" ;
    FileName = /(?i)cmd\.exe$/i
      | CommandLine = /(?i)\bdir\b/i
      | DiscoveryMethod := "Directory Listing" ;
    * | DiscoveryMethod := "Other"
  }
| DiscoveryMethod != "Other"
| table([timestamp, ComputerName, UserName, FileName, CommandLine, ParentBaseFileName, ParentCommandLine, DiscoveryMethod])
| sort(timestamp, order=desc)
high severity high confidence

Detects backup software discovery (T1518.002) in CrowdStrike Falcon using LogScale CQL against ProcessRollup2 telemetry. Filters process execution events where the image name matches known enumeration tools and the command line references backup software product names. Uses a case expression to classify the discovery method and drops non-matching branches, providing direct analyst context. The ParentBaseFileName and ParentCommandLine fields help identify script interpreters or lateral movement tools invoking enumeration commands.

Data Sources

CrowdStrike Falcon EDR (ProcessRollup2 events)Falcon Data Replicator (FDR)Humio/LogScale with Falcon telemetry

Required Tables

ProcessRollup2 event stream (#event_simpleName=ProcessRollup2)

False Positives & Tuning

  • Backup software installation or upgrade processes that run sc.exe or reg.exe queries against their own registry keys and services as part of pre-flight checks
  • Help desk and remote support tools executing tasklist or wmic queries to diagnose backup agent connectivity issues on end-user systems
  • Penetration testing or red team exercises using documented TTPs such as Get-DataInfo.ps1 or wmic product enumeration in authorized assessment scopes
Download portable Sigma rule (.yml)

Other platforms for T1518.002


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 1Registry Query for Veeam and Acronis Backup Software

    Expected signal: Sysmon Event ID 1: Four Process Create events with Image=reg.exe, CommandLine containing 'query' and 'Veeam' or 'Acronis'. Security Event ID 4688 (if command line auditing is enabled) with same details. If registry Object Access auditing is enabled, Event ID 4663 fires for each registry key read attempt.

  2. Test 2PowerShell WMI Backup Software Enumeration via Win32_Product

    Expected signal: Sysmon Event ID 1: Two Process Create events with Image=powershell.exe, CommandLine containing 'Get-WmiObject' and 'Win32_Product' with backup-related filter terms, and 'Get-Service' with backup terms. PowerShell ScriptBlock Log Event ID 4104 with full script content. WMI activity logged in Microsoft-Windows-WMI-Activity/Operational.

  3. Test 3Service Control Enumeration of Backup Services

    Expected signal: Sysmon Event ID 1: Six Process Create events with Image=sc.exe and CommandLine containing 'query' followed by the backup service name. Security Event ID 4688 for each sc.exe execution if command line auditing is enabled. Note: service status queries do not require elevated privileges and will run as standard user.

  4. Test 4Tasklist and Net Start Backup Process Discovery

    Expected signal: Sysmon Event ID 1: Process Create events for tasklist.exe and net.exe (or net1.exe), with findstr.exe child processes containing backup-related search terms in command line. Security Event ID 4688 for each process if command line auditing enabled.

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections