WMI Reconnaissance (RedCanary Threat Detection Report)

Detects the wmic reconnaissance activity. Part of the RedCanary 2023 Threat Detection Report.

Sigma rule (View on GitHub)

 1title: WMI Reconnaissance (RedCanary Threat Detection Report)
 2id: 4f2f005d-8755-4ff8-9086-179fc632a850
 3status: experimental
 4description: Detects the wmic reconnaissance 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:
19            - '\ldap'
20            - 'ntdomain'
21    condition: selection
22falsepositives:
23    - Unknown.
24level: low```

References

Related rules

to-top