mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2024-12-13 09:34:34 +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;
|