Merge pull request #18969 from justincormack/vm86
Block vm86 syscalls in default seccomp profile
This commit is contained in:
commit
a81e438544
1 changed files with 12 additions and 0 deletions
|
@ -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{},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue