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

[Rule Tuning] Enumeration of Privileged Local Groups Membership #4016

Merged
merged 1 commit into from
Aug 27, 2024
Merged
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
16 changes: 9 additions & 7 deletions rules/windows/discovery_privileged_localgroup_membership.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ integration = ["system", "windows"]
maturity = "production"
min_stack_comments = "KQL handles backslash and ? characters differently in 8.12+."
min_stack_version = "8.12.0"
updated_date = "2024/08/07"
updated_date = "2024/08/26"

[transform]
[[transform.osquery]]
Expand Down Expand Up @@ -115,13 +115,14 @@ Hence for this rule to work effectively, users will need to add a custom ingest
For more details on adding a custom ingest pipeline refer - https://www.elastic.co/guide/en/fleet/current/data-streams-pipeline-tutorial.html
"""
severity = "medium"
tags = ["Domain: Endpoint",
"OS: Windows",
"Use Case: Threat Detection",
"Tactic: Discovery",
"Resources: Investigation Guide",
tags = [
"Domain: Endpoint",
"OS: Windows",
"Use Case: Threat Detection",
"Tactic: Discovery",
"Resources: Investigation Guide",
"Data Source: System",
]
]
timestamp_override = "event.ingested"
type = "new_terms"

Expand Down Expand Up @@ -160,6 +161,7 @@ host.os.type:windows and event.category:iam and event.action:user-member-enumera
C\:\\Windows\\System32\\RecoveryDrive.exe or
C\:\\Windows\\System32\\SystemPropertiesComputerName.exe or
C\:\\Windows\\SysWOW64\\msiexec.exe or
C\:\\Windows\\System32\\taskhostw.exe or
C\:\\Windows\\ImmersiveControlPanel\\SystemSettings.exe or
C\:\\Windows\\Temp\\rubrik_vmware*\\snaptool.exe or
C\:\\Windows\\VeeamVssSupport\\VeeamGuestHelper.exe or
Expand Down
Loading