SigmaHQ/rules/apt/apt_pandemic.yml

44 lines
994 B
YAML
Raw Normal View History

---
action: global
2017-06-01 20:48:59 +00:00
title: Pandemic Registry Key
status: experimental
description: Detects Pandemic Windows Implant
references:
2017-06-01 20:48:59 +00:00
- https://wikileaks.org/vault7/#Pandemic
- https://twitter.com/MalwareJake/status/870349480356454401
2018-07-25 07:50:01 +00:00
tags:
- attack.lateral_movement
- attack.t1105
2017-06-01 20:48:59 +00:00
author: Florian Roth
detection:
condition: 1 of them
2017-09-12 21:54:04 +00:00
fields:
- EventID
- CommandLine
- ParentCommandLine
- Image
- User
- TargetObject
2017-06-01 20:48:59 +00:00
falsepositives:
- unknown
level: critical
---
logsource:
product: windows
service: sysmon
detection:
selection1:
EventID: 13
TargetObject:
- '\REGISTRY\MACHINE\SYSTEM\CurrentControlSet\services\null\Instance*'
- '\REGISTRY\MACHINE\SYSTEM\ControlSet001\services\null\Instance*'
- '\REGISTRY\MACHINE\SYSTEM\ControlSet002\services\null\Instance*'
---
logsource:
category: process_creation
product: windows
detection:
selection2:
Command: 'loaddll -a *'
2017-06-01 20:48:59 +00:00