mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2025-01-21 04:50:42 +00:00
7 lines
182 B
SQL
7 lines
182 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; |