mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2025-02-16 09:27:06 +00:00
10 lines
185 B
SQL
10 lines
185 B
SQL
-- Return the list of installed Firefox addons
|
|
--
|
|
-- tags: postmortem
|
|
-- platform: posix
|
|
SELECT
|
|
firefox_addons.*
|
|
FROM
|
|
users
|
|
JOIN firefox_addons ON users.uid = firefox_addons.uid;
|