diff --git a/components/engine/daemon/execdriver/native/seccomp_default.go b/components/engine/daemon/execdriver/native/seccomp_default.go index da0ce1acca..309d065f9b 100644 --- a/components/engine/daemon/execdriver/native/seccomp_default.go +++ b/components/engine/daemon/execdriver/native/seccomp_default.go @@ -28,6 +28,13 @@ var defaultSeccompProfile = &configs.Seccomp{ Action: configs.Errno, Args: []*configs.Arg{}, }, + { + // Deny loading potentially persistent bpf programs into kernel + // already gated by CAP_SYS_ADMIN + Name: "bpf", + Action: configs.Errno, + Args: []*configs.Arg{}, + }, { // Time/Date is not namespaced Name: "clock_adjtime",