Merge pull request #18969 from justincormack/vm86

Block vm86 syscalls in default seccomp profile
This commit is contained in:
Arnaud Porterie 2015-12-29 11:57:35 -08:00
commit a81e438544

View file

@ -356,5 +356,17 @@ var defaultSeccompProfile = &configs.Seccomp{
Action: configs.Errno,
Args: []*configs.Arg{},
},
{
// In kernel x86 real mode virtual machine
Name: "vm86",
Action: configs.Errno,
Args: []*configs.Arg{},
},
{
// In kernel x86 real mode virtual machine
Name: "vm86old",
Action: configs.Errno,
Args: []*configs.Arg{},
},
},
}