Fork of port of OpenBSD 'pledge()' function to Linux
Tommy Lincoln 859f71af3c updated ptable[] | hace 8 años | |
---|---|---|
.gitignore | hace 8 años | |
LICENSE | hace 8 años | |
README.md | hace 8 años | |
pledge.c | hace 8 años | |
pledge.h | hace 8 años | |
syscall_64.tbl | hace 8 años |
The aim of this is to implement pledge on linux using seccomp rules.
seccomp supports filtering syscalls in a way that isn't vulnerable to race conditions (as ptrace is).
The design and structure of the code is complete (parses the pledge string correctly, builds up a a bitmask using flags, adds rules for each flag), all that's left is filling in each of the promise sections with all the syscalls that are needed, and testing them.