SigmaHQ/rules/apt/apt_turla_commands.yml

38 lines
865 B
YAML
Raw Normal View History

2017-11-07 23:33:17 +00:00
---
action: global
title: Turla Group Lateral Movement
status: experimental
description: Detects automated lateral movement by Turla group
references:
- https://securelist.com/the-epic-turla-operation/65545/
2018-07-25 07:50:01 +00:00
tags:
- attack.lateral_movement
- attack.g0010
2017-11-07 23:33:17 +00:00
author: Markus Neis
date: 2017/11/07
logsource:
category: process_creation
product: windows
2017-11-07 23:33:17 +00:00
falsepositives:
- Unknown
---
detection:
selection:
CommandLine:
- 'net use \\%DomainController%\C$ "P@ssw0rd" *'
2019-02-02 23:24:57 +00:00
- 'dir c:\\*.doc* /s'
- 'dir %TEMP%\\*.exe'
2017-11-07 23:33:17 +00:00
condition: selection
level: critical
---
detection:
netCommand1:
CommandLine: 'net view /DOMAIN'
netCommand2:
CommandLine: 'net session'
netCommand3:
CommandLine: 'net share'
timeframe: 1m
2018-08-26 20:35:35 +00:00
condition: netCommand1 | near netCommand2 and netCommand3
2017-11-07 23:33:17 +00:00
level: medium