Running your programs in a jail with Firejail
Profile
In addition to command-line parameters, you can create your own configuration file for each program. In these security profiles, you can explicitly enable the --seccomp
and --caps
functions. Additionally, you can define in detail which directories Firejail will not pass through to the sandbox, or where access will be restricted to read-only, and you can define mountpoints to match. Finally, you can define limits for the sandbox, for example, by restricting the number of processes running in it.
All security profiles reside in the /etc/firejail
directory. Firejail 0.9.18 comes with preconfigured profiles for Chromium, Dropbox, Evince, Firefox, Iceweasel, and Midori. The profile file then starts with the program name and has a file extension of .profile
. The profile for firefox
thus resides in the firefox.profile
file.
After calling firejail firefox
, Firejail automatically applies all the settings from the matching security profile. The security profiles themselves have a very simple setup, with a setting in each line. Table 1 shows the most important settings at a glance. For more information on the structure of the security profiles, check out the man page: man firejail-profile
.
Table 1
Security Profiles
Statement | Meaning |
---|---|
blacklist /usr/bin |
The sandbox hides the /usr/bin directory |
read-only /usr/bin |
The sandbox mounts the /usr/bin directory read-only |
tmpfs /etc |
Mounts a tempfs filesystem via the /etc directory (any files stored are discarded after terminating the sandbox) |
bind /root/config/ssh, /etc/ssh |
Mounts the /root/config/ssh directory as /etc/ssh in the sandbox |
private /tmp/muell |
Mounts the directory /tmp/muell as the home directory in the sandbox |
caps |
Enables a kernel-side security filter (see text) |
seccomp |
Blocks certain security-critical actions (see text) |
rlimit-fsize 1024 |
A program in the sandbox can create files with a maximum size of 1024 bytes |
rlimit-nofile 500 |
A program in the sandbox can open a maximum of 500 files at the same time |
rlimit-nproc 1000 |
A maximum of 1,000 processes can be created in the sandbox |
Insights
The firejail --list
command lists all jails currently running and programs running in them. Using firejail --tree
lets you quickly discover which program started which other processes and identify the user accounts they are running on (Figure 7). The --top
parameter delivers a similar view to the popular top
command.

You can retroactively change into the sandbox. To do so, you first need to determine the process ID (PID) of the sandbox by typing firejail --list
. In the list of all the sandboxes that is then shown, you will be able to identify the correct one by looking at the program name. At the start of the matching line, you will see the PID, such as 2652
. Then, simply append this to the --join=
parameter:
firejail --join=2652
Firejail then opens a shell running in the sandbox and subject to that sandbox's restrictions (Figure 8). To use the join function, however, you need a Linux kernel version 3.8 or newer.
Conclusions
Firejail, which is licensed under the GPL v2, is easy to use and enhances security. Applications don't need any special preparation for life in the sandbox; you can even put Dropbox in jail [4]. That said, a sandbox is not a panacea. A web server remotely controlled by hackers might not be able to destroy the system on which it is running, but it still would be able to exploit the system, using it to attack other Internet sites. Firejail is thus simply another brick in the wall for hardening your Linux system; however, it is one that you can set up quickly and pretty effectively.
For more information on Firejail, visit the Firejail homepage [1]. In addition to a small collection of links with various tutorials, you will also find a how-to that explains how to use Firejail as your login shell.
Infos
- Firejail: https://l3net.wordpress.com/projects/firejail/
- Firejail in the SlackBuilds directory: http://slackbuilds.org/repository/14.1/system/firejail/?search=firejail
- Firejail documentation: https://l3net.wordpress.com/projects/firejail/firejail-usage/
- Dropbox in a sandbox: https://l3net.wordpress.com/2014/11/18/running-dropbox-in-firejail-sandbox/
- Wikipedia entry on OverlayFS: http://en.wikipedia.org/wiki/OverlayFS
- Information on Linux Capabilities: https://www.kernel.org/pub/linux/libs/security/linux-privs/kernel-2.2/capfaq-0.2.txt
« Previous 1 2 3
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you've found an article to be beneficial.
News
-
PipeWire 1.0 Officially Released
PipeWire was created to take the place of the oft-troubled PulseAudio and has finally reached the 1.0 status as a major update with plenty of improvements and the usual bug fixes.
-
Rocky Linux 9.3 Available for Download
The latest version of the RHEL alternative is now available and brings back cloud and container images for ppc64le along with plenty of new features and fixes.
-
Ubuntu Budgie Shifts How to Tackle Wayland
Ubuntu Budgie has yet to make the switch to Wayland but with a change in approaches, they're finally on track to making it happen.
-
TUXEDO's New Ultraportable Linux Workstation Released
The TUXEDO Pulse 14 blends portability with power, thanks to the AMD Ryzen 7 7840HS CPU.
-
AlmaLinux Will No Longer Be "Just Another RHEL Clone"
With the release of AlmaLinux 9.3, the distribution will be built entirely from upstream sources.
-
elementary OS 8 Has a Big Surprise in Store
When elementary OS 8 finally arrives, it will not only be based on Ubuntu 24.04 but it will also default to Wayland for better performance and security.
-
OpenELA Releases Enterprise Linux Source Code
With Red Hat restricting the source for RHEL, it was only a matter of time before those who depended on that source struck out on their own.
-
StripedFly Malware Hiding in Plain Sight as a Cryptocurrency Miner
A rather deceptive piece of malware has infected 1 million Windows and Linux hosts since 2017.
-
Experimental Wayland Support Planned for Linux Mint 21.3
As with most Linux distributions, the migration to Wayland is in full force. While some distributions have already made the move, Linux Mint has been a bit slower to do so.
-
Window Maker Live 0.96.0-0 Released
If you're a fan of the Window Maker window manager, there's a new official release of the Linux distribution that champions the old-school user interface.