Skip to content

Commit 6990373

Browse files
authored
Update rules/linux/execution_suspicious_pod_or_container_creation_command_execution.toml
1 parent 6f2eafd commit 6990373

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rules/linux/execution_suspicious_pod_or_container_creation_command_execution.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ tags = [
4444
timestamp_override = "event.ingested"
4545
type = "eql"
4646
query = '''
47-
process where event.type == "start" and event.action in ("exec", "exec_event", "start", "ProcessRollup2", "executed", "process_started") and (
47+
process where host.os.type == "linux" and event.type == "start" and event.action in ("exec", "exec_event", "start", "ProcessRollup2", "executed", "process_started") and (
4848
(process.name == "kubectl" and process.args == "run" and process.args == "--restart=Never" and process.args == "--") or
4949
(process.name == "docker" and process.args == "run")
5050
) and

0 commit comments

Comments
 (0)