License & Deployment Mix: 10 tools – 7 OSS, 3 commercial.

Color: Blue team.

What Is This Category?

Container runtime security is the layer that watches running containers / pods for malicious behaviour: unexpected exec into a container, kubectl-proxy abuse, container escape, cryptominer process trees, credential theft. Distinct from image scanning (“does this image contain a known-vuln library?”) and from CSPM (“does this cluster config follow CIS?”), runtime security operates on live syscalls inside the running container.

The category also covers admission control – the deploy-time gatekeeper that validates / mutates Kubernetes resources before they apply. Most production deployments stack at least one runtime detector with at least one admission controller.

Distinct from neighbouring categories

  • Cloud Security Posture (CSPM / CNAPP) – CNAPP scans the cloud / cluster configuration; container runtime watches the running workloads
  • EDR / XDR – EDR is per- host endpoint telemetry; container runtime is per-pod / per-container syscall-grade telemetry
  • IDS / IPS – IDS is on- the-wire; container runtime is on-the-host / on- the-pod

The information on these pages was researched by a combination of human review and large language models. To suggest an addition or correction, please contact us. Prepared by Rhodium Systems Inc., author of the ResorsIT platform — a unified IT operations management platform for IT teams and MSPs that integrates a curated suite of open-source, commercial, and SaaS applications into a single system with shared identity, single sign-on, access control, and a common audit trail. Use this catalogue only as a starting point for your own research, and review any tool carefully against your own requirements before relying on it. Catalogue data version 2026.197.

Comparison

Overview

Container runtime security splits into three sub- layers in practice: runtime detection (Falco / Tetragon / Tracee tap syscalls and emit alerts), runtime enforcement (Tetragon / KubeArmor block in-kernel), and admission control (Kyverno / OPA- Gatekeeper validate / mutate at deploy time). Most production deployments stack at least one tool from each sub-layer. StackRox / Red Hat ACS is the OSS platform that bundles several sub-layers; the commercial CNAPPs (Sysdig Secure, Aqua, Prisma Cloud Compute) take the same engines (or similar) and ship managed delivery.


Capability Matrix

ToolRuntime DetectEnforceAdmissionImage ScanNetwork Policy
Falcoyes (first-class)observation only
Tetragonyesyes (eBPF)partial (Cilium)
Traceeyesobservation only
Kyvernoyes (first-class)image-verifyyes (NetworkPolicy generation)
OPA / Gatekeeperyes (first-class)partialpartial
KubeArmoryesyes (LSM)
Sysdig Secureyes (Falco)yesyesyesyes
Aqua Cloud Securityyes (Tracee)yesyesyes (Trivy)yes
Prisma Cloud Computeyes (deepest)yes (in-line)yesyesyes
StackRox / Red Hat ACSyesyesyesyesyes (first-class)

License Comparison

ToolLicenseOSIType
FalcoApache-2.0yesOSS engine
TetragonApache-2.0yesOSS engine
TraceeApache-2.0yesOSS engine
KyvernoApache-2.0yesOSS admission controller
OPA / GatekeeperApache-2.0yesOSS policy engine
KubeArmorApache-2.0yesOSS enforcement engine
Sysdig SecureProprietaryCommercial CNAPP
Aqua Cloud SecurityProprietaryCommercial CNAPP
Prisma Cloud ComputeProprietaryCommercial CWPP (Palo Alto)
StackRox / Red Hat ACSApache-2.0 (OSS)yesOSS platform; ACS is the supported commercial tier

Mechanism Comparison

How each tool actually sees / acts on events.

ToolMechanismObserveEnforce
FalcoeBPF or kernel-moduleyes
TetragoneBPF (Cilium)yesyes (eBPF override)
TraceeeBPFyes
KyvernoK8s admission webhookyes (audit mode)yes (block)
OPA / GatekeeperK8s admission webhookyes (audit mode)yes (block)
KubeArmorLSM (AppArmor / BPF-LSM / SELinux)yesyes
Sysdig SecureFalco engine + extensionsyesyes
AquaTracee + Aqua agentyesyes
Prisma Cloud ComputeTwistlock Defender (proprietary)yesyes (deepest)
StackRox / ACScollector + admissionyesyes

SSO / OIDC

