The bubblewrap sandbox of WebKitGTK and WPE WebKit, prior to 2.28.3, failed to properly block access to CLONE_NEWUSER and the TIOCSTI ioctl. CLONE_NEWUSER could potentially be used to confuse xdg-desktop-portal, which allows access outside the sandbox. TIOCSTI can be used to directly execute commands outside the sandbox by writing to the controlling terminals input buffer, similar to CVE-2017-5226.
The product receives input or data, but it does not validate or incorrectly validates that the input has the properties that are required to process the data safely and correctly.
Name | Vendor | Start Version | End Version |
---|---|---|---|
Webkitgtk | Webkitgtk | * | 2.28.3 (excluding) |
Wpe_webkit | Wpewebkit | * | 2.28.3 (excluding) |
Red Hat Enterprise Linux 7 Extended Lifecycle Support | RedHat | webkitgtk4-0:2.48.3-2.el7_9 | * |
Qtwebkit | Ubuntu | eoan | * |
Qtwebkit | Ubuntu | trusty | * |
Qtwebkit-opensource-src | Ubuntu | bionic | * |
Qtwebkit-opensource-src | Ubuntu | devel | * |
Qtwebkit-opensource-src | Ubuntu | eoan | * |
Qtwebkit-opensource-src | Ubuntu | esm-apps/bionic | * |
Qtwebkit-opensource-src | Ubuntu | esm-apps/focal | * |
Qtwebkit-opensource-src | Ubuntu | esm-apps/jammy | * |
Qtwebkit-opensource-src | Ubuntu | esm-apps/noble | * |
Qtwebkit-opensource-src | Ubuntu | esm-infra/xenial | * |
Qtwebkit-opensource-src | Ubuntu | focal | * |
Qtwebkit-opensource-src | Ubuntu | groovy | * |
Qtwebkit-opensource-src | Ubuntu | hirsute | * |
Qtwebkit-opensource-src | Ubuntu | impish | * |
Qtwebkit-opensource-src | Ubuntu | jammy | * |
Qtwebkit-opensource-src | Ubuntu | kinetic | * |
Qtwebkit-opensource-src | Ubuntu | lunar | * |
Qtwebkit-opensource-src | Ubuntu | mantic | * |
Qtwebkit-opensource-src | Ubuntu | noble | * |
Qtwebkit-opensource-src | Ubuntu | trusty | * |
Qtwebkit-opensource-src | Ubuntu | upstream | * |
Qtwebkit-opensource-src | Ubuntu | xenial | * |
Qtwebkit-source | Ubuntu | bionic | * |
Qtwebkit-source | Ubuntu | esm-apps/bionic | * |
Qtwebkit-source | Ubuntu | esm-apps/xenial | * |
Qtwebkit-source | Ubuntu | trusty | * |
Qtwebkit-source | Ubuntu | xenial | * |
Webkit2gtk | Ubuntu | bionic | * |
Webkit2gtk | Ubuntu | eoan | * |
Webkit2gtk | Ubuntu | esm-infra/bionic | * |
Webkit2gtk | Ubuntu | esm-infra/focal | * |
Webkit2gtk | Ubuntu | esm-infra/xenial | * |
Webkit2gtk | Ubuntu | focal | * |
Webkit2gtk | Ubuntu | xenial | * |
Webkitgtk | Ubuntu | bionic | * |
Webkitgtk | Ubuntu | esm-apps/bionic | * |
Webkitgtk | Ubuntu | esm-apps/xenial | * |
Webkitgtk | Ubuntu | trusty | * |
Webkitgtk | Ubuntu | xenial | * |
Input validation is a frequently-used technique for checking potentially dangerous inputs in order to ensure that the inputs are safe for processing within the code, or when communicating with other components. Input can consist of:
Data can be simple or structured. Structured data can be composed of many nested layers, composed of combinations of metadata and raw data, with other simple or structured data. Many properties of raw data or metadata may need to be validated upon entry into the code, such as:
Implied or derived properties of data must often be calculated or inferred by the code itself. Errors in deriving properties may be considered a contributing factor to improper input validation.