osquery-defense-kit/incident_response/kernel_modules_linux.sql
2022-10-19 16:19:53 -04:00

9 lines
168 B
SQL

-- Retrieves all the information for the current kernel modules in the target Linux system.
--
-- tags: postmortem
-- platform: linux
SELECT
*
FROM
kernel_modules;