mirror of
https://github.com/valitydev/SigmaHQ.git
synced 2024-11-06 17:35:19 +00:00
39 lines
863 B
YAML
39 lines
863 B
YAML
---
|
|
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/
|
|
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
|
|
condition: netCommand1 | near netCommand1 and netCommand1
|
|
level: medium
|