Last Modified: 2025-07-26 14:57:01Z
Table of Contents
Seccomp is a security feature that Linux offers, by restricting system calls.
1. Reference
-
-
include/seccomp.h.in: Macros and constants,
SCMP_ACT_ALLOW
andSCMP_ACT_KILL_PROCESS
for example, are defined in this file. It is useful when you decompile functions but the decompiled output only shows integers, because it was macros in source code.
-