mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2025-03-08 03:37:37 +00:00
Add ~/.config/.* to search criteria
This commit is contained in:
parent
cd8ec86341
commit
7a61b5eced
@ -24,7 +24,8 @@ FROM
|
||||
LEFT JOIN magic ON file.path = magic.path
|
||||
WHERE
|
||||
(
|
||||
file.path LIKE '/home/%/.config/%%/.%/%'
|
||||
file.path LIKE "/home/%/.config/.%"
|
||||
OR file.path LIKE '/home/%/.config/%%/.%/%'
|
||||
OR file.path LIKE '/home/%/.config/.%/%'
|
||||
OR file.path LIKE '/home/%/.config/%%/.%/.%'
|
||||
OR file.path LIKE '/root/.config/%%/.%/%'
|
||||
@ -36,3 +37,4 @@ WHERE
|
||||
AND file.path NOT LIKE '%/./%'
|
||||
AND file.path NOT LIKE '/root/.debug/.build-id/%'
|
||||
AND file.path NOT LIKE '/home/%/.config/%/.git%'
|
||||
AND file.path NOT LIKE '/home/%/.config/.gsd-keyboard.settings-ported'
|
||||
|
Loading…
Reference in New Issue
Block a user