-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
41 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
Name: MacOS XProtect Detections | ||
Author: Matt Green - @mgreen27 | ||
Description: | | ||
This artifact provides details about XProtect detections on macOS. | ||
macOS includes built-in antivirus technology called XProtect for | ||
the signature-based detection and removal of malware. The system | ||
uses YARA and behavorial signatures. | ||
Reference: https://www.huntress.com/blog/dmxprotect-stop-drop-shut-malware-down-before-it-opens-up-shop | ||
|
||
SQLiteIdentifyQuery: | | ||
SELECT count(*) AS `Check` | ||
FROM sqlite_master | ||
WHERE type='table' | ||
AND name='events'; | ||
SQLiteIdentifyValue: 1 | ||
|
||
Categories: | ||
- MacOS | ||
|
||
FilenameRegex: "XPdb" | ||
Globs: | ||
- "/private/var/protected/xprotect/XPdb" | ||
|
||
Sources: | ||
- VQL: | | ||
SELECT * | ||
FROM Rows | ||
SQL: | | ||
SELECT * FROM events |
Oops, something went wrong.