forked from SigmaHQ/sigma
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
alternative detection methods
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
title: Pass the Hash Activity | ||
status: production | ||
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 | ||
- https://blog.binarydefense.com/reliably-detecting-pass-the-hash-through-event-log-analysis | ||
- https://blog.stealthbits.com/how-to-detect-pass-the-hash-attacks/ | ||
author: Dave Kennedy, Jeff Warren (method) / David Vassallo (rule) | ||
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 | ||
detection: | ||
selection: | ||
- EventID: 4624 | ||
SecurityID: 'NULL SID' | ||
LogonType: '3' | ||
LogonProcessName: 'NtLmSsp' | ||
KeyLength: '0' | ||
- EventID: 4624 | ||
LogonType: '9' | ||
LogonProcessName: 'seclogo' | ||
filter: | ||
AccountName: 'ANONYMOUS LOGON' | ||
condition: selection and not filter | ||
falsepositives: | ||
- Administrator activity | ||
- Penetration tests | ||
level: medium |