osquery-defense-kit/incident_response/ssh_configs.sql
2023-02-23 09:35:38 -05:00

9 lines
117 B
SQL

-- Retrieves the ssh configs per user
--
-- tags: postmortem
SELECT
*
FROM
users
JOIN ssh_configs USING (uid);