-
Notifications
You must be signed in to change notification settings - Fork 522
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[New Rule] Multiple Alerts in Different ATT&CK Tactics on a Single Ho…
…st (#2399) * [New Rule] Multiple Alerts in Different ATT&CK Tactics on a Single Host * Update definitions.py * Update rules/cross-platform/multiple_alerts_different_tactics_host.toml Co-authored-by: Justin Ibarra <brokensound77@users.noreply.github.com> Co-authored-by: Justin Ibarra <brokensound77@users.noreply.github.com> (cherry picked from commit a7caa4b)
- Loading branch information
1 parent
cca65d1
commit 8641dab
Showing
3 changed files
with
51 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
rules/cross-platform/multiple_alerts_different_tactics_host.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
[metadata] | ||
creation_date = "2022/11/16" | ||
maturity = "production" | ||
updated_date = "2022/11/16" | ||
min_stack_comments = "New fields added: required_fields, related_integrations, setup" | ||
min_stack_version = "8.3.0" | ||
|
||
[rule] | ||
author = ["Elastic"] | ||
description = """ | ||
This rule uses alert data to determine when multiple alerts in different phases of an attack involving the same host are | ||
triggered. Analysts can use this to prioritize triage and response, as these hosts are more likely to be compromised. | ||
""" | ||
false_positives = [ | ||
""" | ||
False positives can occur because the rules may be mapped to a few MITRE ATT&CK tactics. Use the attached Timeline | ||
to determine which detections were triggered on the host. | ||
""", | ||
] | ||
from = "now-24h" | ||
interval = "1h" | ||
index = [".alerts-*"] | ||
language = "kuery" | ||
license = "Elastic License v2" | ||
name = "Multiple Alerts in Different ATT&CK Tactics on a Single Host" | ||
risk_score = 73 | ||
rule_id = "b946c2f7-df06-4c00-a5aa-1f6fbc7bb72c" | ||
severity = "high" | ||
tags = ["Elastic", "Threat Detection", "Higher-Order Rules"] | ||
timeline_id = "4434b91a-94ca-4a89-83cb-a37cdc0532b7" | ||
timeline_title = "Alerts Involving a Single Host Timeline" | ||
timestamp_override = "event.ingested" | ||
type = "threshold" | ||
|
||
query = ''' | ||
signal.rule.name:* and kibana.alert.rule.threat.tactic.id:* | ||
''' | ||
|
||
[rule.threshold] | ||
field = ["host.id"] | ||
value = 1 | ||
|
||
[[rule.threshold.cardinality]] | ||
field = "kibana.alert.rule.threat.tactic.id" | ||
value = 3 |