mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2025-01-10 07:39:26 +00:00
9 lines
147 B
MySQL
9 lines
147 B
MySQL
|
-- Retrieves all the currently installed applications in the target OSX system.
|
||
|
--
|
||
|
-- tags: postmortem
|
||
|
-- platform: darwin
|
||
|
SELECT
|
||
|
*
|
||
|
FROM
|
||
|
apps;
|