Files
hayabusa/rules/sigma/process_creation/win_wmi_spwns_powershell.yml
DustInDark 0cfa806baf Feature/addruletype to sigma rule#230 (#235)
* added ruletype to SIGMA rule #230

* added ruletype to SIGMA rule converter tool #231
2021-11-28 18:14:51 +09:00

41 lines
1.0 KiB
YAML

title: WMI Spawning Windows PowerShell
author: Markus Neis / @Karneades
date: 2019/04/03
description: Detects WMI spawning PowerShell
detection:
SELECTION_1:
EventID: 1
SELECTION_2:
ParentImage:
- '*\wmiprvse.exe'
SELECTION_3:
Image:
- '*\powershell.exe'
SELECTION_4:
CommandLine: 'null'
SELECTION_5:
CommandLine|re: ^$
condition: (SELECTION_1 and ((SELECTION_2 and SELECTION_3) and not (SELECTION_4))
and not (SELECTION_5))
falsepositives:
- AppvClient
- CCM
id: 692f0bec-83ba-4d04-af7e-e884a96059b6
level: high
logsource:
category: process_creation
product: windows
modified: 2021/02/24
references:
- https://github.com/Neo23x0/sigma/blob/master/rules/windows/process_creation/win_shell_spawn_susp_program.yml
- https://any.run/report/68bc255f9b0db6a0d30a8f2dadfbee3256acfe12497bf93943bc1eab0735e45e/a2385d6f-34f7-403c-90d3-b1f9d2a90a5e
status: experimental
tags:
- attack.execution
- attack.t1047
- attack.t1059.001
- attack.defense_evasion
- attack.t1064
ruletype: SIGMA