kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit 4bc39f19afc9c18f4ee0a157d19f6e6e5d2038aa
parent eab94eda499c318d6da0969d972523d0fd1ddca8
Author: Joris Vink <joris@coders.se>
Date:   Wed, 25 Sep 2019 15:44:03 +0200

add lstat to worker seccomp filter

Diffstat:
src/seccomp.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/seccomp.c b/src/seccomp.c @@ -42,6 +42,7 @@ static struct sock_filter filter_kore[] = { KORE_SYSCALL_ALLOW(open), KORE_SYSCALL_ALLOW(read), KORE_SYSCALL_ALLOW(stat), + KORE_SYSCALL_ALLOW(lstat), KORE_SYSCALL_ALLOW(fstat), KORE_SYSCALL_ALLOW(write), KORE_SYSCALL_ALLOW(fcntl),