-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathfwdctl-seccomp.json
85 lines (85 loc) · 2.14 KB
/
fwdctl-seccomp.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"defaultAction": "SCMP_ACT_ERRNO",
"architectures": [
"SCMP_ARCH_X86_64",
"SCMP_ARCH_X86",
"SCMP_ARCH_X32"
],
"syscalls": [
{
"names": [
"access",
"arch_prctl",
"bind",
"brk",
"capget",
"capset",
"chdir",
"clone",
"clone3",
"close",
"dup3",
"epoll_create1",
"epoll_ctl",
"epoll_pwait",
"eventfd",
"eventfd2",
"execve",
"exit_group",
"faccessat2",
"fchown",
"fcntl",
"fstat",
"fstatfs",
"futex",
"getcwd",
"getdents64",
"geteuid",
"getpgrp",
"getpid",
"getppid",
"getrandom",
"getrlimit",
"getsockname",
"gettid",
"ioctl",
"lseek",
"lstat",
"madvise",
"mmap",
"mprotect",
"munmap",
"nanosleep",
"newfstatat",
"openat",
"pipe2",
"prctl",
"pread64",
"prlimit64",
"read",
"recvfrom",
"rseq",
"rt_sigaction",
"rt_sigprocmask",
"rt_sigreturn",
"sched_getaffinity",
"sendto",
"set_robust_list",
"set_tid_address",
"setgid",
"setgroups",
"setrlimit",
"setsid",
"setuid",
"sigaltstack",
"socket",
"stat",
"tgkill",
"wait4",
"waitid",
"write"
],
"action": "SCMP_ACT_ALLOW"
}
]
}