Add detectors for unexpected executables in strange places
This commit is contained in:
parent
5b7858e3cf
commit
49f2d5a579
|
@ -70,3 +70,5 @@ WHERE
|
|||
AND NOT file.directory LIKE "/tmp/msu-target-%"
|
||||
-- I don't know man. I don't work here.
|
||||
AND NOT (file.path LIKE ("/tmp/%compressed") AND size < 4000 AND uid>500)
|
||||
-- Executables too small to even hold "#!/bin/sh\nuid"
|
||||
AND NOT (file.type = "regular" AND size < 10)
|
Loading…
Reference in New Issue