sandbox-app-launcher - Sandboxed Application Launcher
sandbox-app-launcher is an application launcher that starts each app inside its own restrictive sandbox. It runs each app as its own user, in a bubblewrap sandbox and confined by AppArmor.
Introduction[edit]
sandbox-app-launcher
is an application launcher that can start each application inside its own restrictive sandbox. It runs each application as its own user, within a bubblewrap sandbox and confined by AppArmor.
This launcher is geared towards end-user applications, not any system software. The directory /shared
is shared across all application sandboxes to transfer files across.
This implements a permissions system to configure what applications can access. There are currently five available permissions:
- network access;
- webcam access;
- microphone access;
- shared storage access (read-only or read-write); and
- dynamic native code execution.
All user-installed applications will be automatically configured to run in the sandbox and a prompt will ask which permissions should be granted to the application (not implemented yet).
The launcher is currently a work-in-progress and is not yet ready for actual use. To learn more, see:
- https://github.com/Kicksecure/sandbox-app-launcher
- https://forums.whonix.org/t/system-wide-sandboxing-framework-sandbox-app-launcher/9008
Design[edit]
Bubblewrap allows developers to make use of namespaces and seccomp. All applications are run in mount, PID, cgroup and UTS namespaces; IPC namespaces are planned but are not currently implemented due to limitations in Xorg. Fine-grained filesystem restrictions are implemented via mount namespaces and AppArmor. Seccomp blocks certain syscalls which can greatly reduce kernel attack surface among other things.
All applications by default use a seccomp whitelist to block dangerous and unused syscalls. In addition, the arguments of some syscalls are filtered to:
- Block unused socket address families.
- Block any dangerous or unused ioctls such as TIOCSTI (can be used in sandbox escapes), TIOCSETD (can increase kernel attack surface by loading vulnerable line disciplines), SIOCGIFHWADDR (can retrieve the user’s MAC address), etc.
- Implement W^X (explained in detail further below).
Apparmor also gives fine-grained controls over IPC signals, D-Bus, UNIX sockets, ptrace and more.
Sandbox Escape Mitigation[edit]
Table: Sandboxed Application Launcher Mitigations
Sandbox Escape Vector | Mitigation |
---|---|
D-Bus | D-Bus is common avenue for sandbox escapes. [1] This attack vector is mitigated by denying access to the system bus and only allowing access to the session bus. This is safe since each application runs as their own user with their own session bus, ensuring no IPC between sandboxes. |
Dynamic Native Code Execution | Dynamic native code execution is generally a security issue since it allows an attacker to execute new arbitrary code. This is prevented by the following mechanisms:
These mechanisms force attackers to utilize the already existing code (e.g. Return-oriented programming (ROP) / Jump-Oriented-Programming (JOP)) which is much more limited and difficult. The main things that legitimately require this are JIT engines in browsers. |
Malware Persistence | The only places malware can persist inside the sandbox are the home directory or shared storage (if enabled as read-write) and it can only ever be executed if W^X is disabled. Everything else is mounted read-only or as a tmpfs (a file system which keeps all files in virtual memory). |
PulseAudio | PulseAudio was also not written with isolation in mind [2] so access to it is blacklisted from within the sandbox. By default this will break a lot of things so a more robust solution like PipeWire may be used in the future. |
Separate User per Sandboxed Application | This approach provides a higher security threshold: [3]
|
X11 | X11 does not have GUI isolation [4] so it is trivial to escape sandboxes with it. There is no protection against this vector at present, but the plan is to either switch to Wayland [5] or use a nested X11 server like Xpra. |
Installation[edit]
Install package(s) sandbox-app-launcher
following these instructions
1 Platform specific notice.
- Kicksecure: No special notice.
- Kicksecure-Qubes: In Template.
2 Update the package lists and upgrade the system .
sudo apt update && sudo apt full-upgrade
3 Install the sandbox-app-launcher
package(s).
Using apt
command line
--no-install-recommends
option
is in most cases optional.
sudo apt install --no-install-recommends sandbox-app-launcher
4 Platform specific notice.
- Kicksecure: No special notice.
- Kicksecure-Qubes: Shut down Template and restart App Qubes based on it as per Qubes Template Modification .
5 Done.
The procedure of installing package(s) sandbox-app-launcher
is complete.
Usage[edit]
Setup[edit]
For example, to setup a sandbox for firefox, run.
sudo sandbox-app-launcher setup firefox
Use[edit]
For example, to start firefox using sandbox-app-launcher, run.
sandbox-app-launcher start firefox
To show all sand boxes.
sandbox-app-launcher list
To delete user data.
sudo sandbox-app-launcher remove firefox
Development Discussion[edit]
https://forums.whonix.org/t/system-wide-sandboxing-framework-sandbox-app-launcher/9008
References[edit]
- ↑ One such example is: https://github.com/netblue30/firejail/issues/796
- ↑ https://www.freedesktop.org/wiki/Software/PulseAudio/Documentation/Developer/AccessControl/
- ↑ https://forums.whonix.org/t/system-wide-sandboxing-framework-sandbox-app-launcher/9008/265
- ↑ https://theinvisiblethings.blogspot.com/2011/04/linux-security-circus-on-gui-isolation.html
- ↑ https://forums.whonix.org/t/use-xfce-with-wayland/9063
We believe security software like Kicksecure needs to remain Open Source and independent. Would you help sustain and grow the project? Learn more about our 12 year success story and maybe DONATE!