diff --git a/daemon/execdriver/native/seccomp_default.go b/daemon/execdriver/native/seccomp_default.go index 1075a0b315..1e8630851d 100644 --- a/daemon/execdriver/native/seccomp_default.go +++ b/daemon/execdriver/native/seccomp_default.go @@ -71,6 +71,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",