mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2024-12-11 08:34:34 +00:00
9 lines
116 B
MySQL
9 lines
116 B
MySQL
|
-- Retrieves the ssh keys per user
|
||
|
--
|
||
|
-- tags: postmortem
|
||
|
SELECT
|
||
|
*
|
||
|
FROM
|
||
|
users
|
||
|
JOIN user_ssh_keys USING (uid);
|