ToolOIDCSAMLSCIMNotes
Falcon/an/an/aHeadless agent
Tetragonn/an/an/aHeadless agent
Traceen/an/an/aHeadless agent
Kyvernon/an/an/aAdmission controller
OPA / Gatekeepern/an/an/aAdmission controller
KubeArmorn/an/an/aHeadless enforcer
Sysdig SecurepaidpaidpaidEnterprise tier
Aqua Cloud SecuritypaidpaidpaidEnterprise tier
Prisma Cloud ComputepaidpaidpaidEnterprise tier
StackRox / Red Hat ACSnativenativeNative OIDC + SAML in OSS

Composition Patterns

1. OSS-only stack (zero license cost)

Falco -- runtime detection (rich rule library) Tetragon -- in-kernel enforcement (eBPF) Kyverno -- admission control (YAML policies) Trivy (see cnapp/) -- image scanning at build + cluster scan

Output: full Kubernetes-security coverage on customer clusters without commercial license. Standard managed pattern.

2. Red Hat / OpenShift stack

StackRox / Red Hat ACS -- bundled platform (detection + admission + image + network)

Output: one platform for OpenShift customers. Single-vendor managed support.

3. Commercial CNAPP

Sysdig Secure (or Aqua, or Prisma Cloud Compute) -- managed bundle

Output: trade operational work for license cost. Same underlying engines (Falco / Tracee) as the OSS path in many cases.


Cost Tier

Approximate annual TCO for a 50-node Kubernetes fleet.

TierToolingApprox Cost
FreeFalco + Tetragon + Kyverno + Trivy$0 + operator time
MidStackRox / Red Hat ACS$30,000-100,000 / year (RHEL/OpenShift subscription tier)
HighSysdig Secure / Aqua / Prisma Cloud Compute$50,000-300,000 / year

Tools

10 tools.

Aqua Cloud Security

Aqua Cloud Security is a commercial cloud-native application protection platform (CNAPP) from Aqua Security, delivering image scanning, eBPF runtime protection, and CSPM/CWPP/KSPM built on the Trivy and Tracee engines.

License: Proprietary (proprietary) · Kind: web · Deploy: saas, native · SSO: OIDC, SAML

Website

Falco

CNCF-graduated open-source container runtime threat-detection engine; eBPF / kernel-module syscall taps + policy engine.

License: Apache-2.0 (OSS) · Kind: service · Deploy: k8s, native, docker, package · SSO: none

Website · Source

KubeArmor

CNCF-incubating runtime-security enforcement engine; uses LSM (AppArmor / BPF-LSM / SELinux) for in-kernel enforcement.

License: Apache-2.0 (OSS) · Kind: service · Deploy: k8s, native · SSO: none

Website · Source

Kyverno

CNCF-graduated Kubernetes-native policy engine; YAML-based admission control without a separate policy DSL.

License: Apache-2.0 (OSS) · Kind: service · Deploy: k8s, docker · SSO: none

Website · Source

OPA / Gatekeeper

CNCF-graduated general-purpose policy engine (OPA) plus Kubernetes admission controller (Gatekeeper); Rego policy language.

License: Apache-2.0 (OSS) · Kind: service · Deploy: k8s, docker, native · SSO: none

Website · Source

Prisma Cloud Compute

The Twistlock-derived container runtime tier of Palo Alto’s Prisma Cloud; CWPP leader; depth-of-runtime differentiator.

License: Proprietary (proprietary) · Kind: web · Deploy: saas, native · SSO: OIDC, SAML

Website

StackRox / Red Hat ACS

Red Hat-owned Kubernetes security platform; open-sourced 2022; ships as Red Hat Advanced Cluster Security (ACS) for OpenShift.

License: Apache-2.0 (OSS) · Kind: web · Deploy: k8s, native · SSO: OIDC, SAML

Website · Source

Sysdig Secure

Commercial CNAPP from the Falco creators; Falco runtime + CSPM / vulnerability + managed SaaS console.

License: Proprietary (proprietary) · Kind: web · Deploy: saas, native · SSO: OIDC, SAML

Website

Tetragon

CNCF eBPF-based security observability from Isovalent / Cilium project; kernel-level enforcement + observability.

License: Apache-2.0 (OSS) · Kind: service · Deploy: k8s, native, docker, package · SSO: none

Website · Source

Tracee

Aqua Security’s eBPF runtime-security engine; signature-based threat detection from kernel-level syscall observation.

License: Apache-2.0 (OSS) · Kind: service · Deploy: k8s, native, docker · SSO: none

Website · Source

ResorsIT Tools Catalog Search