mirror of
https://github.com/falcosecurity/falco.git
synced 2025-07-03 09:56:45 +00:00
Exclude exe_running_docker_save in the "Modify Shell Configuration File" rule
Signed-off-by: Jean-Philippe Lachance <jplachance@coveo.com>
This commit is contained in:
parent
146343e5f0
commit
03e8b7f53d
@ -443,10 +443,11 @@
|
|||||||
open_write and
|
open_write and
|
||||||
(fd.filename in (shell_config_filenames) or
|
(fd.filename in (shell_config_filenames) or
|
||||||
fd.name in (shell_config_files) or
|
fd.name in (shell_config_files) or
|
||||||
fd.directory in (shell_config_directories)) and
|
fd.directory in (shell_config_directories))
|
||||||
not proc.name in (shell_binaries)
|
and not proc.name in (shell_binaries)
|
||||||
|
and not exe_running_docker_save
|
||||||
output: >
|
output: >
|
||||||
a shell configuration file has been modified (user=%user.name command=%proc.cmdline file=%fd.name container_id=%container.id image=%container.image.repository)
|
a shell configuration file has been modified (user=%user.name command=%proc.cmdline parent=%proc.pname pcmdline=%proc.pcmdline file=%fd.name container_id=%container.id image=%container.image.repository)
|
||||||
priority:
|
priority:
|
||||||
WARNING
|
WARNING
|
||||||
tag: [file, mitre_persistence]
|
tag: [file, mitre_persistence]
|
||||||
|
Loading…
Reference in New Issue
Block a user