forked from SigmaHQ/sigma
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Detect Emotet DLL loading by looking rundll32.exe
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
rules/windows/process_creation/win_susp_emotet_rudll32_execution.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
title: Emotet RunDLL32 process creation | ||
id: 54e57ce3-0672-46eb-a402-2c0948d5e3e9 | ||
description: Detecting Emotet DLL loading by looking for rundll32.exe processes with command lines ending in ,RunDLL or ,#1 | ||
author: FPT.EagleEye | ||
status: experimental | ||
date: 2020/12/25 | ||
references: | ||
- https://paste.cryptolaemus.com/emotet/2020/12/22/emotet-malware-IoCs_12-22-20.html | ||
tags: | ||
- attack.defense_evasion | ||
- attack.t1218.011 | ||
logsource: | ||
category: process_creation | ||
product: windows | ||
detection: | ||
selection: | ||
Image|endswith: | ||
- '\rundll32.exe' | ||
CommandLine|endswith: | ||
- ',RunDLL' | ||
- ',#1' | ||
filter_ide: | ||
ParentImage|endswith: | ||
- '\tracker.exe' #When Visual Studio compile NodeJS program, it might use MSBuild to create tracker.exe and then, the tracker.exe fork rundll32.exe | ||
condition: selection and not filter_ide | ||
falsepositives: | ||
- Unknown | ||
level: critical |