Seccomp stands for “Secure Computing Mode”. It’s a security feature of the Linux kernel. Simply put, seccomp restricts the system calls that a process can make.
Since system calls are the way that users interact with kernel space this effectively means seccomp protects your kernel, …