osquery-defense-kit/incident_response/kextstat_macos.sql

9 lines
176 B
MySQL
Raw Permalink Normal View History

2022-10-13 13:11:17 +00:00
-- Retrieves all the information about the current kernel extensions for the target OSX system.
--
-- tags: postmortem
2022-10-13 13:11:17 +00:00
-- platform: darwin
SELECT
2022-10-17 23:06:17 +00:00
*
FROM
2022-10-17 23:06:17 +00:00
kernel_extensions;