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,35 @@
title: Detection of PowerShell Execution via DLL
ruletype: Sigma
author: Markus Neis
date: 2018/08/25
description: Detects PowerShell Strings applied to rundll as seen in PowerShdll.dll
detection:
SELECTION_1:
EventID: 1
SELECTION_2:
Image:
- '*\rundll32.exe'
SELECTION_3:
Description:
- '*Windows-Hostprozess (Rundll32)*'
SELECTION_4:
CommandLine:
- '*Default.GetString*'
- '*FromBase64String*'
condition: (SELECTION_1 and (SELECTION_2 or SELECTION_3) and SELECTION_4)
falsepositives:
- Unknown
id: 6812a10b-60ea-420c-832f-dfcc33b646ba
level: high
logsource:
category: process_creation
product: windows
modified: 2021/11/27
references:
- https://github.com/p3nt4/PowerShdll/blob/master/README.md
status: test
tags:
- attack.defense_evasion
- attack.t1085
- attack.t1218.011