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;
|