mirror of
https://github.com/valitydev/SigmaHQ.git
synced 2024-11-06 17:35:19 +00:00
44 lines
987 B
YAML
Executable File
44 lines
987 B
YAML
Executable File
---
|
|
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/
|
|
tags:
|
|
- attack.g0010
|
|
- attack.execution
|
|
- attack.t1059
|
|
- attack.lateral_movement
|
|
- attack.t1077
|
|
- attack.discovery
|
|
- attack.t1083
|
|
- attack.t1135
|
|
author: Markus Neis
|
|
date: 2017/11/07
|
|
logsource:
|
|
category: process_creation
|
|
product: windows
|
|
falsepositives:
|
|
- Unknown
|
|
---
|
|
detection:
|
|
selection:
|
|
CommandLine:
|
|
- 'net use \\%DomainController%\C$ "P@ssw0rd" *'
|
|
- 'dir c:\\*.doc* /s'
|
|
- 'dir %TEMP%\\*.exe'
|
|
condition: selection
|
|
level: critical
|
|
---
|
|
detection:
|
|
netCommand1:
|
|
CommandLine: 'net view /DOMAIN'
|
|
netCommand2:
|
|
CommandLine: 'net session'
|
|
netCommand3:
|
|
CommandLine: 'net share'
|
|
timeframe: 1m
|
|
condition: netCommand1 | near netCommand2 and netCommand3
|
|
level: medium
|