Flatpak is a system for building, distributing, and running sandboxed desktop applications on Linux. in versions before 1.10.9, 1.12.9, 1.14.6, and 1.15.8, a malicious or compromised Flatpak app could execute arbitrary code outside its sandbox. Normally, the --command
argument of flatpak run
expects to be given a command to run in the specified Flatpak app, optionally along with some arguments. However it is possible to instead pass bwrap
arguments to --command=
, such as --bind
. Its possible to pass an arbitrary commandline
to the portal interface org.freedesktop.portal.Background.RequestBackground
from within a Flatpak app. When this is converted into a --command
and arguments, it achieves the same effect of passing arguments directly to bwrap
, and thus can be used for a sandbox escape. The solution is to pass the --
argument to bwrap
, which makes it stop processing options. This has been supported since bubblewrap 0.3.0. All supported versions of Flatpak require at least that version of bubblewrap. xdg-desktop-portal version 1.18.4 will mitigate this vulnerability by only allowing Flatpak apps to create .desktop files for commands that do not start with –. The vulnerability is patched in 1.15.8, 1.10.9, 1.12.9, and 1.14.6.
The product constructs a string for a command to be executed by a separate component in another control sphere, but it does not properly delimit the intended arguments, options, or switches within that command string.
Name | Vendor | Start Version | End Version |
---|---|---|---|
Red Hat Enterprise Linux 7 | RedHat | flatpak-0:1.0.9-13.el7_9 | * |
Red Hat Enterprise Linux 8 | RedHat | flatpak-0:1.12.9-1.el8_10 | * |
Red Hat Enterprise Linux 8.2 Advanced Update Support | RedHat | flatpak-0:1.6.2-7.el8_2 | * |
Red Hat Enterprise Linux 8.4 Advanced Mission Critical Update Support | RedHat | flatpak-0:1.8.5-5.el8_4 | * |
Red Hat Enterprise Linux 8.4 Telecommunications Update Service | RedHat | flatpak-0:1.8.5-5.el8_4 | * |
Red Hat Enterprise Linux 8.4 Update Services for SAP Solutions | RedHat | flatpak-0:1.8.5-5.el8_4 | * |
Red Hat Enterprise Linux 8.6 Advanced Mission Critical Update Support | RedHat | flatpak-0:1.8.7-2.el8_6 | * |
Red Hat Enterprise Linux 8.6 Telecommunications Update Service | RedHat | flatpak-0:1.8.7-2.el8_6 | * |
Red Hat Enterprise Linux 8.6 Update Services for SAP Solutions | RedHat | flatpak-0:1.8.7-2.el8_6 | * |
Red Hat Enterprise Linux 8.8 Extended Update Support | RedHat | flatpak-0:1.10.7-2.el8_8 | * |
Red Hat Enterprise Linux 9 | RedHat | flatpak-0:1.12.9-1.el9_4 | * |
Red Hat Enterprise Linux 9.0 Update Services for SAP Solutions | RedHat | flatpak-0:1.12.5-3.el9_0 | * |
Red Hat Enterprise Linux 9.2 Extended Update Support | RedHat | flatpak-0:1.12.7-3.el9_2 | * |
Flatpak | Ubuntu | devel | * |
Flatpak | Ubuntu | esm-apps/bionic | * |
Flatpak | Ubuntu | esm-apps/focal | * |
Flatpak | Ubuntu | esm-apps/jammy | * |
Flatpak | Ubuntu | focal | * |
Flatpak | Ubuntu | jammy | * |
Flatpak | Ubuntu | mantic | * |
Flatpak | Ubuntu | noble | * |
Flatpak | Ubuntu | oracular | * |
Flatpak | Ubuntu | upstream | * |
When creating commands using interpolation into a string, developers may assume that only the arguments/options that they specify will be processed. This assumption may be even stronger when the programmer has encoded the command in a way that prevents separate commands from being provided maliciously, e.g. in the case of shell metacharacters. When constructing the command, the developer may use whitespace or other delimiters that are required to separate arguments when the command. However, if an attacker can provide an untrusted input that contains argument-separating delimiters, then the resulting command will have more arguments than intended by the developer. The attacker may then be able to change the behavior of the command. Depending on the functionality supported by the extraneous arguments, this may have security-relevant consequences.