diff --git a/components/engine/daemon/execdriver/native/seccomp_default.go b/components/engine/daemon/execdriver/native/seccomp_default.go index 2b87084e7b..de6b7587b6 100644 --- a/components/engine/daemon/execdriver/native/seccomp_default.go +++ b/components/engine/daemon/execdriver/native/seccomp_default.go @@ -77,6 +77,12 @@ var defaultSeccompProfile = &configs.Seccomp{ Action: configs.Errno, Args: []*configs.Arg{}, }, + { + // Deny manipulation and functions on kernel modules. + Name: "finit_module", + Action: configs.Errno, + Args: []*configs.Arg{}, + }, { // Deny retrieval of exported kernel and module symbols Name: "get_kernel_syms",