Merge pull request #18968 from justincormack/stime
Block stime in default seccomp profile
This commit is contained in:
commit
294336a1af
1 changed files with 6 additions and 0 deletions
|
@ -280,6 +280,12 @@ var defaultSeccompProfile = &configs.Seccomp{
|
|||
Action: configs.Errno,
|
||||
Args: []*configs.Arg{},
|
||||
},
|
||||
{
|
||||
// Time/Date is not namespaced
|
||||
Name: "stime",
|
||||
Action: configs.Errno,
|
||||
Args: []*configs.Arg{},
|
||||
},
|
||||
{
|
||||
// Deny start/stop swapping to file/device
|
||||
Name: "swapon",
|
||||
|
|
Loading…
Add table
Reference in a new issue