Files
hayabusa/rules/sigma/process_creation/win_mmc20_lateral_movement.yml
T
itiB 83d891b2fa Feature/rm submodule (#312)
* rm: submodule

* Add: rules

* Fix: hayabusa-rules to c9c10a
2021-12-20 21:14:32 +09:00

35 lines
1002 B
YAML

title: MMC20 Lateral Movement
ruletype: Sigma
author: '@2xxeformyshirt (Security Risk Advisors) - rule; Teymur Kheirkhabarov (idea)'
date: 2020/03/04
description: Detects MMC20.Application Lateral Movement; specifically looks for the
spawning of the parent MMC.exe with a command line of "-Embedding" as a child of
svchost.exe
detection:
SELECTION_1:
EventID: 1
SELECTION_2:
ParentImage: '*\svchost.exe'
SELECTION_3:
Image: '*\mmc.exe'
SELECTION_4:
CommandLine: '*-Embedding*'
condition: (SELECTION_1 and SELECTION_2 and SELECTION_3 and SELECTION_4)
falsepositives:
- Unlikely
id: f1f3bf22-deb2-418d-8cce-e1a45e46a5bd
level: high
logsource:
category: process_creation
product: windows
modified: 2021/11/27
references:
- https://enigma0x3.net/2017/01/05/lateral-movement-using-the-mmc20-application-com-object/
- https://drive.google.com/file/d/1lKya3_mLnR3UQuCoiYruO3qgu052_iS_/view?usp=sharing
status: test
tags:
- attack.execution
- attack.t1175
- attack.t1021.003