You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add gcp_audiLog and azure_platformlogs as source
* fix the dup words
* fix test comment
* use %[1]s format to remove dup args and run the tests
* write working rule to pass the test
condition = "spawned_process and container and shell_procs and proc.tty != 0 and container_entrypoint"
24
24
output = "A shell was spawned in a container with an attached terminal (user=%user.name %container.info shell=%proc.name parent=%proc.pname cmdline=%proc.cmdline terminal=%proc.tty container_id=%container.id image=%container.image.repository)"
25
25
priority = "notice"
26
-
source = "syscall" // syscallor k8s_audit
26
+
source = "syscall" // syscall, k8s_audit, aws_cloudtrail, gcp_auditlog or azure_platformlogs
27
27
28
28
29
29
exceptions {
@@ -64,7 +64,7 @@ The following arguments are supported:
64
64
*`condition` - (Required) A [Falco condition](https://falco.org/docs/rules/) is simply a Boolean predicate on Sysdig events expressed using the Sysdig [filter syntax](http://www.sysdig.org/wiki/sysdig-user-guide/#filtering) and macro terms.
65
65
*`output` - (Optional) Add additional information to each Falco notification's output. Required if append is false.
66
66
*`priority` - (Optional) The priority of the Falco rule. It can be: "emergency", "alert", "critical", "error", "warning", "notice", "info" or "debug". By default is "warning".
67
-
*`source` - (Optional) The source of the event. It can be either "syscall", "k8s_audit"or "aws_cloudtrail". Required if append is false.
67
+
*`source` - (Optional) The source of the event. It can be either "syscall", "k8s_audit", "aws_cloudtrail", "gcp_auditlog", or "azure_platformlogs". Required if append is false.
68
68
*`exceptions` - (Optional) The exceptions key is a list of identifier plus list of tuples of filtercheck fields. See below for details.
69
69
*`append` - (Optional) This indicates that the rule being created appends the condition to an existing Sysdig-provided rule. By default this is false. Appending to user-created rules is not supported by the API.
70
70
@@ -95,4 +95,4 @@ Secure Falco runtime rules can be imported using the ID, e.g.
0 commit comments