mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2025-02-13 16:07:58 +00:00
9 lines
112 B
SQL
9 lines
112 B
SQL
-- Retrieves crash log info per user
|
|
--
|
|
-- tags: postmortem
|
|
SELECT
|
|
*
|
|
FROM
|
|
users
|
|
JOIN crashes USING (uid);
|