-
Notifications
You must be signed in to change notification settings - Fork 611
[New] Alerts in Different ATT&CK Tactics by Host #5343
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
base: main
Are you sure you want to change the base?
Conversation
Using ES|QL and alerts risk score to identify top risky hosts based on presence of multiple alert touching at least 4 unique tactics in a 24h time Window.
Rule: New - GuidelinesThese guidelines serve as a reminder set of considerations when proposing a new rule. Documentation and Context
Rule Metadata Checks
New BBR Rules
Testing and Validation
|
|
⛔️ Test failed Results
|
|
⛔️ Test failed Results
|
|
⛔️ Test failed Results
|
|
⛔️ Test failed Results
|
|
⛔️ Test failed Results
|
|
⛔️ Test failed Results
|
|
⛔️ Test failed Results
|
|
⛔️ Test failed Results
|
|
⛔️ Test failed Results
|
| | stats Esql.alerts_count = COUNT(*), | ||
| Esql.event_code_distinct_count = count_distinct(event.code), | ||
| Esql.rule_name_distinct_count = COUNT_DISTINCT(rule.name), | ||
| Esql.file_hash_distinct_count = COUNT_DISTINCT(file.hash.sha256), | ||
| Esql.process_name_distinct_count = COUNT_DISTINCT(process.entity_id), | ||
| Esql.event_code_values = VALUES(event.code), | ||
| Esql.rule_name_values = VALUES(rule.name), | ||
| Esql.message_values = VALUES(message), | ||
| Esql.file_path_values = VALUES(file.path), | ||
| Esql.dll_path_values = VALUES(dll.path), | ||
| Esql.process_executable_values = VALUES(process.executable), | ||
| Esql.process_parent_executable_values = VALUES(process.parent.executable), | ||
| Esql.process_command_line_values = VALUES(process.command_line), | ||
| Esql.process_hash_sha256_values = VALUES(process.hash.sha256), | ||
| Esql.file_hash_sha256_values = VALUES(file.hash.sha256), | ||
| Esql.dll_hash_sha256_values = VALUES(dll.hash.sha256) by agent.id |
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.
I think we need to test whether this could cause performance problems, coz it looks expensive 👀
Using ES|QL and alerts risk score to identify top risky hosts based on presence of multiple alert touching at least 4 unique tactics in a 24h time Window.