Skip to content

Commit

Permalink
Merge pull request #39 from kylehickinson/deep-path-false-alerts
Browse files Browse the repository at this point in the history
Update regex paths to only match home folder library
  • Loading branch information
objective-see authored Apr 17, 2022
2 parents fc1fa56 + 79baa78 commit 1c94286
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Daemon/Daemon/watchList.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<string>Launch D &amp; A</string>
<key>paths</key>
<array>
<string>^(\/System|\/Users\/.+|)\/Library\/(LaunchDaemons|LaunchAgents)\/.+\.(?i)plist$</string>
<string>^(\/System|\/Users\/[^\/]+|)\/Library\/(LaunchDaemons|LaunchAgents)\/.+\.(?i)plist$</string>
</array>
<key>class</key>
<string>Launchd</string>
Expand All @@ -35,7 +35,7 @@
<string>Login Item</string>
<key>paths</key>
<array>
<string>^(\/Users\/.+|)\/Library\/Application Support\/com.apple.backgroundtaskmanagementagent\/backgrounditems.btm$</string>
<string>^(\/Users\/[^\/]+|)\/Library\/Application Support\/com.apple.backgroundtaskmanagementagent\/backgrounditems.btm$</string>
</array>
<key>class</key>
<string>LoginItem</string>
Expand Down

0 comments on commit 1c94286

Please sign in to comment.