osquery-defense-kit/incident_response/kernel_modules_linux.sql

9 lines
168 B
MySQL
Raw Normal View History

2022-10-13 13:11:17 +00:00
-- Retrieves all the information for the current kernel modules in the target Linux system.
--
-- tags: postmortem
2022-10-13 13:11:17 +00:00
-- platform: linux
SELECT
2022-10-17 23:06:17 +00:00
*
FROM
2022-10-17 23:06:17 +00:00
kernel_modules;