osquery-defense-kit/incident_response/process_open_pipes.sql

12 lines
219 B
MySQL
Raw Normal View History

-- Return the list of open pipes per process
2023-02-23 14:35:38 +00:00
--
-- tags: postmortem
-- platform: posix
SELECT
p.path AS p_path,
p.name AS p_name,
pop.*
FROM
process_open_pipes AS pop
LEFT JOIN processes p ON pop.pid = p.pid;