aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar rusty-snake <print_hello_world+Public@protonmail.com>2019-08-25 19:12:00 +0200
committerLibravatar rusty-snake <print_hello_world+Public@protonmail.com>2019-08-30 21:01:10 +0200
commit511cad9ed24a544f607193d74bfef8a449fe3a0b (patch)
tree0a50f9868ebaabb043009cce790f21fddf17593e
parentMerge branch 'master' of https://github.com/netblue30/firejail (diff)
downloadfirejail-511cad9ed24a544f607193d74bfef8a449fe3a0b.tar.gz
firejail-511cad9ed24a544f607193d74bfef8a449fe3a0b.tar.zst
firejail-511cad9ed24a544f607193d74bfef8a449fe3a0b.zip
Use new seccomp syntax from #2926
-rw-r--r--etc/akregator.profile2
-rw-r--r--etc/bibletime.profile2
-rw-r--r--etc/falkon.profile2
-rw-r--r--etc/firefox-common.profile2
-rw-r--r--etc/kiwix-desktop.profile2
-rw-r--r--etc/qutebrowser.profile2
-rw-r--r--etc/skypeforlinux.profile2
-rw-r--r--etc/start-tor-browser.profile2
-rw-r--r--etc/teamspeak3.profile2
-rw-r--r--etc/torbrowser-launcher.profile2
10 files changed, 10 insertions, 10 deletions
diff --git a/etc/akregator.profile b/etc/akregator.profile
index 466eff22d..34933f283 100644
--- a/etc/akregator.profile
+++ b/etc/akregator.profile
@@ -36,7 +36,7 @@ nou2f
36novideo 36novideo
37protocol unix,inet,inet6,netlink 37protocol unix,inet,inet6,netlink
38# chroot syscalls are needed for setting up the built-in sandbox 38# chroot syscalls are needed for setting up the built-in sandbox
39seccomp.drop @clock,@cpu-emulation,@debug,@module,@obsolete,@raw-io,@reboot,@resources,@swap,acct,add_key,bpf,fanotify_init,io_cancel,io_destroy,io_getevents,io_setup,io_submit,ioprio_set,kcmp,keyctl,mount,name_to_handle_at,nfsservctl,ni_syscall,open_by_handle_at,personality,pivot_root,process_vm_readv,ptrace,remap_file_pages,request_key,setdomainname,sethostname,syslog,umount,umount2,userfaultfd,vhangup,vmsplice 39seccomp !chroot
40shell none 40shell none
41 41
42disable-mnt 42disable-mnt
diff --git a/etc/bibletime.profile b/etc/bibletime.profile
index 4f1b05c88..0de3bc480 100644
--- a/etc/bibletime.profile
+++ b/etc/bibletime.profile
@@ -42,7 +42,7 @@ notv
42nou2f 42nou2f
43novideo 43novideo
44protocol unix,inet,inet6,netlink 44protocol unix,inet,inet6,netlink
45seccomp.drop @clock,@cpu-emulation,@debug,@module,@obsolete,@raw-io,@reboot,@resources,@swap,acct,add_key,bpf,fanotify_init,io_cancel,io_destroy,io_getevents,io_setup,io_submit,ioprio_set,kcmp,keyctl,mount,name_to_handle_at,nfsservctl,ni_syscall,open_by_handle_at,personality,pivot_root,process_vm_readv,ptrace,remap_file_pages,request_key,setdomainname,sethostname,syslog,umount,umount2,userfaultfd,vhangup,vmsplice 45seccomp !chroot
46shell none 46shell none
47 47
48disable-mnt 48disable-mnt
diff --git a/etc/falkon.profile b/etc/falkon.profile
index ddcda6228..0024b6660 100644
--- a/etc/falkon.profile
+++ b/etc/falkon.profile
@@ -34,7 +34,7 @@ notv
34nou2f 34nou2f
35protocol unix,inet,inet6,netlink 35protocol unix,inet,inet6,netlink
36# blacklisting of chroot system calls breaks falkon 36# blacklisting of chroot system calls breaks falkon
37seccomp.drop @clock,@cpu-emulation,@debug,@module,@obsolete,@raw-io,@reboot,@resources,@swap,acct,add_key,bpf,fanotify_init,io_cancel,io_destroy,io_getevents,io_setup,io_submit,ioprio_set,kcmp,keyctl,mount,name_to_handle_at,nfsservctl,ni_syscall,open_by_handle_at,personality,pivot_root,process_vm_readv,ptrace,remap_file_pages,request_key,setdomainname,sethostname,syslog,umount,umount2,userfaultfd,vhangup,vmsplice 37seccomp !chroot
38# tracelog 38# tracelog
39 39
40private-dev 40private-dev
diff --git a/etc/firefox-common.profile b/etc/firefox-common.profile
index 6ad4a9bc2..02d6199a0 100644
--- a/etc/firefox-common.profile
+++ b/etc/firefox-common.profile
@@ -46,7 +46,7 @@ notv
46?BROWSER_DISABLE_U2F: nou2f 46?BROWSER_DISABLE_U2F: nou2f
47protocol unix,inet,inet6,netlink 47protocol unix,inet,inet6,netlink
48# The below seccomp configuration still permits chroot syscall. See https://github.com/netblue30/firejail/issues/2506 for possible workarounds. 48# The below seccomp configuration still permits chroot syscall. See https://github.com/netblue30/firejail/issues/2506 for possible workarounds.
49seccomp.drop @clock,@cpu-emulation,@debug,@module,@obsolete,@raw-io,@reboot,@resources,@swap,acct,add_key,bpf,fanotify_init,io_cancel,io_destroy,io_getevents,io_setup,io_submit,ioprio_set,kcmp,keyctl,mount,name_to_handle_at,nfsservctl,ni_syscall,open_by_handle_at,personality,pivot_root,process_vm_readv,ptrace,remap_file_pages,request_key,setdomainname,sethostname,syslog,umount,umount2,userfaultfd,vhangup,vmsplice 49seccomp !chroot
50shell none 50shell none
51# Disable tracelog, it breaks or causes major issues with many firefox based browsers, see https://github.com/netblue30/firejail/issues/1930. 51# Disable tracelog, it breaks or causes major issues with many firefox based browsers, see https://github.com/netblue30/firejail/issues/1930.
52#tracelog 52#tracelog
diff --git a/etc/kiwix-desktop.profile b/etc/kiwix-desktop.profile
index db8f7880c..8b7b12882 100644
--- a/etc/kiwix-desktop.profile
+++ b/etc/kiwix-desktop.profile
@@ -39,7 +39,7 @@ notv
39nou2f 39nou2f
40novideo 40novideo
41protocol unix,inet,inet6,netlink 41protocol unix,inet,inet6,netlink
42seccomp.drop @clock,@cpu-emulation,@debug,@module,@obsolete,@raw-io,@reboot,@resources,@swap,acct,add_key,bpf,fanotify_init,io_cancel,io_destroy,io_getevents,io_setup,io_submit,ioprio_set,kcmp,keyctl,mount,name_to_handle_at,nfsservctl,ni_syscall,open_by_handle_at,personality,pivot_root,process_vm_readv,ptrace,remap_file_pages,request_key,setdomainname,sethostname,syslog,umount,umount2,userfaultfd,vhangup,vmsplice 42seccomp !chroot
43shell none 43shell none
44 44
45disable-mnt 45disable-mnt
diff --git a/etc/qutebrowser.profile b/etc/qutebrowser.profile
index a7ba18292..95c189458 100644
--- a/etc/qutebrowser.profile
+++ b/etc/qutebrowser.profile
@@ -36,5 +36,5 @@ noroot
36notv 36notv
37protocol unix,inet,inet6,netlink 37protocol unix,inet,inet6,netlink
38# blacklisting of chroot system calls breaks qt webengine 38# blacklisting of chroot system calls breaks qt webengine
39seccomp.drop @clock,@cpu-emulation,@debug,@module,@obsolete,@raw-io,@reboot,@resources,@swap,acct,add_key,bpf,fanotify_init,io_cancel,io_destroy,io_getevents,io_setup,io_submit,ioprio_set,kcmp,keyctl,mount,name_to_handle_at,nfsservctl,ni_syscall,open_by_handle_at,personality,pivot_root,process_vm_readv,ptrace,remap_file_pages,request_key,setdomainname,sethostname,syslog,umount,umount2,userfaultfd,vhangup,vmsplice 39seccomp !chroot
40# tracelog 40# tracelog
diff --git a/etc/skypeforlinux.profile b/etc/skypeforlinux.profile
index 8a45f2465..fe9ededa4 100644
--- a/etc/skypeforlinux.profile
+++ b/etc/skypeforlinux.profile
@@ -25,7 +25,7 @@ nonewprivs
25noroot 25noroot
26notv 26notv
27protocol unix,inet,inet6,netlink 27protocol unix,inet,inet6,netlink
28seccomp.drop @clock,@cpu-emulation,@debug,@module,@obsolete,@raw-io,@reboot,@resources,@swap,acct,add_key,bpf,fanotify_init,io_cancel,io_destroy,io_getevents,io_setup,io_submit,ioprio_set,kcmp,keyctl,mount,name_to_handle_at,nfsservctl,ni_syscall,open_by_handle_at,pivot_root,remap_file_pages,request_key,setdomainname,sethostname,syslog,umount,umount2,userfaultfd,vhangup,vmsplice 28seccomp !chroot
29shell none 29shell none
30 30
31disable-mnt 31disable-mnt
diff --git a/etc/start-tor-browser.profile b/etc/start-tor-browser.profile
index 1c2a2cd10..a8b5d109e 100644
--- a/etc/start-tor-browser.profile
+++ b/etc/start-tor-browser.profile
@@ -28,7 +28,7 @@ notv
28nou2f 28nou2f
29novideo 29novideo
30protocol unix,inet,inet6 30protocol unix,inet,inet6
31seccomp.drop @clock,@cpu-emulation,@debug,@module,@obsolete,@raw-io,@reboot,@resources,@swap,acct,add_key,bpf,fanotify_init,io_cancel,io_destroy,io_getevents,io_setup,io_submit,ioprio_set,kcmp,keyctl,mount,name_to_handle_at,nfsservctl,ni_syscall,open_by_handle_at,personality,pivot_root,process_vm_readv,ptrace,remap_file_pages,request_key,setdomainname,sethostname,syslog,umount,umount2,userfaultfd,vhangup,vmsplice 31seccomp !chroot
32shell none 32shell none
33# tracelog may cause issues, see github issue #1930 33# tracelog may cause issues, see github issue #1930
34#tracelog 34#tracelog
diff --git a/etc/teamspeak3.profile b/etc/teamspeak3.profile
index b34d15731..c1c666f58 100644
--- a/etc/teamspeak3.profile
+++ b/etc/teamspeak3.profile
@@ -33,7 +33,7 @@ notv
33nou2f 33nou2f
34novideo 34novideo
35protocol unix,inet,inet6,netlink 35protocol unix,inet,inet6,netlink
36seccomp.drop @clock,@cpu-emulation,@debug,@module,@obsolete,@raw-io,@reboot,@resources,@swap,acct,add_key,bpf,fanotify_init,io_cancel,io_destroy,io_getevents,io_setup,io_submit,ioprio_set,kcmp,keyctl,mount,name_to_handle_at,nfsservctl,ni_syscall,open_by_handle_at,pivot_root,remap_file_pages,request_key,setdomainname,sethostname,syslog,umount,umount2,userfaultfd,vhangup,vmsplice 36seccomp !chroot
37shell none 37shell none
38 38
39disable-mnt 39disable-mnt
diff --git a/etc/torbrowser-launcher.profile b/etc/torbrowser-launcher.profile
index 8485c0c4c..1183cd2f7 100644
--- a/etc/torbrowser-launcher.profile
+++ b/etc/torbrowser-launcher.profile
@@ -42,7 +42,7 @@ notv
42nou2f 42nou2f
43novideo 43novideo
44protocol unix,inet,inet6 44protocol unix,inet,inet6
45seccomp.drop @clock,@cpu-emulation,@debug,@module,@obsolete,@raw-io,@reboot,@resources,@swap,acct,add_key,bpf,fanotify_init,io_cancel,io_destroy,io_getevents,io_setup,io_submit,ioprio_set,kcmp,keyctl,mount,name_to_handle_at,nfsservctl,ni_syscall,open_by_handle_at,personality,pivot_root,process_vm_readv,ptrace,remap_file_pages,request_key,setdomainname,sethostname,syslog,umount,umount2,userfaultfd,vhangup,vmsplice 45seccomp !chroot
46shell none 46shell none
47# tracelog may cause issues, see github issue #1930 47# tracelog may cause issues, see github issue #1930
48#tracelog 48#tracelog