Skip to content

Commit 1536570

Browse files
herrBezAegrah
andauthored
Add filebeat-* index pattern to rules based on system.auth dataset (#3561)
Co-authored-by: Ruben Groenewoud <78494512+Aegrah@users.noreply.github.com>
1 parent 3fbffa2 commit 1536570

5 files changed

+5
-5
lines changed

rules/linux/credential_access_potential_linux_ssh_bruteforce_external.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ a short time interval. Adversaries will often brute force login attempts across
1414
password, in an attempt to gain access to these accounts.
1515
"""
1616
from = "now-9m"
17-
index = ["logs-system.auth-*"]
17+
index = ["filebeat-*", "logs-system.auth-*"]
1818
language = "eql"
1919
license = "Elastic License v2"
2020
max_signals = 5

rules/linux/credential_access_potential_linux_ssh_bruteforce_internal.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ a short time interval. Adversaries will often brute force login attempts across
1414
password, in an attempt to gain access to these accounts.
1515
"""
1616
from = "now-9m"
17-
index = ["logs-system.auth-*"]
17+
index = ["filebeat-*", "logs-system.auth-*"]
1818
language = "eql"
1919
license = "Elastic License v2"
2020
max_signals = 5

rules/linux/credential_access_potential_successful_linux_ssh_bruteforce.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Identifies multiple SSH login failures followed by a successful one from the sam
1313
to login into multiple users with a common or known password to gain access to accounts.
1414
"""
1515
from = "now-9m"
16-
index = ["auditbeat-*", "logs-system.auth-*"]
16+
index = ["auditbeat-*", "filebeat-*", "logs-system.auth-*"]
1717
language = "eql"
1818
license = "Elastic License v2"
1919
name = "Potential Successful SSH Brute Force Attack"

rules/linux/persistence_linux_group_creation.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ description = """
2929
Identifies attempts to create a new group. Attackers may create new groups to establish persistence on a system.
3030
"""
3131
from = "now-9m"
32-
index = ["logs-system.auth-*"]
32+
index = ["filebeat-*", "logs-system.auth-*"]
3333
language = "eql"
3434
license = "Elastic License v2"
3535
name = "Linux Group Creation"

rules/linux/persistence_linux_user_account_creation.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ description = """
2929
Identifies attempts to create new users. Attackers may add new users to establish persistence on a system.
3030
"""
3131
from = "now-9m"
32-
index = ["logs-system.auth-*"]
32+
index = ["filebeat-*", "logs-system.auth-*"]
3333
language = "eql"
3434
license = "Elastic License v2"
3535
name = "Linux User Account Creation"

0 commit comments

Comments
 (0)