mirror of
https://github.com/valitydev/SigmaHQ.git
synced 2024-11-06 17:35:19 +00:00
36 lines
1.1 KiB
YAML
36 lines
1.1 KiB
YAML
title: Office Applications Spawning Wmi Cli
|
|
description: Initial execution of malicious document calls wmic to execute the file with regsvr32
|
|
references:
|
|
- https://thedfirreport.com/2021/03/29/sodinokibi-aka-revil-ransomware/
|
|
- https://github.com/vadim-hunter/Detection-Ideas-Rules/blob/main/Threat%20Intelligence/The%20DFIR%20Report/20210329_Sodinokibi_(aka_REvil)_Ransomware.yaml
|
|
author: "Vadim Khrykov (ThreatIntel), Cyb3rEng (Rule)"
|
|
tags:
|
|
- attack.t1204.002
|
|
- attack.t1047
|
|
- attack.t1218.010
|
|
- attack.execution
|
|
- attack.defence_evasion
|
|
status: experimental
|
|
Date: 2021/23/8
|
|
logsource:
|
|
product: windows
|
|
category: process_creation
|
|
detection:
|
|
#useful_information: Add more office applications to the rule logic of choice
|
|
selection1:
|
|
EventID: 1
|
|
selection2:
|
|
- Image: '\wbem\WMIC.exe'
|
|
- CommandLine: '*wmic *'
|
|
- OriginalFileName: 'wmic.exe'
|
|
- Description: 'WMI Commandline Utility'
|
|
selection3:
|
|
- ParentPrcessName|endswith:
|
|
- winword.exe
|
|
- excel.exe
|
|
- powerpnt.exe
|
|
condition: selection1 AND selection2 AND selection3
|
|
falsepositives:
|
|
- Unknown
|
|
level: high
|