mirror of
https://github.com/docker/docs.git
synced 2026-03-27 14:28:47 +07:00
Block vm86 syscalls in default seccomp profile
These provide an in kernel virtual machine for x86 real mode on x86 used by one very early DOS emulator. Not required for any normal use. Signed-off-by: Justin Cormack <justin.cormack@unikernel.com>
This commit is contained in:
@@ -316,5 +316,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{},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user