CUPS is a standards-based, open-source printing system, and libcupsfilters
contains the code of the filters of the former cups-filters
package as library functions to be used for the data format conversion tasks needed in Printer Applications. The cfGetPrinterAttributes5
function in libcupsfilters
does not sanitize IPP attributes returned from an IPP server. When these IPP attributes are used, for instance, to generate a PPD file, this can lead to attacker controlled data to be provided to the rest of the CUPS system.
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.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.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-filters | Ubuntu | esm-infra/focal | * |
Cups-filters | Ubuntu | focal | * |
Cups-filters | Ubuntu | jammy | * |
Libcupsfilters | Ubuntu | devel | * |
Libcupsfilters | Ubuntu | noble | * |
Libcupsfilters | Ubuntu | oracular | * |
Libcupsfilters | Ubuntu | plucky | * |
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.