Merge pull request #18959 from justincormack/finit_module
Deny finit_module in default seccomp profile
This commit is contained in:
commit
ad8bce2ce4
1 changed files with 6 additions and 0 deletions
|
@ -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",
|
||||
|
|
Loading…
Add table
Reference in a new issue