- rule: Shell running as root desc: Detect any shell running as root condition: > evt.type in (execve, execveat) and proc.name = bash and proc.pname not in (sshd, bash) and user.uid = 0 output: Shell run by root (user=%user.name command=%proc.cmdline) priority: WARNING tags: [container, shell, mitre_privilege_escalation]
复制代码
Falco 的应用场景
Kubernetes 安全监控
Falco 在 Kubernetes 集群中的应用场景非常广泛,它可以或许实时监控 Kubernetes 节点、容器、Pod 以及 Kubernetes API 的调用,帮助用户发现和应对集群中的异常活动。
不当的 Pod 操作:监控 Pod 的创建、删除、运行状态等操作,检测是否有未经授权的操作或恶意的 Pod 行为。