Http4s is a Scala interface for HTTP services. Starting with version 0.1.0 and prior to versions 0.21.34, 0.22.15, 0.23.17, and 1.0.0-M38, the User-Agent
and Server
header parsers are susceptible to a fatal error on certain inputs. In http4s, modeled headers are lazily parsed, so this only applies to services that explicitly request these typed headers. Fixes are released in 0.21.34, 0.22.15, 0.23.17, and 1.0.0-M38. As a workaround, use the weakly typed header interface.
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 |
---|---|---|---|
Http4s | Typelevel | 0.1.0 (including) | 0.21.34 (excluding) |
Http4s | Typelevel | 0.22.0 (including) | 0.22.15 (excluding) |
Http4s | Typelevel | 0.23.0 (including) | 0.23.17 (excluding) |
Http4s | Typelevel | 1.0.0-milestone1 (including) | 1.0.0-milestone1 (including) |
Http4s | Typelevel | 1.0.0-milestone10 (including) | 1.0.0-milestone10 (including) |
Http4s | Typelevel | 1.0.0-milestone11 (including) | 1.0.0-milestone11 (including) |
Http4s | Typelevel | 1.0.0-milestone12 (including) | 1.0.0-milestone12 (including) |
Http4s | Typelevel | 1.0.0-milestone13 (including) | 1.0.0-milestone13 (including) |
Http4s | Typelevel | 1.0.0-milestone14 (including) | 1.0.0-milestone14 (including) |
Http4s | Typelevel | 1.0.0-milestone15 (including) | 1.0.0-milestone15 (including) |
Http4s | Typelevel | 1.0.0-milestone16 (including) | 1.0.0-milestone16 (including) |
Http4s | Typelevel | 1.0.0-milestone17 (including) | 1.0.0-milestone17 (including) |
Http4s | Typelevel | 1.0.0-milestone18 (including) | 1.0.0-milestone18 (including) |
Http4s | Typelevel | 1.0.0-milestone19 (including) | 1.0.0-milestone19 (including) |
Http4s | Typelevel | 1.0.0-milestone2 (including) | 1.0.0-milestone2 (including) |
Http4s | Typelevel | 1.0.0-milestone20 (including) | 1.0.0-milestone20 (including) |
Http4s | Typelevel | 1.0.0-milestone21 (including) | 1.0.0-milestone21 (including) |
Http4s | Typelevel | 1.0.0-milestone22 (including) | 1.0.0-milestone22 (including) |
Http4s | Typelevel | 1.0.0-milestone23 (including) | 1.0.0-milestone23 (including) |
Http4s | Typelevel | 1.0.0-milestone24 (including) | 1.0.0-milestone24 (including) |
Http4s | Typelevel | 1.0.0-milestone25 (including) | 1.0.0-milestone25 (including) |
Http4s | Typelevel | 1.0.0-milestone26 (including) | 1.0.0-milestone26 (including) |
Http4s | Typelevel | 1.0.0-milestone27 (including) | 1.0.0-milestone27 (including) |
Http4s | Typelevel | 1.0.0-milestone28 (including) | 1.0.0-milestone28 (including) |
Http4s | Typelevel | 1.0.0-milestone29 (including) | 1.0.0-milestone29 (including) |
Http4s | Typelevel | 1.0.0-milestone3 (including) | 1.0.0-milestone3 (including) |
Http4s | Typelevel | 1.0.0-milestone30 (including) | 1.0.0-milestone30 (including) |
Http4s | Typelevel | 1.0.0-milestone31 (including) | 1.0.0-milestone31 (including) |
Http4s | Typelevel | 1.0.0-milestone32 (including) | 1.0.0-milestone32 (including) |
Http4s | Typelevel | 1.0.0-milestone33 (including) | 1.0.0-milestone33 (including) |
Http4s | Typelevel | 1.0.0-milestone34 (including) | 1.0.0-milestone34 (including) |
Http4s | Typelevel | 1.0.0-milestone35 (including) | 1.0.0-milestone35 (including) |
Http4s | Typelevel | 1.0.0-milestone36 (including) | 1.0.0-milestone36 (including) |
Http4s | Typelevel | 1.0.0-milestone37 (including) | 1.0.0-milestone37 (including) |
Http4s | Typelevel | 1.0.0-milestone4 (including) | 1.0.0-milestone4 (including) |
Http4s | Typelevel | 1.0.0-milestone5 (including) | 1.0.0-milestone5 (including) |
Http4s | Typelevel | 1.0.0-milestone6 (including) | 1.0.0-milestone6 (including) |
Http4s | Typelevel | 1.0.0-milestone7 (including) | 1.0.0-milestone7 (including) |
Http4s | Typelevel | 1.0.0-milestone8 (including) | 1.0.0-milestone8 (including) |
Http4s | Typelevel | 1.0.0-milestone9 (including) | 1.0.0-milestone9 (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.