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

* Add: rules

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

37 lines
844 B
YAML

title: DLL Injection with Tracker.exe
ruletype: Sigma
author: Avneet Singh @v3t0_, oscd.community
date: 2020/10/18
description: This rule detects DLL injection and execution via LOLBAS - Tracker.exe
detection:
SELECTION_1:
EventID: 1
SELECTION_2:
Image:
- '*\tracker.exe'
SELECTION_3:
Description:
- Tracker
SELECTION_4:
CommandLine:
- '* /d *'
SELECTION_5:
CommandLine:
- '* /c *'
condition: (SELECTION_1 and (SELECTION_2 or SELECTION_3) and SELECTION_4 and SELECTION_5)
falsepositives:
- Unknown
id: 148431ce-4b70-403d-8525-fcc2993f29ea
level: medium
logsource:
category: process_creation
product: windows
modified: 2021/11/27
references:
- https://github.com/LOLBAS-Project/LOLBAS/blob/master/yml/OtherMSBinaries/Tracker.yml
status: test
tags:
- attack.defense_evasion
- attack.t1055.001