Merge pull request #18968 from justincormack/stime

Block stime in default seccomp profile
This commit is contained in:
Arnaud Porterie 2015-12-29 10:07:40 -08:00
commit 294336a1af

View file

@ -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",