mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2024-12-12 17:14:37 +00:00
9 lines
159 B
SQL
9 lines
159 B
SQL
-- Returns a list of malware matches from macOS XProtect
|
|
--
|
|
-- tags: persistent often malware xprotect
|
|
-- platform: darwin
|
|
SELECT
|
|
*
|
|
FROM
|
|
xprotect_reports;
|