-
Notifications
You must be signed in to change notification settings - Fork 603
[Rule Tuning] Windows High Severity - 3 #5094
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
Conversation
Rule: Tuning - GuidelinesThese guidelines serve as a reminder set of considerations when tuning an existing rule. Documentation and Context
Rule Metadata Checks
Testing and Validation
|
⛔️ Test failed Results
|
?process.code_signature.subject_name : ("AutoIt Consulting Ltd", "OpenJS Foundation", "Python Software Foundation") or | ||
?process.executable : ("?:\\Users\\*.exe", "?:\\ProgramData\\*.exe", "?\\Device\\HarddiskVolume?\\Users\\*.exe", "?\\Device\\HarddiskVolume?\\ProgramData\\*.exe") | ||
?process.executable : ("?:\\Users\\*.exe", "?:\\ProgramData\\*.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.
CS doesn't populate this one
file.name : "rdrcef.exe") | ||
] by host.id, file.path | ||
[process where host.os.type == "windows" and event.type == "start"] by host.id, process.executable | ||
[file where host.os.type == "windows" and event.type != "deletion" and |
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 this rule need to be drepacted or simplified for performance (sequence by file.path with process.executable) and the scenario is very low in term of occurrence likelihood as well as the FP rate is high?
Maybe remove the sequence and just limit to file event alone ?
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.
File + new_terms? Tbh I'm fine with deprecating this one
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.
++ for deprecate
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.
Added the preffix and reverted the changes, will deprecate it in a few releases from now.
⛔️ Test failed Results
|
⛔️ Test failed Results
|
⛔️ Test failed Results
|
⛔️ Test failed Results
|
Issues
Part of https://github.com/elastic/ia-trade-team/issues/678
Summary
Logic adjusts to exclude FPs or cover FNs.