osquery-defense-kit/detection/privesc/unexpected-privileged-conta...

18 lines
451 B
MySQL
Raw Normal View History

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,
-- where the kernel namespaces can be shared.
--
-- platform: linux
-- tags: ephemeral often
SELECT
*
FROM
docker_containers
WHERE
privileged = 1
AND image NOT LIKE 'kindest/node:%';