Merge pull request #18961 from justincormack/clock_adjtime
Block clock_adjtime in default seccomp config
This commit is contained in:
commit
8ac3d083a8
1 changed files with 6 additions and 0 deletions
|
@ -28,6 +28,12 @@ var defaultSeccompProfile = &configs.Seccomp{
|
|||
Action: configs.Errno,
|
||||
Args: []*configs.Arg{},
|
||||
},
|
||||
{
|
||||
// Time/Date is not namespaced
|
||||
Name: "clock_adjtime",
|
||||
Action: configs.Errno,
|
||||
Args: []*configs.Arg{},
|
||||
},
|
||||
{
|
||||
// Time/Date is not namespaced
|
||||
Name: "clock_settime",
|
||||
|
|
Loading…
Add table
Reference in a new issue