mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2024-12-13 17:44:33 +00:00
8 lines
124 B
MySQL
8 lines
124 B
MySQL
|
-- Retrieves currently running applications
|
||
|
--
|
||
|
-- tags: postmortem often
|
||
|
-- platform: darwin
|
||
|
SELECT
|
||
|
*
|
||
|
FROM
|
||
|
running_apps;
|