mirror of
https://github.com/falcosecurity/falco.git
synced 2025-08-16 21:27:38 +00:00
Add more curl download checks
Signed-off-by: Erick Cheng <19863605+ec4n6@users.noreply.github.com>
This commit is contained in:
parent
851033c5f4
commit
749d4b4512
@ -3095,7 +3095,14 @@
|
|||||||
condition: (never_true)
|
condition: (never_true)
|
||||||
|
|
||||||
- macro: curl_download
|
- macro: curl_download
|
||||||
condition: proc.name = curl and (proc.cmdline contains (" > ") or proc.cmdline contains (" >> ") or proc.cmdline contains (" | "))
|
condition: proc.name = curl and
|
||||||
|
(proc.cmdline contains (" > ") or
|
||||||
|
proc.cmdline contains (" >> ") or
|
||||||
|
proc.cmdline contains (" | ") or
|
||||||
|
proc.cmdline contains (" -o ") or
|
||||||
|
proc.cmdline contains (" --output ") or
|
||||||
|
proc.cmdline contains (" -O ") or
|
||||||
|
proc.cmdline contains (" --remote-name "))
|
||||||
|
|
||||||
- rule: Launch Ingress Remote File Copy Tools in Container
|
- rule: Launch Ingress Remote File Copy Tools in Container
|
||||||
desc: Detect ingress remote file copy tools launched in container
|
desc: Detect ingress remote file copy tools launched in container
|
||||||
|
Loading…
Reference in New Issue
Block a user