mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2025-01-07 22:09:31 +00:00
9 lines
136 B
MySQL
9 lines
136 B
MySQL
|
-- Returns a list of malware matches from macOS XProtect
|
||
|
--
|
||
|
-- tags: postmortem
|
||
|
-- platform: darwin
|
||
|
SELECT
|
||
|
*
|
||
|
FROM
|
||
|
xprotect_reports;
|