diff --git a/rules/windows/persistence_via_application_shimming.toml b/rules/windows/persistence_via_application_shimming.toml index 3ee7c1121..de2cfc044 100644 --- a/rules/windows/persistence_via_application_shimming.toml +++ b/rules/windows/persistence_via_application_shimming.toml @@ -4,7 +4,7 @@ integration = ["endpoint", "windows", "system"] maturity = "production" min_stack_comments = "New fields added: required_fields, related_integrations, setup" min_stack_version = "8.3.0" -updated_date = "2024/03/28" +updated_date = "2024/04/01" [rule] author = ["Elastic"] @@ -35,6 +35,7 @@ type = "eql" query = ''' process where host.os.type == "windows" and event.type == "start" and process.name : "sdbinst.exe" and + process.args : "?*" and not (process.args : "-m" and process.args : "-bg") and not process.args : "-mm" '''