mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2024-12-14 01:54:32 +00:00
9 lines
199 B
SQL
9 lines
199 B
SQL
-- Return shared memory info
|
|
--
|
|
-- tags: postmortem
|
|
-- platform: linux
|
|
SELECT shm.*,
|
|
p.name AS p_name,
|
|
p.path AS p_path
|
|
FROM shared_memory AS shm
|
|
LEFT JOIN processes p ON shm.pid = p.pid; |