mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2024-12-13 09:34:34 +00:00
8 lines
117 B
MySQL
8 lines
117 B
MySQL
|
-- Retrieves the memory map per process
|
||
|
-- platform: posix
|
||
|
-- tags: postmortem
|
||
|
SELECT
|
||
|
*
|
||
|
FROM
|
||
|
process_memory_map;
|