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
title: Value Count TEST
id: 0e95725d-7320-415d-80f7-004da920fc11
level: informational
correlation:
type: value_count
rules:
- rule-a
- rule-b
group-by:
- Computer
timespan: 5m
condition:
gte: 2
field: SubStatus
---
title: Logon Failure (User Does Not Exist)
name: rule-a
logsource:
product: windows
service: security
detection:
selection_basic:
Channel: Security
EventID: 4625
selection_user_not_exist:
SubStatus: "0xc0000064" #Username does not exist error
condition: selection_basic and selection_user_not_exist
---
title: Logon Failure (Wrong Password)
name: rule-b
logsource:
product: windows
service: security
detection:
selection_basic:
Channel: Security
EventID: 4625
selection_wrong_password:
SubStatus: "0xc000006a" #Wrong password
condition: selection_basic and selection_wrong_password
we should ignore rules rule-a and rule-b as separate rules as we already have them in separate rules. This also lets us only display results for the correlation rule instead of having to also display/save the results for the referenced rules as well.
The text was updated successfully, but these errors were encountered:
@fukusuket I don't think we should care about if the rules are written in the same file or different files. (we should be able to support both). so when loading rules, we can check if it is a correlation rule, and if it is we check the IDs of the rules it references and then don't output the rules that are referenced, only the correlation rule results.
If there is a rule like this:
we should ignore rules
rule-a
andrule-b
as separate rules as we already have them in separate rules. This also lets us only display results for the correlation rule instead of having to also display/save the results for the referenced rules as well.The text was updated successfully, but these errors were encountered: