GHSA-5vcm-3xc3-w7x3

Suggest an improvement
Source
https://github.com/advisories/GHSA-5vcm-3xc3-w7x3
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/09/GHSA-5vcm-3xc3-w7x3/GHSA-5vcm-3xc3-w7x3.json
JSON Data
https://api.osv.dev/v1/vulns/GHSA-5vcm-3xc3-w7x3
Aliases
Published
2021-09-22T19:18:41Z
Modified
2026-07-08T06:27:29Z
Severity
  • 8.7 (High) CVSS_V3 - CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:N CVSS Calculator
Summary
Response Splitting from unsanitized headers
Details

Impact

http4s is vulnerable to response-splitting or request-splitting attacks when untrusted user input is used to create any of the following fields:

  • Header names (Header.nameå
  • Header values (Header.value)
  • Status reason phrases (Status.reason)
  • URI paths (Uri.Path)
  • URI authority registered names (URI.RegName) (through 0.21)

The following backends render invalid carriage return, newline, or null characters in an unsafe fashion.

blaze-server ember-server blaze-client ember-client jetty-client
header names
header values
status reasons
URI paths
URI regnames ⚠ < 0.22 ⚠ < 0.22

For example, given the following service:

import cats.effect._
import org.http4s._
import org.http4s.dsl.io._
import org.http4s.server.blaze.BlazeServerBuilder
import scala.concurrent.ExecutionContext.global

object ResponseSplit extends IOApp {
  override def run(args: List[String]): IO[ExitCode] =
    BlazeServerBuilder[IO](global)
      .bindHttp(8080)
      .withHttpApp(httpApp)
      .resource
      .use(_ => IO.never)

  val httpApp: HttpApp[IO] =
    HttpApp[IO] { req =>
      req.params.get("author") match {
        case Some(author) =>
          Ok("The real content")
            .map(_.putHeaders(Header("Set-Cookie", s"author=${author}")))
        case None =>
          BadRequest("No author parameter")
      }
    }
}

A clean author parameter returns a clean response:

curl -i 'http://localhost:8080/?author=Ross'
HTTP/1.1 200 OK
Content-Type: text/plain; charset=UTF-8
Set-Cookie: author=Ross
Date: Mon, 20 Sep 2021 04:12:10 GMT
Content-Length: 16

The real content

A malicious author parameter allows a user-agent to hijack the response from our server and return different content:

curl -i 'http://localhost:8080/?author=hax0r%0d%0aContent-Length:+13%0d%0a%0aI+hacked+you'
HTTP/1.1 200 OK
Content-Type: text/plain; charset=UTF-8
Set-Cookie: author=hax0r
Content-Length: 13

I hacked you

Patches

Versions 0.21.29, 0.22.5, 0.23.4, and 1.0.0-M27 perform the following:

  • If a status reasoon phrase is invalid, it is dropped. Rendering is optional per spec.
  • If a header name is invalid in a request or response, the header is dropped. There is no way to generically sanitize a header without potentially shadowing a correct one.
  • If a header value is invalid in a request or response, it is sanitized by replacing null (\u0000), carriage return (\r), and newline (\n) with space ( ) characters per spec.
  • If a URI path or registered name is invalid in a request line, the client raises an IllegalArgumentException.
  • If a URI registered name is invalid in a host header, the client raises an IllegalArgumentException.

Workarounds

http4s services and client applications should sanitize any user input in the aforementioned fields before returning a request or response to the backend. The carriage return, newline, and null characters are the most threatening.

Not all backends were affected: jetty-server, tomcat-server, armeria, and netty on the server; async-http-client, okhttp-client, armeria, and netty as clients.

References

For more information

If you have any questions or comments about this advisory:

Database specific
{
    "cwe_ids": [
        "CWE-74",
        "CWE-918"
    ],
    "github_reviewed": true,
    "github_reviewed_at": "2021-09-21T16:10:13Z",
    "nvd_published_at": "2021-09-21T18:15:00Z",
    "severity": "HIGH"
}
References

Affected packages

Maven
org.http4s:http4s-client_2.12

Package

Name
org.http4s:http4s-client_2.12
View open source insights on deps.dev
Purl
pkg:maven/org.http4s/http4s-client_2.12

Affected ranges

Type
ECOSYSTEM
Events
Introduced
0 Unknown introduced version / All previous versions are affected
Fixed
0.21.29

Affected versions

0.*
0.10.0-M10
0.15.0
0.15.0a
0.15.1
0.15.1a
0.15.2
0.15.2a
0.15.3
0.15.3a
0.15.4
0.15.4a
0.15.5
0.15.5a
0.15.6
0.15.6a
0.15.7
0.15.7a
0.15.8
0.15.8a
0.15.9
0.15.9a
0.15.10
0.15.10a
0.15.11
0.15.11a
0.15.12
0.15.12a
0.15.13
0.15.13a
0.15.14
0.15.14a
0.15.15
0.15.15a
0.15.16
0.15.16a
0.16.0-M1
0.16.0-M2
0.16.0-M3
0.16.0-RC1
0.16.0-RC2
0.16.0-RC3
0.16.0
0.16.0a-M1
0.16.0a-M2
0.16.0a-M3
0.16.0a-RC1
0.16.0a-RC2
0.16.0a-RC3
0.16.0a
0.16.1
0.16.1a
0.16.2
0.16.2a
0.16.3
0.16.3a
0.16.4
0.16.4a
0.16.5
0.16.5a
0.16.6
0.16.6a
0.17.0-M1
0.17.0-M2
0.17.0-M3
0.17.0-RC1
0.17.0-RC2
0.17.0-RC3
0.17.0
0.17.1
0.17.2
0.17.3
0.17.4
0.17.5
0.17.6
0.18.0-M1
0.18.0-M2
0.18.0-M3
0.18.0-M4
0.18.0-M5
0.18.0-M6
0.18.0-M7
0.18.0-M8
0.18.0-M9
0.18.0
0.18.1
0.18.2
0.18.3
0.18.4
0.18.5
0.18.6
0.18.7
0.18.8
0.18.9
0.18.10
0.18.11
0.18.12
0.18.13
0.18.14
0.18.15
0.18.16
0.18.17
0.18.18
0.18.19
0.18.20
0.18.21
0.18.22
0.18.23
0.18.24
0.18.25
0.18.26
0.19.0-M1
0.19.0-M2
0.19.0-M3
0.19.0-M4
0.19.0
0.20.0-M1
0.20.0-M2
0.20.0-M3
0.20.0-M4
0.20.0-M5
0.20.0-M6
0.20.0-M7
0.20.0-RC1
0.20.0
0.20.1
0.20.2
0.20.3
0.20.4
0.20.5
0.20.6
0.20.7
0.20.8
0.20.9
0.20.10
0.20.11
0.20.12
0.20.13
0.20.14
0.20.15
0.20.16
0.20.17
0.20.18
0.20.19
0.20.20
0.20.21
0.20.22
0.20.23
0.21.0-M1
0.21.0-M2
0.21.0-M3
0.21.0-M4
0.21.0-M5
0.21.0-M6
0.21.0-RC1
0.21.0-RC2
0.21.0-RC3
0.21.0-RC4
0.21.0-RC5
0.21.0
0.21.1
0.21.2
0.21.3
0.21.4
0.21.5
0.21.6
0.21.7
0.21.8
0.21.9
0.21.11
0.21.12
0.21.13
0.21.14
0.21.15
0.21.16
0.21.17
0.21.18
0.21.19
0.21.20
0.21.21
0.21.22
0.21.23
0.21.24
0.21.25
0.21.26
0.21.27
0.21.28

Database specific

last_known_affected_version_range
"<= 0.21.28"
source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/09/GHSA-5vcm-3xc3-w7x3/GHSA-5vcm-3xc3-w7x3.json"
org.http4s:http4s-client_2.12

Package

Name
org.http4s:http4s-client_2.12
View open source insights on deps.dev
Purl
pkg:maven/org.http4s/http4s-client_2.12

Affected ranges

Type
ECOSYSTEM
Events
Introduced
0.22.0
Fixed
0.22.5

Affected versions

0.*
0.22.0
0.22-53-01128f5
0.22-96-55d3184
0.22-129-24d065b
0.22-143-49b5a8d
0.22.1
0.22.2
0.22.3
0.22.4

Database specific

last_known_affected_version_range
"<= 0.22.4"
source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/09/GHSA-5vcm-3xc3-w7x3/GHSA-5vcm-3xc3-w7x3.json"
org.http4s:http4s-client_2.12

Package

Name
org.http4s:http4s-client_2.12
View open source insights on deps.dev
Purl
pkg:maven/org.http4s/http4s-client_2.12

Affected ranges

Type
ECOSYSTEM
Events
Introduced
0.23.0
Fixed
0.23.4

Affected versions

0.*
0.23.0
0.23.1
0.23.2
0.23.3

Database specific

last_known_affected_version_range
"<= 0.23.3"
source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/09/GHSA-5vcm-3xc3-w7x3/GHSA-5vcm-3xc3-w7x3.json"
org.http4s:http4s-client_2.13

Package

Name
org.http4s:http4s-client_2.13
View open source insights on deps.dev
Purl
pkg:maven/org.http4s/http4s-client_2.13

Affected ranges

Type
ECOSYSTEM
Events
Introduced
0 Unknown introduced version / All previous versions are affected
Fixed
0.21.29

Affected versions

0.*
0.10.0-M10
0.21.0-M1
0.21.0-M2
0.21.0-M3
0.21.0-M4
0.21.0-M5
0.21.0-M6
0.21.0-RC1
0.21.0-RC2
0.21.0-RC3
0.21.0-RC4
0.21.0-RC5
0.21.0
0.21.1
0.21.2
0.21.3
0.21.4
0.21.5
0.21.6
0.21.7
0.21.8
0.21.9
0.21.11
0.21.12
0.21.13
0.21.14
0.21.15
0.21.16
0.21.17
0.21.18
0.21.19
0.21.20
0.21.21
0.21.22
0.21.23
0.21.24
0.21.25
0.21.26
0.21.27
0.21.28

Database specific

last_known_affected_version_range
"<= 0.21.28"
source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/09/GHSA-5vcm-3xc3-w7x3/GHSA-5vcm-3xc3-w7x3.json"
org.http4s:http4s-client_2.13

Package

Name
org.http4s:http4s-client_2.13
View open source insights on deps.dev
Purl
pkg:maven/org.http4s/http4s-client_2.13

Affected ranges

Type
ECOSYSTEM
Events
Introduced
0.22.0
Fixed
0.22.5

Affected versions

0.*
0.22.0
0.22-53-01128f5
0.22-96-55d3184
0.22-129-24d065b
0.22-143-49b5a8d
0.22.1
0.22.2
0.22.3
0.22.4

Database specific

last_known_affected_version_range
"<= 0.22.4"
source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/09/GHSA-5vcm-3xc3-w7x3/GHSA-5vcm-3xc3-w7x3.json"
org.http4s:http4s-client_2.13

Package

Name
org.http4s:http4s-client_2.13
View open source insights on deps.dev
Purl
pkg:maven/org.http4s/http4s-client_2.13

Affected ranges

Type
ECOSYSTEM
Events
Introduced
0.23.0
Fixed
0.23.4

Affected versions

0.*
0.23.0
0.23.1
0.23.2
0.23.3

Database specific

last_known_affected_version_range
"<= 0.23.3"
source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/09/GHSA-5vcm-3xc3-w7x3/GHSA-5vcm-3xc3-w7x3.json"
org.http4s:http4s-client_3

Package

Name
org.http4s:http4s-client_3
View open source insights on deps.dev
Purl
pkg:maven/org.http4s/http4s-client_3

Affected ranges

Type
ECOSYSTEM
Events
Introduced
0 Unknown introduced version / All previous versions are affected
Fixed
0.21.29

Database specific

last_known_affected_version_range
"<= 0.21.28"
source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/09/GHSA-5vcm-3xc3-w7x3/GHSA-5vcm-3xc3-w7x3.json"
org.http4s:http4s-client_3

Package

Name
org.http4s:http4s-client_3
View open source insights on deps.dev
Purl
pkg:maven/org.http4s/http4s-client_3

Affected ranges

Type
ECOSYSTEM
Events
Introduced
0.22.0
Fixed
0.22.5

Affected versions

0.*
0.22.0
0.22.1
0.22.2
0.22.3
0.22.4

Database specific

last_known_affected_version_range
"<= 0.22.4"
source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/09/GHSA-5vcm-3xc3-w7x3/GHSA-5vcm-3xc3-w7x3.json"
org.http4s:http4s-client_3

Package

Name
org.http4s:http4s-client_3
View open source insights on deps.dev
Purl
pkg:maven/org.http4s/http4s-client_3

Affected ranges

Type
ECOSYSTEM
Events
Introduced
0.23.0
Fixed
0.23.4

Affected versions

0.*
0.23.0
0.23.1
0.23.2
0.23.3

Database specific

last_known_affected_version_range
"<= 0.23.3"
source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/09/GHSA-5vcm-3xc3-w7x3/GHSA-5vcm-3xc3-w7x3.json"
org.http4s:http4s-server_2.10

Package

Name
org.http4s:http4s-server_2.10
View open source insights on deps.dev
Purl
pkg:maven/org.http4s/http4s-server_2.10

Affected ranges

Type
ECOSYSTEM
Events
Introduced
0 Unknown introduced version / All previous versions are affected
Last Affected
0.21.28

Affected versions

0.*
0.2.0
0.3.0
0.4.0
0.4.1
0.4.2
0.5.0
0.5.1
0.5.2
0.5.3
0.5.4
0.6.0
0.6.1
0.6.2
0.6.4
0.6.5
0.7.0
0.8.0
0.8.1
0.8.2
0.8.3
0.8.4
0.8.5
0.8.6
0.9.0
0.9.1
0.9.2
0.9.3
0.10.0
0.10.1
0.11.0
0.11.1
0.11.2
0.11.3
0.12.0
0.12.1
0.12.2
0.12.3
0.12.4
0.12.5
0.12.6
0.13.0
0.13.0a
0.13.1
0.13.1a
0.13.2
0.13.2a
0.13.3
0.13.3a
0.14.0
0.14.0a
0.14.1
0.14.1a
0.14.2
0.14.2a
0.14.3
0.14.3a
0.14.4
0.14.4a
0.14.5
0.14.5a
0.14.6
0.14.6a
0.14.7
0.14.7a
0.14.8
0.14.8a
0.14.9
0.14.9a
0.14.10
0.14.10a
0.14.11
0.14.11a
0.15.0
0.15.0a
0.15.1
0.15.1a
0.15.2
0.15.2a
0.15.3
0.15.3a
0.15.4
0.15.4a
0.15.5
0.15.5a
0.15.6
0.15.6a
0.15.7
0.15.7a
0.15.8
0.15.8a
0.15.9
0.15.9a
0.15.10
0.15.10a
0.15.11
0.15.11a
0.15.12
0.15.12a
0.15.13
0.15.13a
0.15.14
0.15.14a
0.15.15
0.15.15a
0.15.16
0.15.16a
0.16.0-M1
0.16.0-M2
0.16.0-M3
0.16.0-RC2
0.16.0-RC3
0.16.0
0.16.0a-M1
0.16.0a-M2
0.16.0a-M3
0.16.0a-RC1
0.16.0a-RC2
0.16.0a-RC3
0.16.0a
0.16.1
0.16.1a
0.16.2
0.16.2a
0.16.3
0.16.3a
0.16.4
0.16.4a
0.16.5
0.16.5a
0.16.6
0.16.6a

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/09/GHSA-5vcm-3xc3-w7x3/GHSA-5vcm-3xc3-w7x3.json"
org.http4s:http4s-server_2.11

Package

Name
org.http4s:http4s-server_2.11
View open source insights on deps.dev
Purl
pkg:maven/org.http4s/http4s-server_2.11

Affected ranges

Type
ECOSYSTEM
Events
Introduced
0 Unknown introduced version / All previous versions are affected
Last Affected
0.21.28

Affected versions

0.*
0.2.0
0.3.0
0.4.0
0.4.1
0.4.2
0.5.0
0.5.1
0.5.2
0.5.3
0.5.4
0.6.0
0.6.1
0.6.2
0.6.3
0.6.4
0.6.5
0.7.0
0.8.0
0.8.1
0.8.2
0.8.3
0.8.4
0.8.5
0.8.6
0.9.0
0.9.1
0.9.2
0.9.3
0.10.0
0.10.1
0.11.0
0.11.1
0.11.2
0.11.3
0.12.0
0.12.1
0.12.2
0.12.3
0.12.4
0.12.5
0.12.6
0.13.0
0.13.0a
0.13.1
0.13.1a
0.13.2
0.13.2a
0.13.3
0.13.3a
0.14.0
0.14.0a
0.14.1
0.14.1a
0.14.2
0.14.2a
0.14.3
0.14.3a
0.14.4
0.14.4a
0.14.5
0.14.5a
0.14.6
0.14.6a
0.14.7
0.14.7a
0.14.8
0.14.8a
0.14.9
0.14.9a
0.14.10
0.14.10a
0.14.11
0.14.11a
0.15.0
0.15.0a
0.15.1
0.15.1a
0.15.2
0.15.2a
0.15.3
0.15.3a
0.15.4
0.15.4a
0.15.5
0.15.5a
0.15.6
0.15.6a
0.15.7
0.15.7a
0.15.8
0.15.8a
0.15.9
0.15.9a
0.15.10
0.15.10a
0.15.11
0.15.11a
0.15.12
0.15.12a
0.15.13
0.15.13a
0.15.14
0.15.14a
0.15.15
0.15.15a
0.15.16
0.15.16a
0.16.0-M1
0.16.0-M2
0.16.0-M3
0.16.0-RC1
0.16.0-RC2
0.16.0-RC3
0.16.0
0.16.0a-M1
0.16.0a-M2
0.16.0a-M3
0.16.0a-RC1
0.16.0a-RC2
0.16.0a-RC3
0.16.0a
0.16.1
0.16.1a
0.16.2
0.16.2a
0.16.3
0.16.3a
0.16.4
0.16.4a
0.16.5
0.16.5a
0.16.6
0.16.6a
0.17.0-M1
0.17.0-M2
0.17.0-M3
0.17.0-RC1
0.17.0-RC2
0.17.0-RC3
0.17.0
0.17.1
0.17.2
0.17.3
0.17.4
0.17.5
0.17.6
0.18.0-M1
0.18.0-M2
0.18.0-M3
0.18.0-M4
0.18.0-M5
0.18.0-M6
0.18.0-M7
0.18.0-M8
0.18.0-M9
0.18.0
0.18.1
0.18.2
0.18.3
0.18.4
0.18.5
0.18.6
0.18.7
0.18.8
0.18.9
0.18.10
0.18.11
0.18.12
0.18.13
0.18.14
0.18.15
0.18.16
0.18.17
0.18.18
0.18.19
0.18.20
0.18.21
0.18.22
0.18.23
0.18.24
0.18.25
0.18.26
0.19.0-M1
0.19.0-M2
0.19.0-M3
0.19.0-M4
0.19.0
0.20.0-M1
0.20.0-M2
0.20.0-M3
0.20.0-M4
0.20.0-M5
0.20.0-M6
0.20.0-M7
0.20.0-RC1
0.20.0
0.20.1
0.20.2
0.20.3
0.20.4
0.20.5
0.20.6
0.20.7
0.20.8
0.20.9
0.20.10
0.20.11
0.20.12
0.20.13
0.20.14
0.20.15
0.20.16
0.20.17
0.20.18
0.20.19
0.20.20
0.20.21
0.20.22
0.20.23
0.21.0-M1

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/09/GHSA-5vcm-3xc3-w7x3/GHSA-5vcm-3xc3-w7x3.json"
org.http4s:http4s-server_2.12

Package

Name
org.http4s:http4s-server_2.12
View open source insights on deps.dev
Purl
pkg:maven/org.http4s/http4s-server_2.12

Affected ranges

Type
ECOSYSTEM
Events
Introduced
0 Unknown introduced version / All previous versions are affected
Fixed
0.21.29

Affected versions

0.*
0.10.0-M10
0.15.0
0.15.0a
0.15.1
0.15.1a
0.15.2
0.15.2a
0.15.3
0.15.3a
0.15.4
0.15.4a
0.15.5
0.15.5a
0.15.6
0.15.6a
0.15.7
0.15.7a
0.15.8
0.15.8a
0.15.9
0.15.9a
0.15.10
0.15.10a
0.15.11
0.15.11a
0.15.12
0.15.12a
0.15.13
0.15.13a
0.15.14
0.15.14a
0.15.15
0.15.15a
0.15.16
0.15.16a
0.16.0-M1
0.16.0-M2
0.16.0-M3
0.16.0-RC1
0.16.0-RC2
0.16.0-RC3
0.16.0
0.16.0a-M1
0.16.0a-M2
0.16.0a-M3
0.16.0a-RC1
0.16.0a-RC2
0.16.0a-RC3
0.16.0a
0.16.1
0.16.1a
0.16.2
0.16.2a
0.16.3
0.16.3a
0.16.4
0.16.4a
0.16.5
0.16.5a
0.16.6
0.16.6a
0.17.0-M1
0.17.0-M2
0.17.0-M3
0.17.0-RC1
0.17.0-RC2
0.17.0-RC3
0.17.0
0.17.1
0.17.2
0.17.3
0.17.4
0.17.5
0.17.6
0.18.0-M1
0.18.0-M2
0.18.0-M3
0.18.0-M4
0.18.0-M5
0.18.0-M6
0.18.0-M7
0.18.0-M8
0.18.0-M9
0.18.0
0.18.1
0.18.2
0.18.3
0.18.4
0.18.5
0.18.6
0.18.7
0.18.8
0.18.9
0.18.10
0.18.11
0.18.12
0.18.13
0.18.14
0.18.15
0.18.16
0.18.17
0.18.18
0.18.19
0.18.20
0.18.21
0.18.22
0.18.23
0.18.24
0.18.25
0.18.26
0.19.0-M1
0.19.0-M2
0.19.0-M3
0.19.0-M4
0.19.0
0.20.0-M1
0.20.0-M2
0.20.0-M3
0.20.0-M4
0.20.0-M5
0.20.0-M6
0.20.0-M7
0.20.0-RC1
0.20.0
0.20.1
0.20.2
0.20.3
0.20.4
0.20.5
0.20.6
0.20.7
0.20.8
0.20.9
0.20.10
0.20.11
0.20.12
0.20.13
0.20.14
0.20.15
0.20.16
0.20.17
0.20.18
0.20.19
0.20.20
0.20.21
0.20.22
0.20.23
0.21.0-M1
0.21.0-M2
0.21.0-M3
0.21.0-M4
0.21.0-M5
0.21.0-M6
0.21.0-RC1
0.21.0-RC2
0.21.0-RC3
0.21.0-RC4
0.21.0-RC5
0.21.0
0.21.1
0.21.2
0.21.3
0.21.4
0.21.5
0.21.6
0.21.7
0.21.8
0.21.9
0.21.11
0.21.12
0.21.13
0.21.14
0.21.15
0.21.16
0.21.17
0.21.18
0.21.19
0.21.20
0.21.21
0.21.22
0.21.23
0.21.24
0.21.25
0.21.26
0.21.27
0.21.28

Database specific

last_known_affected_version_range
"<= 0.21.28"
source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/09/GHSA-5vcm-3xc3-w7x3/GHSA-5vcm-3xc3-w7x3.json"
org.http4s:http4s-server_2.12

Package

Name
org.http4s:http4s-server_2.12
View open source insights on deps.dev
Purl
pkg:maven/org.http4s/http4s-server_2.12

Affected ranges

Type
ECOSYSTEM
Events
Introduced
0.22.0
Fixed
0.22.5

Affected versions

0.*
0.22.0
0.22-53-01128f5
0.22-96-55d3184
0.22-129-24d065b
0.22-143-49b5a8d
0.22.1
0.22.2
0.22.3
0.22.4

Database specific

last_known_affected_version_range
"<= 0.22.4"
source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/09/GHSA-5vcm-3xc3-w7x3/GHSA-5vcm-3xc3-w7x3.json"
org.http4s:http4s-server_2.12

Package

Name
org.http4s:http4s-server_2.12
View open source insights on deps.dev
Purl
pkg:maven/org.http4s/http4s-server_2.12

Affected ranges

Type
ECOSYSTEM
Events
Introduced
0.23.0
Fixed
0.23.4

Affected versions

0.*
0.23.0
0.23.1
0.23.2
0.23.3

Database specific

last_known_affected_version_range
"<= 0.23.3"
source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/09/GHSA-5vcm-3xc3-w7x3/GHSA-5vcm-3xc3-w7x3.json"
org.http4s:http4s-server_2.13

Package

Name
org.http4s:http4s-server_2.13
View open source insights on deps.dev
Purl
pkg:maven/org.http4s/http4s-server_2.13

Affected ranges

Type
ECOSYSTEM
Events
Introduced
0 Unknown introduced version / All previous versions are affected
Fixed
0.21.29

Affected versions

0.*
0.10.0-M10
0.21.0-M1
0.21.0-M2
0.21.0-M3
0.21.0-M4
0.21.0-M5
0.21.0-M6
0.21.0-RC1
0.21.0-RC2
0.21.0-RC3
0.21.0-RC4
0.21.0-RC5
0.21.0
0.21.1
0.21.2
0.21.3
0.21.4
0.21.5
0.21.6
0.21.7
0.21.8
0.21.9
0.21.11
0.21.12
0.21.13
0.21.14
0.21.15
0.21.16
0.21.17
0.21.18
0.21.19
0.21.20
0.21.21
0.21.22
0.21.23
0.21.24
0.21.25
0.21.26
0.21.27
0.21.28

Database specific

last_known_affected_version_range
"<= 0.21.28"
source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/09/GHSA-5vcm-3xc3-w7x3/GHSA-5vcm-3xc3-w7x3.json"
org.http4s:http4s-server_2.13

Package

Name
org.http4s:http4s-server_2.13
View open source insights on deps.dev
Purl
pkg:maven/org.http4s/http4s-server_2.13

Affected ranges

Type
ECOSYSTEM
Events
Introduced
0.22.0
Fixed
0.22.5

Affected versions

0.*
0.22.0
0.22-53-01128f5
0.22-96-55d3184
0.22-129-24d065b
0.22-143-49b5a8d
0.22.1
0.22.2
0.22.3
0.22.4

Database specific

last_known_affected_version_range
"<= 0.22.4"
source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/09/GHSA-5vcm-3xc3-w7x3/GHSA-5vcm-3xc3-w7x3.json"
org.http4s:http4s-server_2.13

Package

Name
org.http4s:http4s-server_2.13
View open source insights on deps.dev
Purl
pkg:maven/org.http4s/http4s-server_2.13

Affected ranges

Type
ECOSYSTEM
Events
Introduced
0.23.0
Fixed
0.23.4

Affected versions

0.*
0.23.0
0.23.1
0.23.2
0.23.3

Database specific

last_known_affected_version_range
"<= 0.23.3"
source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/09/GHSA-5vcm-3xc3-w7x3/GHSA-5vcm-3xc3-w7x3.json"
org.http4s:http4s-server_2.13.0-M5

Package

Name
org.http4s:http4s-server_2.13.0-M5
View open source insights on deps.dev
Purl
pkg:maven/org.http4s/http4s-server_2.13.0-M5

Affected ranges

Type
ECOSYSTEM
Events
Introduced
0 Unknown introduced version / All previous versions are affected
Last Affected
0.21.28

Affected versions

0.*
0.20.0-RC1
0.20.0
0.20.1
0.20.2
0.20.3
0.20.4
0.20.5
0.20.6
0.20.7
0.20.8
0.20.9
0.20.10

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/09/GHSA-5vcm-3xc3-w7x3/GHSA-5vcm-3xc3-w7x3.json"
org.http4s:http4s-server_3

Package

Name
org.http4s:http4s-server_3
View open source insights on deps.dev
Purl
pkg:maven/org.http4s/http4s-server_3

Affected ranges

Type
ECOSYSTEM
Events
Introduced
0.22.0
Fixed
0.22.5

Affected versions

0.*
0.22.0
0.22.1
0.22.2
0.22.3
0.22.4

Database specific

last_known_affected_version_range
"<= 0.22.4"
source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/09/GHSA-5vcm-3xc3-w7x3/GHSA-5vcm-3xc3-w7x3.json"
org.http4s:http4s-server_3

Package

Name
org.http4s:http4s-server_3
View open source insights on deps.dev
Purl
pkg:maven/org.http4s/http4s-server_3

Affected ranges

Type
ECOSYSTEM
Events
Introduced
0.23.0
Fixed
0.23.4

Affected versions

0.*
0.23.0
0.23.1
0.23.2
0.23.3

Database specific

last_known_affected_version_range
"<= 0.23.3"
source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/09/GHSA-5vcm-3xc3-w7x3/GHSA-5vcm-3xc3-w7x3.json"