SigmaHQ/rules/windows/process_creation/win_malware_qbot.yml

37 lines
1011 B
YAML
Raw Normal View History

2019-10-01 15:25:04 +00:00
title: QBot Process Creation
2019-11-12 22:12:27 +00:00
id: 4fcac6eb-0287-4090-8eea-2602e4c20040
2019-10-01 15:25:04 +00:00
status: experimental
description: Detects QBot like process executions
author: Florian Roth
date: 2019/10/01
2021-01-25 11:03:30 +00:00
modified: 2021/01/25
tags:
- attack.execution
- attack.t1059.005
- attack.defense_evasion # an old one
- attack.t1064 # an old one
2019-10-01 15:25:04 +00:00
references:
- https://twitter.com/killamjr/status/1179034907932315648
- https://app.any.run/tasks/2e0647b7-eb86-4f72-904b-d2d0ecac07d1/
logsource:
category: process_creation
product: windows
detection:
selection1:
2020-10-15 21:02:35 +00:00
ParentImage|endswith: '\WinRAR.exe'
Image|endswith: '\wscript.exe'
2019-10-01 15:25:04 +00:00
selection2:
2020-10-15 21:02:35 +00:00
CommandLine|contains: ' /c ping.exe -n 6 127.0.0.1 & type '
2021-01-25 11:03:30 +00:00
selection3:
CommandLine|contains|all:
- 'regsvr32.exe'
- 'C:\ProgramData'
- '.tmp'
condition: selection1 or selection2 or selection3
2019-10-01 15:25:04 +00:00
fields:
- CommandLine
- ParentCommandLine
falsepositives:
- Unlikely
level: critical