Newly Observed High Severity Suricata Alert

This rule detects Suricata high severity alerts that are observed for the first time in the previous 5 days of alert history. Analysts can use this to prioritize triage and response.

Elastic rule (View on GitHub)

 1[metadata]
 2creation_date = "2026/01/20"
 3integration = ["suricata"]
 4maturity = "production"
 5updated_date = "2026/01/20"
 6
 7[rule]
 8author = ["Elastic"]
 9description = """
10This rule detects Suricata high severity alerts that are observed for the first time in the previous 5 days of alert history.
11Analysts can use this to prioritize triage and response.
12"""
13from = "now-7205m"
14interval = "5m"
15language = "esql"
16license = "Elastic License v2"
17name = "Newly Observed High Severity Suricata Alert"
18risk_score = 99
19rule_id = "d591d7af-399b-4888-b705-ae612690c48d"
20severity = "critical"
21tags = ["Use Case: Threat Detection", "Rule Type: Higher-Order Rule", "Resources: Investigation Guide", "Domain: Network", "Data Source: Suricata"]
22timestamp_override = "event.ingested"
23type = "esql"
24
25query = '''
26FROM logs-suricata.*
27
28  // high severity alerts
29| where event.module == "suricata" and event.kind == "signal" and event.severity == 1
30
31| STATS Esql.alerts_count = count(*),
32        Esql.first_time_seen = MIN(@timestamp),
33        Esql.distinct_count_src_ip = COUNT_DISTINCT(source.ip),
34        Esql.distinct_count_dst_ip = COUNT_DISTINCT(destination.ip),
35        src_ip_values = VALUES(source.ip),
36        dst_ip_values = VALUES(destination.ip),
37        url_dom = VALUES(url.domain),
38        url_path = VALUES(url.path) by rule.name, event.type
39
40| eval Esql.recent = DATE_DIFF("minute", Esql.first_time_seen, now())
41  // first time seen is within 10m of the rule execution time
42| where Esql.recent <= 10 and
43// exclude high volume alerts such as vuln-scanners
44  Esql.alerts_count <= 5 and Esql.distinct_count_src_ip <= 2 and Esql.distinct_count_dst_ip <= 2
45
46// move dynamic fields to ECS quivalent for rule exceptions
47| eval source.ip = MV_FIRST(src_ip_values),
48       destination.ip = MV_FIRST(dst_ip_values),
49       url.domain = MV_FIRST(url_dom),
50       url.path = MV_FIRST(url_path)
51| keep rule.name, event.type, Esql.*, source.ip, destination.ip, url.domain, url.path
52'''
53note = """## Triage and analysis
54
55### Investigating Newly Observed High Severity Suricata Alert
56
57This rule surfaces newly observed, low-frequency high severity suricata alerts within the last 5 days.
58
59Because the alert has not been seen previously for this rule and host, it should be prioritized for validation to determine
60whether it represents a true compromise or rare benign activity.
61
62### Investigation Steps
63
64- Identify the source address, affected host and review the associated rule name to understand the behavior that triggered the alert.
65- Validate the source address under which the activity occurred and assess whether it aligns with normal behavior.
66- Refer to the specific alert details like event.original to get more context.
67
68### False Positive Considerations
69
70- Vulnerability scanners and pentesting.
71- Administrative scripts or automation tools can trigger detections when first introduced.
72- Development or testing environments may produce one-off behaviors that resemble malicious techniques.
73
74### Response and Remediation
75
76- If the activity is confirmed malicious, isolate the affected host to prevent further execution or lateral movement.
77- Terminate malicious processes and remove any dropped files or persistence mechanisms.
78- Collect forensic artifacts to understand initial access and execution flow.
79- Patch or remediate any vulnerabilities or misconfigurations that enabled the behavior.
80- If benign, document the finding and consider tuning or exception handling to reduce future noise.
81- Continue monitoring the host and environment for recurrence of the behavior or related alerts."""
82references = ["https://www.elastic.co/docs/reference/integrations/suricata"]

Triage and analysis

Investigating Newly Observed High Severity Suricata Alert

This rule surfaces newly observed, low-frequency high severity suricata alerts within the last 5 days.

Because the alert has not been seen previously for this rule and host, it should be prioritized for validation to determine whether it represents a true compromise or rare benign activity.

Investigation Steps

  • Identify the source address, affected host and review the associated rule name to understand the behavior that triggered the alert.
  • Validate the source address under which the activity occurred and assess whether it aligns with normal behavior.
  • Refer to the specific alert details like event.original to get more context.

False Positive Considerations

  • Vulnerability scanners and pentesting.
  • Administrative scripts or automation tools can trigger detections when first introduced.
  • Development or testing environments may produce one-off behaviors that resemble malicious techniques.

Response and Remediation

  • If the activity is confirmed malicious, isolate the affected host to prevent further execution or lateral movement.
  • Terminate malicious processes and remove any dropped files or persistence mechanisms.
  • Collect forensic artifacts to understand initial access and execution flow.
  • Patch or remediate any vulnerabilities or misconfigurations that enabled the behavior.
  • If benign, document the finding and consider tuning or exception handling to reduce future noise.
  • Continue monitoring the host and environment for recurrence of the behavior or related alerts.

References

Related rules

to-top