SigmaHQ/rules/apt/apt_turla_commands.yml

42 lines
918 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:
product: windows
service: sysmon
falsepositives:
- Unknown
---
detection:
selection:
EventID: 1
CommandLine:
- 'net use \\%DomainController%\C$ "P@ssw0rd" *'
- 'dir c:\*.doc* /s'
- 'dir %TEMP%\*.exe'
condition: selection
level: critical
---
detection:
netCommand1:
EventID: 1
CommandLine: 'net view /DOMAIN'
netCommand2:
EventID: 1
CommandLine: 'net session'
netCommand3:
EventID: 1
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