You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@fukusuket Here is a (maybe) hard one for you. I'd like to start supporting sigma correlations starting with Event Count and Value Count types since we already have the logic for those with | count. We should probably start with Event Count as that is the easiest.
title: Many failed logins to the same computer
id: 0e95725d-7320-415d-80f7-004da920fc11
correlation:
type: event_count
rules:
- e87bd730-df45-4ae9-85de-6c75369c5d29 # Logon Failure (Wrong Password)
- 8afa97ce-a217-4f7c-aced-3e320a57756d # Logon Failure (User Does Not Exist)
group-by:
- Computer
timespan: 5m
condition:
gte: 3
This is example uses multiple rules but at first we can just support one rule if that is easier.
Or you could create a generic rule with a new ID and the following logic to test:
If there a 3 or more failed logons to the same Computer, then there will be an alert.
Things to consider:
There may be multiple rules... If it is difficult to implement checking multiple conditions from multiple rules then we might want to just start off by supporting one rule
There may be multiple fields in group-by. I believe this means that, for example if Computer and IpAddress were defined in group-by then if the combination of the sameComputerNameAND the sameIpAddress reaches 3 or more, then we should give an alert.
The text was updated successfully, but these errors were encountered:
@fukusuket Here is a (maybe) hard one for you. I'd like to start supporting sigma correlations starting with Event Count and Value Count types since we already have the logic for those with
| count
. We should probably start withEvent Count
as that is the easiest.Both are explained here: https://github.com/SigmaHQ/sigma-specification/blob/version_2/Sigma_meta_rules.md
Event Count sample:
This is example uses multiple rules but at first we can just support one rule if that is easier.
Or you could create a generic rule with a new ID and the following logic to test:
This just detects any failed logon.
I think this should be the same as the following
count
rule:If there a 3 or more failed logons to the same Computer, then there will be an alert.
Things to consider:
name
instead ofID
so we need a way to look this up internally. Info: https://github.com/SigmaHQ/sigma-specification/blob/version_2/Sigma_meta_rules.md#related-rulesgroup-by
. I believe this means that, for example ifComputer
andIpAddress
were defined ingroup-by
then if the combination of the sameComputerName
AND the sameIpAddress
reaches 3 or more, then we should give an alert.The text was updated successfully, but these errors were encountered: