You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
process where host.os.type == "linux" and event.type == "start" and process.name == "shred" and process.args in (
102
-
"-u", "--remove", "-z", "--zero"
103
-
) and not process.parent.name == "logrotate"
104
+
process where host.os.type == "linux" and event.type == "start" and event.action in ("exec", "exec_event", "start", "ProcessRollup2", "executed", "process_started") and
105
+
process.name == "shred" and (
106
+
// Any short-flag cluster containing at least one of u/z, and containing no extra "-" after the first one
0 commit comments