mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2025-02-17 18:07:10 +00:00
Merge pull request #395 from r0cketlad/16Oct2024
refactoring alerts to reduce noise
This commit is contained in:
commit
0090392de3
@ -47,10 +47,14 @@ WHERE
|
||||
OR file.path LIKE '/dev/shm/jack_db%'
|
||||
)
|
||||
)
|
||||
AND NOT (
|
||||
file.size <= 32
|
||||
AND file.path LIKE '/dev/shm/%'
|
||||
)
|
||||
AND file.path NOT LIKE '/dev/shm/lttng-ust-wait-%'
|
||||
AND file.path NOT LIKE '/dev/shm/flatpak-%'
|
||||
AND file.path NOT LIKE '/dev/shm/libpod_rootless_lock_%'
|
||||
AND file.path NOT LIKE '/dev/shm/sem.mp-%'
|
||||
AND file.path NOT LIKE '%/../%'
|
||||
AND file.path NOT LIKE '%/./%'
|
||||
AND file.path NOT IN ('/dev/.mdadm/', '/dev/shm/libpod_lock')
|
||||
AND file.path NOT IN ('/dev/.mdadm/', '/dev/shm/libpod_lock', '/dev/shm/sem.camlock')
|
||||
|
@ -3,7 +3,7 @@
|
||||
-- false-positives:
|
||||
-- * many
|
||||
--
|
||||
-- tags: transient process state
|
||||
-- tags: transient process state extra
|
||||
-- platform: linux
|
||||
SELECT
|
||||
f.ctime AS p0_ctime,
|
||||
|
@ -3,7 +3,7 @@
|
||||
-- false-positives:
|
||||
-- * many
|
||||
--
|
||||
-- tags: transient process state
|
||||
-- tags: transient process state extra
|
||||
-- platform: darwin
|
||||
SELECT
|
||||
f.ctime,
|
||||
|
Loading…
Reference in New Issue
Block a user