Skip to content

Commit

Permalink
Remove accidental trailing comma, remove accidental line changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mattlorimor committed Jan 23, 2025
1 parent c3e68a0 commit 843bf17
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions detection/evasion/unexpected-alf-exceptions-macos.sql
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ WHERE -- Filter out stock exceptions to decrease overhead
'/usr/libexec/discoveryd',
'/usr/libexec/xartstorageremoted',
'/usr/sbin/mDNSResponder',
'/usr/sbin/racoon',
'/usr/sbin/racoon'
) -- Ignore files that ahve already been removed
AND file.filename NOT NULL
AND exception_key NOT IN (
Expand All @@ -69,7 +69,8 @@ WHERE -- Filter out stock exceptions to decrease overhead
-- Homebrew
AND NOT exception_key LIKE ',%,/opt/homebrew/Cellar/%,501'
-- Nix
AND NOT exception_key LIKE ',%,/nix/store/%,%'
AND NOT exception_key LIKE ',%,/nix/store/%,0'
AND NOT exception_key LIKE ',%,/nix/store/%,501'
-- Apple (root)
AND NOT exception_key LIKE 'Software Signing,com.apple.%,0'
-- App Store
Expand Down

0 comments on commit 843bf17

Please sign in to comment.