2022-10-14 12:42:10 +00:00
|
|
|
-- Detect the execution of priveleged Docker containers which can be used to escape to the host.
|
|
|
|
--
|
|
|
|
-- references:
|
|
|
|
-- * https://attack.mitre.org/techniques/T1611/
|
|
|
|
--
|
|
|
|
-- This query works on macOS as well, but is only an in-the-wild security problem on Linux,
|
2022-10-14 13:16:24 +00:00
|
|
|
-- where the kernel namespaces can be shared. These kind of attacks tend to be
|
2022-10-14 12:42:10 +00:00
|
|
|
--
|
|
|
|
-- platform: linux
|
2022-10-14 18:19:13 +00:00
|
|
|
-- tags: transient state container escalation
|
2022-09-24 15:12:23 +00:00
|
|
|
SELECT
|
2022-10-17 23:06:17 +00:00
|
|
|
command,
|
|
|
|
image_id,
|
|
|
|
path,
|
|
|
|
security_options,
|
|
|
|
started_at,
|
|
|
|
image
|
2022-09-24 15:12:23 +00:00
|
|
|
FROM
|
|
|
|
docker_containers
|
|
|
|
WHERE
|
|
|
|
privileged = 1
|
2022-10-13 18:59:32 +00:00
|
|
|
AND image NOT LIKE 'kindest/node:%';
|