mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2025-01-06 13:29:30 +00:00
9 lines
117 B
SQL
9 lines
117 B
SQL
-- Retrieves the ssh configs per user
|
|
--
|
|
-- tags: postmortem
|
|
SELECT
|
|
*
|
|
FROM
|
|
users
|
|
JOIN ssh_configs USING (uid);
|