// AI NATIVE STACK

AI Native › AI Native Infra › Governance, Policy and Security › Falco

CRASH COURSE · AI-NATIVE · intermediate · 9 min read · syscall

Falco — detect risky runtime behavior before it becomes an incident.

governanceai-nativefalcosecurityruntime

TL;DR — Falco watches Linux syscalls and Kubernetes events to detect suspicious runtime behavior. For AI platforms it helps catch container escapes, unexpected shell access, crypto-mining, and other behaviors that policy at admission time cannot see.

What it is

Falco is a runtime security engine from the CNCF that inspects kernel events and matches them against rules. In the AI Native landscape it sits in AI Native Infra › Governance, Policy and Security.

Why it exists

Admission control only tells you what was approved. Falco tells you what is happening now. That matters when an AI workload starts spawning shells, touching host paths, or reaching into places it shouldn't.

How it works

Falco taps eBPF or kernel modules to observe syscalls, then evaluates rule conditions against processes, files, network connections, and Kubernetes metadata. Matching events are emitted as alerts to stdout, webhook, or SIEM integrations.

Key features

  • Runtime detection for Linux and Kubernetes.
  • Rule language for behavior-based alerts.
  • Container context built into event output.
  • SIEM friendly through webhook and log sinks.

Quick start

- rule: Shell in container
  condition: spawned_process and container
  output: "Shell spawned in container (user=%user.name container=%container.name)"
  priority: WARNING
  tags: [container, shell, ai-platform]

When to use, when to skip

Use it when you need runtime detection in addition to admission policy. Skip it if your platform is tiny and you don't have anyone to respond to alerts.

heads upFalco is only as good as its rules and response pipeline. Alerts without action become noise.

vs / alongside

ToolRoleNote
FalcoRuntime detectionBehavior and syscall based
OPAPolicy at admissionPrevention layer
KyvernoKubernetes policyYAML-first admission checks
KubernetesTargetWhere alerts originate

References

Verified against Falco docs, May 2026.

← AI Native Stack
© cvam — written in plaintext, served warm