ghsa-54w6-vxfh-fw7f
Vulnerability from github
Published
2023-01-06 20:24
Modified
2023-01-06 20:24
Severity ?
VLAI Severity ?
Summary
Http4s improperly parses User-Agent and Server headers
Details
Impact
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.
v0.21.x
scala
val unsafe: Option[`User-Agent`] = req.headers.get(`User-Agent`)
v0.22.x, v0.23.x, v1.x
scala
val unsafe: Option[`User-Agent`] = req.headers.get[`User-Agent`]
val alsoUnsafe: Option[`Server`] = req.headers.get[Server]
Patches
Fixes are released in 0.21.34, 0.22.15, 0.23.17, and 1.0.0-M38.
Workarounds
Use the weakly typed header interface
v0.21.x
scala
val safe: Option[Header] = req.headers.get("User-Agent".ci)
// but don't do this
val unsafe = header.map(_.parsed)
v0.22.x, v0.23.x, v1.x
scala
val safe: Option[Header] = req.headers.get(ci"User-Agent")
{ "affected": [ { "package": { "ecosystem": "Maven", "name": "org.http4s:http4s-core" }, "ranges": [ { "events": [ { "introduced": "0.1.0" }, { "fixed": "0.21.34" } ], "type": "ECOSYSTEM" } ] }, { "package": { "ecosystem": "Maven", "name": "org.http4s:http4s-core" }, "ranges": [ { "events": [ { "introduced": "0.22.0" }, { "fixed": "0.22.15" } ], "type": "ECOSYSTEM" } ] }, { "package": { "ecosystem": "Maven", "name": "org.http4s:http4s-core" }, "ranges": [ { "events": [ { "introduced": "0.23.0" }, { "fixed": "0.23.17" } ], "type": "ECOSYSTEM" } ] }, { "package": { "ecosystem": "Maven", "name": "org.http4s:http4s-core" }, "ranges": [ { "events": [ { "introduced": "1.0.0-M1" }, { "fixed": "1.0.0-M38" } ], "type": "ECOSYSTEM" } ] } ], "aliases": [ "CVE-2023-22465" ], "database_specific": { "cwe_ids": [ "CWE-20" ], "github_reviewed": true, "github_reviewed_at": "2023-01-06T20:24:36Z", "nvd_published_at": "2023-01-04T16:15:00Z", "severity": "HIGH" }, "details": "### Impact\n\nThe `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. \n\n#### v0.21.x\n\n```scala\nval unsafe: Option[`User-Agent`] = req.headers.get(`User-Agent`)\n```\n\n#### v0.22.x, v0.23.x, v1.x\n\n```scala\nval unsafe: Option[`User-Agent`] = req.headers.get[`User-Agent`]\nval alsoUnsafe: Option[`Server`] = req.headers.get[Server]\n```\n\n### Patches\n\nFixes are released in 0.21.34, 0.22.15, 0.23.17, and 1.0.0-M38.\n\n### Workarounds\n\n#### Use the weakly typed header interface\n\n##### v0.21.x\n\n```scala\nval safe: Option[Header] = req.headers.get(\"User-Agent\".ci)\n// but don\u0027t do this\nval unsafe = header.map(_.parsed) \n```\n\n##### v0.22.x, v0.23.x, v1.x\n\n```scala\nval safe: Option[Header] = req.headers.get(ci\"User-Agent\")\n```", "id": "GHSA-54w6-vxfh-fw7f", "modified": "2023-01-06T20:24:36Z", "published": "2023-01-06T20:24:36Z", "references": [ { "type": "WEB", "url": "https://github.com/http4s/http4s/security/advisories/GHSA-54w6-vxfh-fw7f" }, { "type": "ADVISORY", "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-22465" }, { "type": "PACKAGE", "url": "https://github.com/http4s/http4s" } ], "schema_version": "1.4.0", "severity": [ { "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "type": "CVSS_V3" } ], "summary": "Http4s improperly parses User-Agent and Server headers" }
Loading…
Loading…
Sightings
Author | Source | Type | Date |
---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or seen somewhere by the user.
- Confirmed: The vulnerability is confirmed from an analyst perspective.
- Exploited: This vulnerability was exploited and seen by the user reporting the sighting.
- Patched: This vulnerability was successfully patched by the user reporting the sighting.
- Not exploited: This vulnerability was not exploited or seen by the user reporting the sighting.
- Not confirmed: The user expresses doubt about the veracity of the vulnerability.
- Not patched: This vulnerability was not successfully patched by the user reporting the sighting.
Loading…