A log spoofing flaw was found in the Tuned package due to improper sanitization of some API arguments. This flaw allows an attacker to pass a controlled sequence of characters; newlines can be inserted into the log. Instead of the evil the attacker could mimic a valid TuneD log line and trick the administrator. The quotes are usually used in TuneD logs citing raw user input, so there will always be the character ending the spoofed input, and the administrator can easily overlook this. This logged string is later used in logging and in the output of utilities, for example, tuned-adm get_instances
or other third-party programs that use Tuneds D-Bus interface for such operations.
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 |
---|---|---|---|
Fast Datapath for Red Hat Enterprise Linux 7 | RedHat | tuned-0:2.11.0-5.el7fdp.2 | * |
Fast Datapath for Red Hat Enterprise Linux 8 | RedHat | tuned-0:2.24.0-2.1.20240819gitc082797f.el8fdp | * |
Fast Datapath for Red Hat Enterprise Linux 9 | RedHat | tuned-0:2.24.0-2.1.20240819gitc082797f.el9fdp | * |
Red Hat Enterprise Linux 7 Extended Lifecycle Support | RedHat | tuned-0:2.11.0-13.el7_9 | * |
Red Hat Enterprise Linux 7 Extended Lifecycle Support | RedHat | tuned-0:2.11.0-13.el7_9 | * |
Red Hat Enterprise Linux 8 | RedHat | tuned-0:2.22.1-5.el8_10 | * |
Red Hat Enterprise Linux 8 | RedHat | tuned-0:2.22.1-5.el8_10 | * |
Red Hat Enterprise Linux 8.4 Advanced Mission Critical Update Support | RedHat | tuned-0:2.20.0-1.el8_4.2 | * |
Red Hat Enterprise Linux 8.4 Telecommunications Update Service | RedHat | tuned-0:2.20.0-1.el8_4.2 | * |
Red Hat Enterprise Linux 8.4 Update Services for SAP Solutions | RedHat | tuned-0:2.20.0-1.el8_4.2 | * |
Red Hat Enterprise Linux 8.6 Advanced Mission Critical Update Support | RedHat | tuned-0:2.20.0-1.el8_6.2 | * |
Red Hat Enterprise Linux 8.6 Telecommunications Update Service | RedHat | tuned-0:2.20.0-1.el8_6.2 | * |
Red Hat Enterprise Linux 8.6 Update Services for SAP Solutions | RedHat | tuned-0:2.20.0-1.el8_6.2 | * |
Red Hat Enterprise Linux 8.8 Extended Update Support | RedHat | tuned-0:2.20.0-2.el8_8.1 | * |
Red Hat Enterprise Linux 9 | RedHat | tuned-0:2.24.0-2.el9_5 | * |
Red Hat Enterprise Linux 9 | RedHat | tuned-0:2.24.0-2.el9_5 | * |
Red Hat Enterprise Linux 9.2 Extended Update Support | RedHat | tuned-0:2.20.0-3.el9_2 | * |
Red Hat Enterprise Linux 9.4 Extended Update Support | RedHat | tuned-0:2.22.1-3.el9_4 | * |
Tuned | Ubuntu | focal | * |
Tuned | Ubuntu | oracular | * |
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.