-
Notifications
You must be signed in to change notification settings - Fork 529
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] 3rd Party EDR - Add Crowdstrike FDR support - 3 #4222
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
[metadata] | ||
creation_date = "2020/11/18" | ||
integration = ["endpoint", "windows", "system", "m365_defender", "sentinel_one_cloud_funnel"] | ||
integration = ["endpoint", "windows", "system", "m365_defender", "sentinel_one_cloud_funnel", "crowdstrike"] | ||
maturity = "production" | ||
updated_date = "2024/10/15" | ||
updated_date = "2024/10/31" | ||
min_stack_version = "8.14.0" | ||
min_stack_comments = "Breaking change at 8.14.0 for the Windows Integration." | ||
|
||
|
@@ -23,6 +23,7 @@ index = [ | |
"logs-system.security*", | ||
"logs-m365_defender.event-*", | ||
"logs-sentinel_one_cloud_funnel.*", | ||
"logs-crowdstrike.fdr*", | ||
] | ||
language = "eql" | ||
license = "Elastic License v2" | ||
|
@@ -41,13 +42,17 @@ tags = [ | |
"Data Source: Microsoft Defender for Endpoint", | ||
"Data Source: Sysmon", | ||
"Data Source: SentinelOne", | ||
"Data Source: Crowdstrike", | ||
] | ||
timestamp_override = "event.ingested" | ||
type = "eql" | ||
|
||
query = ''' | ||
process where host.os.type == "windows" and event.type == "start" and | ||
process.executable : "C:\\*Program*Files*\\*.exe" and | ||
process.executable : ( | ||
"C:\\*Program*Files*\\*.exe", | ||
"\\Device\\HarddiskVolume?\\*Program*Files*\\*.exe" | ||
) and | ||
not process.executable : ( | ||
"?:\\Program Files\\*.exe", | ||
"?:\\Program Files (x86)\\*.exe", | ||
|
@@ -56,6 +61,18 @@ process where host.os.type == "windows" and event.type == "start" and | |
"?:\\Windows\\Downloaded Program Files\\*.exe", | ||
"?:\\Windows\\Temp\\.opera\\????????????\\CProgram?FilesOpera*\\*.exe", | ||
"?:\\Windows\\Temp\\.opera\\????????????\\CProgram?Files?(x86)Opera*\\*.exe" | ||
) and | ||
not ( | ||
event.dataset == "crowdstrike.fdr" and | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just curious, what is this about? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To not execute these wildcards unless the dataset is Crowdstrike, so we don't make the query more expensive by adding it |
||
process.executable : ( | ||
"\\Device\\HarddiskVolume?\\Program Files\\*.exe", | ||
"\\Device\\HarddiskVolume?\\Program Files (x86)\\*.exe", | ||
"\\Device\\HarddiskVolume?\\Users\\*.exe", | ||
"\\Device\\HarddiskVolume?\\ProgramData\\*.exe", | ||
"\\Device\\HarddiskVolume?\\Windows\\Downloaded Program Files\\*.exe", | ||
"\\Device\\HarddiskVolume?\\Windows\\Temp\\.opera\\????????????\\CProgram?FilesOpera*\\*.exe", | ||
"\\Device\\HarddiskVolume?\\Windows\\Temp\\.opera\\????????????\\CProgram?Files?(x86)Opera*\\*.exe" | ||
) | ||
) | ||
''' | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any reason why there are wildcards?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To match directories that masquerade as Program Files, not the original