CUPS is a standards-based, open-source printing system, and libppd
can be used for legacy PPD file support. The libppd
function ppdCreatePPDFromIPP2
does not sanitize IPP attributes when creating the PPD buffer. When used in combination with other functions such as cfGetPrinterAttributes5
, can result in user controlled input and ultimately code execution via Foomatic. This vulnerability can be part of an exploit chain leading to remote code execution (RCE), as described in CVE-2024-47176.
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 |
---|---|---|---|
Red Hat Enterprise Linux 7.7 Advanced Update Support | RedHat | cups-filters-0:1.0.35-26.el7_7.3 | * |
Red Hat Enterprise Linux 7 Extended Lifecycle Support | RedHat | cups-filters-0:1.0.35-29.el7_9.3 | * |
Red Hat Enterprise Linux 8 | RedHat | cups-filters-0:1.20.0-35.el8_10 | * |
Red Hat Enterprise Linux 8 | RedHat | cups-1:2.2.6-62.el8_10 | * |
Red Hat Enterprise Linux 8 | RedHat | cups-1:2.2.6-62.el8_10 | * |
Red Hat Enterprise Linux 8.2 Advanced Update Support | RedHat | cups-filters-0:1.20.0-19.el8_2.2 | * |
Red Hat Enterprise Linux 8.4 Advanced Mission Critical Update Support | RedHat | cups-filters-0:1.20.0-24.el8_4.2 | * |
Red Hat Enterprise Linux 8.4 Telecommunications Update Service | RedHat | cups-filters-0:1.20.0-24.el8_4.2 | * |
Red Hat Enterprise Linux 8.4 Update Services for SAP Solutions | RedHat | cups-filters-0:1.20.0-24.el8_4.2 | * |
Red Hat Enterprise Linux 8.6 Advanced Mission Critical Update Support | RedHat | cups-filters-0:1.20.0-27.el8_6.3 | * |
Red Hat Enterprise Linux 8.6 Telecommunications Update Service | RedHat | cups-filters-0:1.20.0-27.el8_6.3 | * |
Red Hat Enterprise Linux 8.6 Update Services for SAP Solutions | RedHat | cups-filters-0:1.20.0-27.el8_6.3 | * |
Red Hat Enterprise Linux 8.8 Extended Update Support | RedHat | cups-filters-0:1.20.0-29.el8_8.3 | * |
Red Hat Enterprise Linux 9 | RedHat | cups-filters-0:1.28.7-17.el9_4 | * |
Red Hat Enterprise Linux 9 | RedHat | cups-1:2.3.3op2-31.el9_5 | * |
Red Hat Enterprise Linux 9 | RedHat | cups-1:2.3.3op2-31.el9_5 | * |
Red Hat Enterprise Linux 9.0 Update Services for SAP Solutions | RedHat | cups-filters-0:1.28.7-10.el9_0.2 | * |
Red Hat Enterprise Linux 9.2 Extended Update Support | RedHat | cups-filters-0:1.28.7-11.el9_2.2 | * |
Cups | Ubuntu | devel | * |
Cups | Ubuntu | esm-infra/bionic | * |
Cups | Ubuntu | esm-infra/focal | * |
Cups | Ubuntu | esm-infra/xenial | * |
Cups | Ubuntu | focal | * |
Cups | Ubuntu | jammy | * |
Cups | Ubuntu | noble | * |
Libppd | Ubuntu | devel | * |
Libppd | Ubuntu | noble | * |
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.