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

[Tuning] DCSync Rules - 4662 event.action #3410

Merged
merged 2 commits into from
Jan 30, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ integration = ["windows"]
maturity = "production"
min_stack_comments = "The New Term rule type used in this rule was added in Elastic 8.4"
min_stack_version = "8.4.0"
updated_date = "2023/10/23"
updated_date = "2024/01/29"

[rule]
author = ["Elastic"]
Expand Down Expand Up @@ -88,7 +88,7 @@ timestamp_override = "event.ingested"
type = "new_terms"

query = '''
event.action:"Directory Service Access" and event.code:"4662" and
event.action:("Directory Service Access" or "object-operation-performed") and event.code:"4662" and
winlog.event_data.Properties:(*DS-Replication-Get-Changes* or *DS-Replication-Get-Changes-All* or
*DS-Replication-Get-Changes-In-Filtered-Set* or *1131f6ad-9c07-11d1-f79f-00c04fc2dcd2* or
*1131f6aa-9c07-11d1-f79f-00c04fc2dcd2* or *89e95b76-444d-4c62-991a-0facbeda640c*) and
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ integration = ["system", "windows"]
maturity = "production"
min_stack_comments = "New fields added: required_fields, related_integrations, setup"
min_stack_version = "8.3.0"
updated_date = "2023/10/23"
updated_date = "2024/01/29"

[rule]
author = ["Elastic"]
Expand Down Expand Up @@ -97,7 +97,7 @@ timestamp_override = "event.ingested"
type = "eql"

query = '''
any where event.action == "Directory Service Access" and
any where event.action : ("Directory Service Access", "object-operation-performed") and
event.code == "4662" and winlog.event_data.Properties : (
/* Control Access Rights/Permissions Symbol */
Expand Down
Loading