Add filebeat-* index pattern to rules based on system.auth dataset (#3561)
Co-authored-by: Ruben Groenewoud <78494512+Aegrah@users.noreply.github.com>
(cherry picked from commit 153657029b)
This commit is contained in:
committed by
github-actions[bot]
parent
502deb1978
commit
2812118000
@@ -14,7 +14,7 @@ a short time interval. Adversaries will often brute force login attempts across
|
||||
password, in an attempt to gain access to these accounts.
|
||||
"""
|
||||
from = "now-9m"
|
||||
index = ["logs-system.auth-*"]
|
||||
index = ["filebeat-*", "logs-system.auth-*"]
|
||||
language = "eql"
|
||||
license = "Elastic License v2"
|
||||
max_signals = 5
|
||||
|
||||
@@ -14,7 +14,7 @@ a short time interval. Adversaries will often brute force login attempts across
|
||||
password, in an attempt to gain access to these accounts.
|
||||
"""
|
||||
from = "now-9m"
|
||||
index = ["logs-system.auth-*"]
|
||||
index = ["filebeat-*", "logs-system.auth-*"]
|
||||
language = "eql"
|
||||
license = "Elastic License v2"
|
||||
max_signals = 5
|
||||
|
||||
@@ -13,7 +13,7 @@ Identifies multiple SSH login failures followed by a successful one from the sam
|
||||
to login into multiple users with a common or known password to gain access to accounts.
|
||||
"""
|
||||
from = "now-9m"
|
||||
index = ["auditbeat-*", "logs-system.auth-*"]
|
||||
index = ["auditbeat-*", "filebeat-*", "logs-system.auth-*"]
|
||||
language = "eql"
|
||||
license = "Elastic License v2"
|
||||
name = "Potential Successful SSH Brute Force Attack"
|
||||
|
||||
@@ -29,7 +29,7 @@ description = """
|
||||
Identifies attempts to create a new group. Attackers may create new groups to establish persistence on a system.
|
||||
"""
|
||||
from = "now-9m"
|
||||
index = ["logs-system.auth-*"]
|
||||
index = ["filebeat-*", "logs-system.auth-*"]
|
||||
language = "eql"
|
||||
license = "Elastic License v2"
|
||||
name = "Linux Group Creation"
|
||||
|
||||
@@ -29,7 +29,7 @@ description = """
|
||||
Identifies attempts to create new users. Attackers may add new users to establish persistence on a system.
|
||||
"""
|
||||
from = "now-9m"
|
||||
index = ["logs-system.auth-*"]
|
||||
index = ["filebeat-*", "logs-system.auth-*"]
|
||||
language = "eql"
|
||||
license = "Elastic License v2"
|
||||
name = "Linux User Account Creation"
|
||||
|
||||
Reference in New Issue
Block a user