mirror of
https://github.com/valitydev/SigmaHQ.git
synced 2024-11-07 17:58:52 +00:00
30 lines
777 B
YAML
30 lines
777 B
YAML
title: TAIDOOR RAT DLL Load
|
|
id: d1aa3382-abab-446f-96ea-4de52908210b
|
|
status: experimental
|
|
description: Detects specific process characteristics of Chinese TAIDOOR RAT malware load
|
|
references:
|
|
- https://us-cert.cisa.gov/ncas/analysis-reports/ar20-216a
|
|
author: Florian Roth
|
|
date: 2020/07/30
|
|
tags:
|
|
- attack.execution
|
|
- attack.t1055.001
|
|
logsource:
|
|
category: process_creation
|
|
product: windows
|
|
detection:
|
|
selection1:
|
|
CommandLine|contains:
|
|
- 'dll,MyStart'
|
|
- 'dll MyStart'
|
|
selection2a:
|
|
CommandLine|endswith:
|
|
- ' MyStart'
|
|
selection2b:
|
|
CommandLine|contains:
|
|
- 'rundll32.exe'
|
|
condition: selection1 or ( selection2a and selection2b )
|
|
falsepositives:
|
|
- Unknown
|
|
level: critical
|