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 event.type == "start" and event.action in ("exec", "exec_event", "start", "ProcessRollup2", "executed", "process_started") and (
48
-
(process.name == "kubectl" and process.args == "run" and process.args == "--restart=Never" and process.args == "--" and process.args in ("bash", "dash", "sh", "tcsh", "csh", "zsh", "ksh", "fish")) or
48
+
(process.name == "kubectl" and process.args == "run" and process.args == "--restart=Never" and process.args == "--") or
49
49
(process.name == "docker" and process.args == "run")
50
-
) and process.command_line like~ (
50
+
) and
51
+
process.args in ("bash", "dash", "sh", "tcsh", "csh", "zsh", "ksh", "fish") and
0 commit comments