mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2025-01-29 00:32:44 +00:00
9 lines
193 B
SQL
9 lines
193 B
SQL
-- Retrieves chrome extensions that execute on a broad set of URLs.
|
|
-- tags: postmortem
|
|
-- platform: posix
|
|
SELECT
|
|
known_hosts.*
|
|
FROM
|
|
users
|
|
JOIN known_hosts ON users.uid = known_hosts.uid
|