Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[New Rule] Added user account #574

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions rules/cross-platform/user_account_created.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[metadata]
creation_date = "2020/11/18"
ecs_version = ["1.6.0"]
maturity = "development"
updated_date = "2020/11/18"

[rule]
author = ["Anabella Cristaldi"]
description = """
Identifies the creation of new users. This is sometimes done either by attackers to increase access to a system or a
domain or by a legal admin and the activity needs to be audited when strong security regulations are in place.
"""
index = ["winlogbeat-*", "auditbeat-*"]
language = "kuery"
license = "Elastic License"
name = "User Account Created"
risk_score = 21
rule_id = "73ccc727-dc70-4112-85f1-aa91f86548f0"
severity = "low"
tags = ["Windows", "Linux", "Elastic"]
type = "query"

query = '''
event.category:iam and event.type:(creation and user) and event.outcome:success
'''

27 changes: 27 additions & 0 deletions rules/windows/defense_evasion_clearing_windows_security_logs.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[metadata]
creation_date = "2020/11/12"
ecs_version = ["1.6.0"]
maturity = "development"
updated_date = "2020/11/12"

[rule]
author = ["Anabella Cristaldi"]
description = "Identifies attempts to clear Windows Security log stores"
from = "now-9m"
index = ["winlogbeat-*"]
interval = "6m"
language = "kuery"
license = "Elastic License"
max_signals = 99
name = "Clearing Windows Security Logs"
risk_score = 21
rule_id = "45ac4800-840f-414c-b221-53dd36a5aaf7"
severity = "low"
tags = ["Windows", "Elastic"]
to = "now-1s"
type = "query"

query = '''
event.module:security and event.action:audit-log-cleared
'''