Skip to content

Commit 9f8f3fa

Browse files
authored
Update multiple_alerts_from_different_modules_by_srcip.toml
1 parent 5ba8c47 commit 9f8f3fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rules/cross-platform/multiple_alerts_from_different_modules_by_srcip.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ from .alerts-security.* metadata _id
2727
2828
// any alerts excluding low severity and the noisy ones
2929
| where kibana.alert.rule.name is not null and source.ip is not null and kibana.alert.risk_score > 21 and
30-
not kibana.alert.rule.name in ("Threat Intel IP Address Indicator Match", "Threat Intel Indicator Match", "Agent Spoofing - Mismatched Agent ID")
30+
not kibana.alert.rule.type in ("threat_match", "machine_learning")
3131
3232
// group alerts by source.ip and extract values of interest for alert triage
3333
| stats Esql.event_module_distinct_count = COUNT_DISTINCT(event.module),
@@ -45,7 +45,7 @@ from .alerts-security.* metadata _id
4545
Esql.rule_severity_values = VALUES(kibana.alert.risk_score) by source.ip
4646
4747
// filter for alerts from same source.ip reported by different integrations with unique categories and with different severity levels
48-
| where Esql.event_module_distinct_count >= 2 and Esql.event_category_distinct_count >= 2 and Esql.rule_severity_distinct_count >= 2
48+
| where Esql.event_module_distinct_count >= 2 and Esql.event_category_distinct_count >= 2 and (Esql.rule_risk_score_distinct_count >= 2 or Esql.rule_severity_values == 73)
4949
| keep source.ip, Esql.*
5050
'''
5151
note = """## Triage and analysis

0 commit comments

Comments
 (0)