Feature/rm submodule (#312)

* rm: submodule

* Add: rules

* Fix: hayabusa-rules to c9c10a
This commit is contained in:
itiB
2021-12-20 21:14:32 +09:00
committed by GitHub
parent 1aebdca160
commit 83d891b2fa
1196 changed files with 46186 additions and 4 deletions

View File

@@ -0,0 +1,42 @@
title: MMC Spawning Windows Shell
ruletype: Sigma
author: Karneades, Swisscom CSIRT
date: 2019/08/05
description: Detects a Windows command line executable started from MMC
detection:
SELECTION_1:
EventID: 1
SELECTION_2:
ParentImage: '*\mmc.exe'
SELECTION_3:
Image:
- '*\cmd.exe'
- '*\powershell.exe'
- '*\wscript.exe'
- '*\cscript.exe'
- '*\sh.exe'
- '*\bash.exe'
- '*\reg.exe'
- '*\regsvr32.exe'
SELECTION_4:
Image:
- '*\BITSADMIN*'
condition: (SELECTION_1 and SELECTION_2 and (SELECTION_3 or SELECTION_4))
fields:
- CommandLine
- Image
- ParentCommandLine
id: 05a2ab7e-ce11-4b63-86db-ab32e763e11d
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/
status: test
tags:
- attack.lateral_movement
- attack.t1175
- attack.t1021.003