[Rule Tuning] Suspicious Execution via Scheduled Task (#2235)
Excluding`?:\\ProgramData` and few other noisy FP pattern by process.args + name to reduce users alert fatigue.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
[metadata]
|
||||
creation_date = "2020/11/19"
|
||||
maturity = "production"
|
||||
updated_date = "2022/03/31"
|
||||
updated_date = "2022/08/09"
|
||||
|
||||
[rule]
|
||||
author = ["Elastic"]
|
||||
@@ -56,7 +56,12 @@ process where event.type == "start" and
|
||||
"C:\\PerfLogs\\*",
|
||||
"C:\\Intel\\*",
|
||||
"C:\\Windows\\Debug\\*",
|
||||
"C:\\HP\\*")
|
||||
"C:\\HP\\*") and
|
||||
|
||||
not (process.name : "cmd.exe" and process.args : "?:\\*.bat" and process.working_directory : "?:\\Windows\\System32\\") and
|
||||
not (process.name : "cscript.exe" and process.args : "?:\\Windows\\system32\\calluxxprovider.vbs") and
|
||||
not (process.name : "powershell.exe" and process.args : ("-File", "-PSConsoleFile") and user.id : "S-1-5-18") and
|
||||
not (process.name : "msiexec.exe" and user.id : "S-1-5-18")
|
||||
'''
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user