SigmaHQ/rules/windows/builtin/win_pass_the_hash.yml

33 lines
1.1 KiB
YAML
Raw Normal View History

2018-01-27 09:57:30 +00:00
title: Pass the Hash Activity
status: experimental
2017-03-08 19:35:26 +00:00
description: 'Detects the attack technique pass the hash which is used to move laterally inside the network'
references:
- https://github.com/iadgov/Event-Forwarding-Guidance/tree/master/Events
author: Ilias el Matani (rule), The Information Assurance Directorate at the NSA (method)
2018-07-24 05:50:32 +00:00
tags:
- attack.lateral_movement
- attack.t1075
logsource:
product: windows
service: security
definition: The successful use of PtH for lateral movement between workstations would trigger event ID 4624, a failed logon attempt would trigger an event ID 4625
detection:
selection:
- EventID: 4624
LogonType: '3'
LogonProcessName: 'NtLmSsp'
WorkstationName: '%Workstations%'
ComputerName: '%Workstations%'
- EventID: 4625
LogonType: '3'
LogonProcessName: 'NtLmSsp'
WorkstationName: '%Workstations%'
ComputerName: '%Workstations%'
filter:
AccountName: 'ANONYMOUS LOGON'
condition: selection and not filter
falsepositives:
- Administrator activity
- Penetration tests
2017-03-13 15:16:34 +00:00
level: medium