mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2025-03-01 16:30:28 +00:00
9 lines
109 B
SQL
9 lines
109 B
SQL
-- Returns the OS memory region map.
|
|
--
|
|
-- tags: postmortem
|
|
-- platform: linux
|
|
SELECT
|
|
*
|
|
FROM
|
|
memory_map;
|