mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2025-01-06 05:19:30 +00:00
9 lines
134 B
SQL
9 lines
134 B
SQL
-- Return the list of ports for Docker containers
|
|
--
|
|
-- tags: postmortem
|
|
-- platform: linux
|
|
SELECT
|
|
*
|
|
FROM
|
|
docker_container_ports;
|