SigmaHQ/rules/windows/builtin/win_susp_failed_logons_single_source.yml

34 lines
895 B
YAML
Raw Normal View History

title: Multiple Failed Logins with Different Accounts from Single Source System
description: Detects suspicious failed logins with different user accounts from a single source system
author: Florian Roth
2018-07-24 05:50:32 +00:00
tags:
- attack.persistence
- attack.privilege_escalation
- attack.t1078
logsource:
2017-02-19 10:08:23 +00:00
product: windows
service: security
2016-12-27 13:49:54 +00:00
detection:
selection1:
EventID:
- 529
- 4625
UserName: '*'
WorkstationName: '*'
selection2:
EventID: 4776
UserName: '*'
Workstation: '*'
timeframe: 24h
condition:
- selection1 | count(UserName) by WorkstationName > 3
- selection2 | count(UserName) by Workstation > 3
2016-12-27 13:49:54 +00:00
falsepositives:
2016-12-27 22:09:41 +00:00
- Terminal servers
- Jump servers
- Other multiuser systems like Citrix server farms
- Workstations with frequently changing users
2017-02-16 17:02:26 +00:00
level: medium
2017-02-19 10:08:23 +00:00