mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2025-01-21 04:50:42 +00:00
8 lines
134 B
SQL
8 lines
134 B
SQL
-- Retrieve most programs that are part of a systems startup (multi-platform)
|
|
--
|
|
-- tags: postmortem
|
|
SELECT
|
|
*
|
|
FROM
|
|
startup_items;
|