mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2024-12-12 17:14:37 +00:00
9 lines
176 B
SQL
9 lines
176 B
SQL
-- Retrieves all the information about the current kernel extensions for the target OSX system.
|
|
--
|
|
-- tags: postmortem
|
|
-- platform: darwin
|
|
SELECT
|
|
*
|
|
FROM
|
|
kernel_extensions;
|