Files
hayabusa/rules/sigma/builtin/security/win_overpass_the_hash.yml
T
itiB 83d891b2fa Feature/rm submodule (#312)
* rm: submodule

* Add: rules

* Fix: hayabusa-rules to c9c10a
2021-12-20 21:14:32 +09:00

34 lines
934 B
YAML

title: Successful Overpass the Hash Attempt
ruletype: Sigma
author: Roberto Rodriguez (source), Dominik Schaudel (rule)
date: 2018/02/12
description: Detects successful logon with logon type 9 (NewCredentials) which matches
the Overpass the Hash behavior of e.g Mimikatz's sekurlsa::pth module.
detection:
SELECTION_1:
EventID: 4624
SELECTION_2:
LogonType: 9
SELECTION_3:
LogonProcessName: seclogo
SELECTION_4:
AuthenticationPackageName: Negotiate
condition: (SELECTION_1 and SELECTION_2 and SELECTION_3 and SELECTION_4)
falsepositives:
- Runas command-line tool using /netonly parameter
id: 192a0330-c20b-4356-90b6-7b7049ae0b87
level: high
logsource:
product: windows
service: security
modified: 2021/11/27
references:
- https://cyberwardog.blogspot.de/2017/04/chronicles-of-threat-hunter-hunting-for.html
status: test
tags:
- attack.lateral_movement
- attack.t1075
- attack.s0002
- attack.t1550.002