In FreeBSD 13.0-STABLE before n245765-bec0d2c9c841, 12.2-STABLE before r369859, 11.4-STABLE before r369866, 13.0-RELEASE before p1, 12.2-RELEASE before p7, and 11.4-RELEASE before p10, missing message validation in libradius(3) could allow malicious clients or servers to trigger denial of service in vulnerable servers or clients respectively.
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 |
---|---|---|---|
Freebsd | Freebsd | 11.4 (including) | 11.4 (including) |
Freebsd | Freebsd | 11.4-beta1 (including) | 11.4-beta1 (including) |
Freebsd | Freebsd | 11.4-p1 (including) | 11.4-p1 (including) |
Freebsd | Freebsd | 11.4-p2 (including) | 11.4-p2 (including) |
Freebsd | Freebsd | 11.4-p3 (including) | 11.4-p3 (including) |
Freebsd | Freebsd | 11.4-p4 (including) | 11.4-p4 (including) |
Freebsd | Freebsd | 11.4-p5 (including) | 11.4-p5 (including) |
Freebsd | Freebsd | 11.4-p6 (including) | 11.4-p6 (including) |
Freebsd | Freebsd | 11.4-p7 (including) | 11.4-p7 (including) |
Freebsd | Freebsd | 11.4-p8 (including) | 11.4-p8 (including) |
Freebsd | Freebsd | 11.4-p9 (including) | 11.4-p9 (including) |
Freebsd | Freebsd | 11.4-rc1 (including) | 11.4-rc1 (including) |
Freebsd | Freebsd | 11.4-rc2 (including) | 11.4-rc2 (including) |
Freebsd | Freebsd | 12.2 (including) | 12.2 (including) |
Freebsd | Freebsd | 12.2-beta1-p1 (including) | 12.2-beta1-p1 (including) |
Freebsd | Freebsd | 12.2-p1 (including) | 12.2-p1 (including) |
Freebsd | Freebsd | 12.2-p2 (including) | 12.2-p2 (including) |
Freebsd | Freebsd | 12.2-p3 (including) | 12.2-p3 (including) |
Freebsd | Freebsd | 12.2-p4 (including) | 12.2-p4 (including) |
Freebsd | Freebsd | 12.2-p5 (including) | 12.2-p5 (including) |
Freebsd | Freebsd | 12.2-p6 (including) | 12.2-p6 (including) |
Freebsd | Freebsd | 13.0 (including) | 13.0 (including) |
Freebsd | Freebsd | 13.0-beta3-p1 (including) | 13.0-beta3-p1 (including) |
Freebsd | Freebsd | 13.0-rc3 (including) | 13.0-rc3 (including) |
Freebsd | Freebsd | 13.0-rc4 (including) | 13.0-rc4 (including) |
Freebsd | Freebsd | 13.0-rc5-p1 (including) | 13.0-rc5-p1 (including) |
Dacs | Ubuntu | bionic | * |
Dacs | Ubuntu | focal | * |
Dacs | Ubuntu | groovy | * |
Dacs | Ubuntu | hirsute | * |
Dacs | Ubuntu | trusty | * |
Dacs | Ubuntu | xenial | * |
Netams | Ubuntu | trusty | * |
Netams | 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.