SigmaHQ/rules/windows/builtin/win_susp_failed_logons_single_source.yml

30 lines
831 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
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: not null
WorkstationName: not null
selection2:
EventID: 4776
UserName: not null
Workstation: not null
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