mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2024-12-11 08:34:34 +00:00
8 lines
148 B
SQL
8 lines
148 B
SQL
-- Retrieves all the environment variables per process in the target system.
|
|
-- tags: postmortem
|
|
-- platform: posix
|
|
SELECT
|
|
*
|
|
FROM
|
|
process_envs;
|