mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2024-12-12 17:14:37 +00:00
9 lines
180 B
SQL
9 lines
180 B
SQL
-- Retrieves the list of processes with explicit authorization for the Application Layer Firewall.
|
|
--
|
|
-- tags: postmortem
|
|
-- platform: darwin
|
|
SELECT
|
|
*
|
|
FROM
|
|
alf_explicit_auths;
|