osquery-defense-kit/incident_response/ssh_configs.sql

9 lines
117 B
MySQL
Raw Normal View History

2023-02-23 14:35:38 +00:00
-- Retrieves the ssh configs per user
--
-- tags: postmortem
SELECT
*
FROM
users
JOIN ssh_configs USING (uid);