mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2025-02-16 09:27:06 +00:00
9 lines
117 B
MySQL
9 lines
117 B
MySQL
|
-- Return the list of POSIX groups on the system
|
||
|
--
|
||
|
-- tags: postmortem
|
||
|
-- platform: linux
|
||
|
SELECT
|
||
|
*
|
||
|
FROM
|
||
|
groups;
|