In FreeBSD 12.0-STABLE before r350828, 12.0-RELEASE before 12.0-RELEASE-p10, 11.3-STABLE before r350829, 11.3-RELEASE before 11.3-RELEASE-p3, and 11.2-RELEASE before 11.2-RELEASE-p14, a missing check in the function to arrange data in a chain of mbufs could cause data returned not to be contiguous. Extra checks in the IPv6 stack could catch the error condition and trigger a kernel panic, leading to a remote denial of service.
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.2 (including) | 11.2 (including) |
Freebsd | Freebsd | 11.2-p10 (including) | 11.2-p10 (including) |
Freebsd | Freebsd | 11.2-p11 (including) | 11.2-p11 (including) |
Freebsd | Freebsd | 11.2-p12 (including) | 11.2-p12 (including) |
Freebsd | Freebsd | 11.2-p13 (including) | 11.2-p13 (including) |
Freebsd | Freebsd | 11.2-p2 (including) | 11.2-p2 (including) |
Freebsd | Freebsd | 11.2-p3 (including) | 11.2-p3 (including) |
Freebsd | Freebsd | 11.2-p4 (including) | 11.2-p4 (including) |
Freebsd | Freebsd | 11.2-p5 (including) | 11.2-p5 (including) |
Freebsd | Freebsd | 11.2-p6 (including) | 11.2-p6 (including) |
Freebsd | Freebsd | 11.2-p7 (including) | 11.2-p7 (including) |
Freebsd | Freebsd | 11.2-p8 (including) | 11.2-p8 (including) |
Freebsd | Freebsd | 11.2-p9 (including) | 11.2-p9 (including) |
Freebsd | Freebsd | 11.3 (including) | 11.3 (including) |
Freebsd | Freebsd | 11.3-p1 (including) | 11.3-p1 (including) |
Freebsd | Freebsd | 11.3-p2 (including) | 11.3-p2 (including) |
Freebsd | Freebsd | 11.3-p3 (including) | 11.3-p3 (including) |
Freebsd | Freebsd | 12.0 (including) | 12.0 (including) |
Freebsd | Freebsd | 12.0-p1 (including) | 12.0-p1 (including) |
Freebsd | Freebsd | 12.0-p3 (including) | 12.0-p3 (including) |
Freebsd | Freebsd | 12.0-p4 (including) | 12.0-p4 (including) |
Freebsd | Freebsd | 12.0-p5 (including) | 12.0-p5 (including) |
Freebsd | Freebsd | 12.0-p8 (including) | 12.0-p8 (including) |
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.