osquery-defense-kit/incident_response/firefox_addons.sql

10 lines
185 B
MySQL
Raw Permalink Normal View History

2023-02-23 14:35:38 +00:00
-- Return the list of installed Firefox addons
--
-- tags: postmortem
-- platform: posix
2023-05-08 17:20:47 +00:00
SELECT
firefox_addons.*
FROM
users
JOIN firefox_addons ON users.uid = firefox_addons.uid;