-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfreenginx-seccomp.json
More file actions
53 lines (53 loc) · 1.03 KB
/
freenginx-seccomp.json
File metadata and controls
53 lines (53 loc) · 1.03 KB
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
{
"defaultAction": "SCMP_ACT_ALLOW",
"architectures": ["SCMP_ARCH_X86_64"],
"syscalls": [
{
"names": [
"kexec_load",
"create_module",
"init_module",
"finit_module",
"delete_module",
"iopl",
"ioperm",
"swapon",
"swapoff",
"sysfs",
"nfsservctl",
"reboot",
"quotactl",
"mount",
"umount2",
"pivot_root",
"ioprio_set",
"kcmp",
"kexec_file_load",
"ptrace",
"process_vm_readv",
"process_vm_writev",
"perf_event_open",
"add_key",
"request_key",
"keyctl",
"mbind",
"migrate_pages",
"move_pages",
"set_mempolicy",
"userfaultfd",
"ustat",
"vhangup",
"afs_syscall",
"breakpoint",
"cacheflush",
"lookup_dcookie",
"modify_ldt",
"uselib",
"vm86",
"vm86old",
"_sysctl"
],
"action": "SCMP_ACT_ERRNO"
}
]
}