mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2024-12-12 17:14:37 +00:00
9 lines
143 B
SQL
9 lines
143 B
SQL
-- Retrieves the list of the latest logins with PID, username and timestamp.
|
|
--
|
|
-- tags: postmortem
|
|
-- platform: posix
|
|
SELECT
|
|
*
|
|
FROM
|
|
last;
|