The fix for CVE-2026-0672, which rejected control characters in http.cookies.Morsel, was incomplete. The Morsel.update(), |= operator, and unpickling paths were not patched, allowing control characters to bypass input validation. Additionally, BaseCookie.js_output() lacked the output validation applied to BaseCookie.output().
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 |
|---|---|---|---|
| Python | Python | * | 3.13.13 (excluding) |
| Python | Python | 3.14.0 (including) | 3.14.4 (excluding) |
| Python | Python | 3.15.0-alpha1 (including) | 3.15.0-alpha1 (including) |
| Python | Python | 3.15.0-alpha2 (including) | 3.15.0-alpha2 (including) |
| Python | Python | 3.15.0-alpha3 (including) | 3.15.0-alpha3 (including) |
| Python | Python | 3.15.0-alpha4 (including) | 3.15.0-alpha4 (including) |
| Python | Python | 3.15.0-alpha5 (including) | 3.15.0-alpha5 (including) |
| Python | Python | 3.15.0-alpha6 (including) | 3.15.0-alpha6 (including) |
| Python | Python | 3.15.0-alpha7 (including) | 3.15.0-alpha7 (including) |
| Red Hat Enterprise Linux 10 | RedHat | python3.14-0:3.14.4-2.el10_2 | * |
| Red Hat Enterprise Linux 10 | RedHat | python3.12-0:3.12.13-2.el10_2 | * |
| Red Hat Enterprise Linux 8 | RedHat | python3.12-0:3.12.13-2.el8_10 | * |
| Red Hat Enterprise Linux 9 | RedHat | python3.14-0:3.14.4-2.el9_8 | * |
| Red Hat Enterprise Linux 9 | RedHat | python3.12-0:3.12.13-2.el9_8 | * |
| Red Hat Hardened Images | RedHat | python3-13-main-3.13.13-1.hum1 | * |
| Red Hat Hardened Images | RedHat | python3-14-main-3.14.4-1.hum1 | * |
| Red Hat Hardened Images | RedHat | python3-11-main-3.11.15-4.hum1 | * |
| Red Hat Hardened Images | RedHat | python3-12-main-3.12.13-3.hum1 | * |
| Red Hat Update Infrastructure 5 | RedHat | rhui5/installer-rhel9:1779798165 | * |
| Red Hat Update Infrastructure 5 | RedHat | rhui5/rhua-rhel9:1779798222 | * |
| Python2.7 | Ubuntu | esm-infra/xenial | * |
| Python3.10 | Ubuntu | jammy | * |
| Python3.12 | Ubuntu | noble | * |
| Python3.13 | Ubuntu | questing | * |
| Python3.13 | Ubuntu | upstream | * |
| Python3.14 | Ubuntu | questing | * |
| Python3.14 | Ubuntu | upstream | * |
| Python3.5 | Ubuntu | esm-infra/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.