WMI Shadow Copy Deletion (RedCanary Threat Detection Report)

Detects wmic shadow copy deletion activity. Part of the RedCanary 2023 Threat Detection Report.

Sigma rule (View on GitHub)

 1title: WMI Shadow Copy Deletion (RedCanary Threat Detection Report)
 2id: 31b52a76-ef7a-40dd-8bb1-9c1671f04d0a
 3status: experimental
 4description: Detects wmic shadow copy deletion activity. Part of the RedCanary 2023 Threat Detection Report.
 5references:
 6    - https://redcanary.com/threat-detection-report/techniques/windows-management-instrumentation/
 7author: RedCanary, Sigma formatting by Micah Babinski
 8date: 2023/05/10
 9tags:
10    - attack.execution
11    - attack.t1047
12logsource:
13    category: process_creation
14    product: windows
15detection:
16    selection:
17        Image|endswith: '\wmic.exe'
18        CommandLine|contains|all:
19            - 'shadowcopy'
20            - 'delete'
21    condition: selection
22falsepositives:
23    - Unknown.
24level: low```

References

Related rules

to-top