Skip to content

Commit 103fbf1

Browse files
authored
[Rule Tuning] Container Management Utility Run Inside A Container (#4809)
* [Rule Tuning] Container Management Utility Run Inside A Container * ++
1 parent dfd46a0 commit 103fbf1

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

rules/linux/execution_container_management_binary_launched_inside_container.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
creation_date = "2025/03/12"
33
integration = ["endpoint"]
44
maturity = "production"
5-
updated_date = "2025/03/12"
5+
updated_date = "2025/06/17"
66

77
[rule]
88
author = ["Elastic"]
@@ -65,8 +65,9 @@ timestamp_override = "event.ingested"
6565
type = "eql"
6666
query = '''
6767
process where host.os.type == "linux" and event.type == "start" and event.action == "exec" and
68-
process.entry_leader.entry_meta.type == "container" and
69-
process.name in ("dockerd", "docker", "kubelet", "kube-proxy", "kubectl", "containerd", "runc", "systemd", "crictl")
68+
process.entry_leader.entry_meta.type == "container" and process.interactive == true and
69+
process.name in ("dockerd", "docker", "kubelet", "kube-proxy", "kubectl", "containerd", "systemd", "crictl") and
70+
not process.parent.executable in ("/sbin/init", "/usr/bin/dockerd")
7071
'''
7172
note = """## Triage and analysis
7273

0 commit comments

Comments
 (0)