CME-602
seccomp-bpf Profile (Container Default)
Description
Applies the default OCI/Docker/Podman seccomp-bpf profile which blocks ~44 dangerous syscalls including kexec_load, mount, reboot, and others. Basis for container isolation.
CVSS Vector Impacts
| Metric | Transition | Rationale |
|---|---|---|
| Scope (S) | C → U | Blocked syscalls prevent container escape via kernel |
| Attack Complexity (AC) | L → H | Many kernel exploit primitives require blocked syscalls |
CWE Relationships
Verification
Verify container runtime has seccomp profile applied
$ podman inspect <container> | grep -A5 SecurityOpt
# Expected: seccomp
# Expected: seccomp
Platform: linux
$ kubectl get pod <pod> -o jsonpath='{.spec.securityContext.seccompProfile.type}'
# Expected: RuntimeDefault
# Expected: RuntimeDefault
Platform: kubernetes