GCVE Workshop - 22 September 2026 (14:00-18:00), Luxembourg Before The Vulnopticon Conference - Registration
Search

Find a vulnerability

Search criteria Use this form to refine search results.
Full-text search supports keyword queries with ranking and filtering.
You can combine vendor, product, and sources to narrow results.
Enable “Apply ordering” to sort by date instead of relevance.

    Related vulnerabilities

    BREW-AIDER-CVE-2026-48710 (GHSA-86QP-5C8J-P5MR)

    Vulnerability from osv_homebrew – Published: 2026-08-13 16:35 – Updated: 2026-09-09 23:40 – Source website
    VLAI
    Summary
    Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks
    Details

    Summary

    In affected versions, the HTTP Host request header was not validated before being used to reconstruct request.url. Because the routing algorithm relies on the raw HTTP path while request.url is rebuilt from the Host header, a malformed header could make request.url.path differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on request.url (rather than the raw scope path) could therefore be bypassed.

    Details

    When a client requests http://example.com/foo, it sends:

    GET /foo HTTP/1.1
    Host: example.com
    

    Affected versions reconstructed the URL by concatenating http://{host}{path} and re-parsing the result. The Host value is only valid as a uri-host [ ":" port ] per RFC 9112 §3.2, where uri-host follows the restricted host grammar of RFC 3986 §3.2.2. When it contains characters outside that grammar - notably /, ?, or # - those characters move the path/query/fragment boundaries during re-parsing, so the parsed request.url.path no longer matches the path the server actually received. For example:

    GET /foo HTTP/1.1
    Host: example.com/abc?bar=
    

    reconstructs to http://example.com/abc?bar=/foo, whose parsed path is /abc - even though routing used the real path /foo. The router still dispatches to /foo and the endpoint executes, but any middleware or code that reads request.url.path sees /abc, so path-based authorization checks can be bypassed.

    Impact

    Any application running an affected version that relies on request.url (or request.url.path) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on request.url.path. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed Host header before forwarding and the application does not trust attacker-controlled host headers (e.g. X-Forwarded-Host) elsewhere.

    Mitigation

    Upgrade to a patched version, which validates the Host header against the grammar of RFC 9112 §3.2 / RFC 3986 §3.2.2 when constructing request.url and falls back to scope["server"] for malformed values.


    {
      "affected": [
        {
          "ecosystem_specific": {
            "fix": null,
            "range_state": "affected",
            "resource": "starlette",
            "resource_purl": "pkg:pypi/starlette@0.52.1",
            "upstream_fixed_in": "1.0.1"
          },
          "package": {
            "ecosystem": "Homebrew",
            "name": "aider",
            "purl": "pkg:brew/aider"
          },
          "ranges": [
            {
              "events": [
                {
                  "introduced": "0"
                }
              ],
              "type": "ECOSYSTEM"
            }
          ]
        }
      ],
      "database_specific": {
        "confidence": "high",
        "source": "matched",
        "strategy": "registry",
        "upstream_evidence": [
          {
            "ecosystem": "PyPI",
            "key": "pkg:pypi/starlette@0.52.1",
            "name": "starlette",
            "resource": "starlette",
            "strategy": "registry",
            "subject_version": "0.52.1"
          }
        ]
      },
      "details": "### Summary\nIn affected versions, the HTTP `Host` request header was not validated before being used to reconstruct `request.url`. Because the routing algorithm relies on the raw HTTP path while `request.url` is rebuilt from the `Host` header, a malformed header could make `request.url.path` differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on `request.url` (rather than the raw `scope` path) could therefore be bypassed.\n\n### Details\nWhen a client requests `http://example.com/foo`, it sends:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com\n```\n\nAffected versions reconstructed the URL by concatenating `http://{host}{path}` and re-parsing the result. The `Host` value is only valid as a `uri-host [ \":\" port ]` per [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6), where `uri-host` follows the restricted `host` grammar of [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2). When it contains characters outside that grammar - notably `/`, `?`, or `#` - those characters move the path/query/fragment boundaries during re-parsing, so the parsed `request.url.path` no longer matches the path the server actually received. For example:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com/abc?bar=\n```\n\nreconstructs to `http://example.com/abc?bar=/foo`, whose parsed `path` is `/abc` - even though routing used the real path `/foo`. The router still dispatches to `/foo` and the endpoint executes, but any middleware or code that reads `request.url.path` sees `/abc`, so path-based authorization checks can be bypassed.\n\n### Impact\nAny application running an affected version that relies on `request.url` (or `request.url.path`) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on `request.url.path`. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed `Host` header before forwarding and the application does not trust attacker-controlled host headers (e.g. `X-Forwarded-Host`) elsewhere.\n\n### Mitigation\nUpgrade to a patched version, which validates the `Host` header against the grammar of [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6) / [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2) when constructing `request.url` and falls back to `scope[\"server\"]` for malformed values.",
      "id": "BREW-aider-CVE-2026-48710",
      "modified": "2026-09-09T23:40:56Z",
      "published": "2026-08-13T16:35:12Z",
      "references": [
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/security/advisories/GHSA-86qp-5c8j-p5mr"
        },
        {
          "type": "ADVISORY",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/commit/764dab0dcfb9033d75442d7a359645c9f94648c6"
        },
        {
          "type": "WEB",
          "url": "https://www.x41-dsec.de/lab/advisories/x41-2026-002-starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.secwest.net/starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-48710.json"
        },
        {
          "type": "WEB",
          "url": "https://ostif.org/disclosing-the-badhost-vulnerability-in-starlette"
        },
        {
          "type": "WEB",
          "url": "https://github.com/pypa/advisory-database/tree/main/vulns/starlette/PYSEC-2026-161.yaml"
        },
        {
          "type": "PACKAGE",
          "url": "https://github.com/Kludex/starlette"
        },
        {
          "type": "WEB",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2481742"
        },
        {
          "type": "WEB",
          "url": "https://badhost.org"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/security/cve/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:60520"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:51357"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:44696"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:43038"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:37275"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34532"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34526"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34456"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30089"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30088"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:26226"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:24866"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:23346"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22993"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22992"
        }
      ],
      "schema_version": "1.7.3",
      "severity": [
        {
          "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
          "type": "CVSS_V3"
        }
      ],
      "summary": "Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks",
      "upstream": [
        "GHSA-86qp-5c8j-p5mr",
        "CVE-2026-48710",
        "PYSEC-2026-161",
        "X41-2026-002"
      ]
    }

    BREW-CYCODE-CVE-2026-48710 (GHSA-86QP-5C8J-P5MR)

    Vulnerability from osv_homebrew – Published: 2026-08-13 16:42 – Updated: 2026-09-17 18:32 – Source website
    VLAI
    Summary
    Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks
    Details

    Summary

    In affected versions, the HTTP Host request header was not validated before being used to reconstruct request.url. Because the routing algorithm relies on the raw HTTP path while request.url is rebuilt from the Host header, a malformed header could make request.url.path differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on request.url (rather than the raw scope path) could therefore be bypassed.

    Details

    When a client requests http://example.com/foo, it sends:

    GET /foo HTTP/1.1
    Host: example.com
    

    Affected versions reconstructed the URL by concatenating http://{host}{path} and re-parsing the result. The Host value is only valid as a uri-host [ ":" port ] per RFC 9112 §3.2, where uri-host follows the restricted host grammar of RFC 3986 §3.2.2. When it contains characters outside that grammar - notably /, ?, or # - those characters move the path/query/fragment boundaries during re-parsing, so the parsed request.url.path no longer matches the path the server actually received. For example:

    GET /foo HTTP/1.1
    Host: example.com/abc?bar=
    

    reconstructs to http://example.com/abc?bar=/foo, whose parsed path is /abc - even though routing used the real path /foo. The router still dispatches to /foo and the endpoint executes, but any middleware or code that reads request.url.path sees /abc, so path-based authorization checks can be bypassed.

    Impact

    Any application running an affected version that relies on request.url (or request.url.path) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on request.url.path. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed Host header before forwarding and the application does not trust attacker-controlled host headers (e.g. X-Forwarded-Host) elsewhere.

    Mitigation

    Upgrade to a patched version, which validates the Host header against the grammar of RFC 9112 §3.2 / RFC 3986 §3.2.2 when constructing request.url and falls back to scope["server"] for malformed values.


    {
      "affected": [
        {
          "ecosystem_specific": {
            "fix": "bump",
            "range_state": "fixed",
            "resource": "starlette",
            "resource_purl": "pkg:pypi/starlette@1.6.0",
            "upstream_fixed_in": "1.0.1"
          },
          "package": {
            "ecosystem": "Homebrew",
            "name": "cycode",
            "purl": "pkg:brew/cycode"
          },
          "ranges": [
            {
              "events": [
                {
                  "introduced": "3.2.0"
                },
                {
                  "fixed": "3.15.2_2"
                }
              ],
              "type": "ECOSYSTEM"
            }
          ]
        }
      ],
      "database_specific": {
        "confidence": "high",
        "source": "matched",
        "strategy": "registry",
        "upstream_evidence": [
          {
            "ecosystem": "PyPI",
            "key": "pkg:pypi/starlette@1.6.0",
            "name": "starlette",
            "resource": "starlette",
            "strategy": "registry",
            "subject_version": "1.6.0"
          }
        ]
      },
      "details": "### Summary\nIn affected versions, the HTTP `Host` request header was not validated before being used to reconstruct `request.url`. Because the routing algorithm relies on the raw HTTP path while `request.url` is rebuilt from the `Host` header, a malformed header could make `request.url.path` differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on `request.url` (rather than the raw `scope` path) could therefore be bypassed.\n\n### Details\nWhen a client requests `http://example.com/foo`, it sends:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com\n```\n\nAffected versions reconstructed the URL by concatenating `http://{host}{path}` and re-parsing the result. The `Host` value is only valid as a `uri-host [ \":\" port ]` per [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6), where `uri-host` follows the restricted `host` grammar of [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2). When it contains characters outside that grammar - notably `/`, `?`, or `#` - those characters move the path/query/fragment boundaries during re-parsing, so the parsed `request.url.path` no longer matches the path the server actually received. For example:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com/abc?bar=\n```\n\nreconstructs to `http://example.com/abc?bar=/foo`, whose parsed `path` is `/abc` - even though routing used the real path `/foo`. The router still dispatches to `/foo` and the endpoint executes, but any middleware or code that reads `request.url.path` sees `/abc`, so path-based authorization checks can be bypassed.\n\n### Impact\nAny application running an affected version that relies on `request.url` (or `request.url.path`) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on `request.url.path`. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed `Host` header before forwarding and the application does not trust attacker-controlled host headers (e.g. `X-Forwarded-Host`) elsewhere.\n\n### Mitigation\nUpgrade to a patched version, which validates the `Host` header against the grammar of [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6) / [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2) when constructing `request.url` and falls back to `scope[\"server\"]` for malformed values.",
      "id": "BREW-cycode-CVE-2026-48710",
      "modified": "2026-09-17T18:32:20Z",
      "published": "2026-08-13T16:42:07Z",
      "references": [
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/security/advisories/GHSA-86qp-5c8j-p5mr"
        },
        {
          "type": "ADVISORY",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/commit/764dab0dcfb9033d75442d7a359645c9f94648c6"
        },
        {
          "type": "WEB",
          "url": "https://www.x41-dsec.de/lab/advisories/x41-2026-002-starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.secwest.net/starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-48710.json"
        },
        {
          "type": "WEB",
          "url": "https://ostif.org/disclosing-the-badhost-vulnerability-in-starlette"
        },
        {
          "type": "WEB",
          "url": "https://github.com/pypa/advisory-database/tree/main/vulns/starlette/PYSEC-2026-161.yaml"
        },
        {
          "type": "PACKAGE",
          "url": "https://github.com/Kludex/starlette"
        },
        {
          "type": "WEB",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2481742"
        },
        {
          "type": "WEB",
          "url": "https://badhost.org"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/security/cve/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:60520"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:51357"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:44696"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:43038"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:37275"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34532"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34526"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34456"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30089"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30088"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:26226"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:24866"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:23346"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22993"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22992"
        }
      ],
      "schema_version": "1.7.3",
      "severity": [
        {
          "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
          "type": "CVSS_V3"
        }
      ],
      "summary": "Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks",
      "upstream": [
        "GHSA-86qp-5c8j-p5mr",
        "CVE-2026-48710",
        "PYSEC-2026-161",
        "X41-2026-002"
      ]
    }

    BREW-DSTACK-CVE-2026-48710 (GHSA-86QP-5C8J-P5MR)

    Vulnerability from osv_homebrew – Published: 2026-08-13 16:43 – Updated: 2026-09-17 18:14 – Source website
    VLAI
    Summary
    Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks
    Details

    Summary

    In affected versions, the HTTP Host request header was not validated before being used to reconstruct request.url. Because the routing algorithm relies on the raw HTTP path while request.url is rebuilt from the Host header, a malformed header could make request.url.path differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on request.url (rather than the raw scope path) could therefore be bypassed.

    Details

    When a client requests http://example.com/foo, it sends:

    GET /foo HTTP/1.1
    Host: example.com
    

    Affected versions reconstructed the URL by concatenating http://{host}{path} and re-parsing the result. The Host value is only valid as a uri-host [ ":" port ] per RFC 9112 §3.2, where uri-host follows the restricted host grammar of RFC 3986 §3.2.2. When it contains characters outside that grammar - notably /, ?, or # - those characters move the path/query/fragment boundaries during re-parsing, so the parsed request.url.path no longer matches the path the server actually received. For example:

    GET /foo HTTP/1.1
    Host: example.com/abc?bar=
    

    reconstructs to http://example.com/abc?bar=/foo, whose parsed path is /abc - even though routing used the real path /foo. The router still dispatches to /foo and the endpoint executes, but any middleware or code that reads request.url.path sees /abc, so path-based authorization checks can be bypassed.

    Impact

    Any application running an affected version that relies on request.url (or request.url.path) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on request.url.path. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed Host header before forwarding and the application does not trust attacker-controlled host headers (e.g. X-Forwarded-Host) elsewhere.

    Mitigation

    Upgrade to a patched version, which validates the Host header against the grammar of RFC 9112 §3.2 / RFC 3986 §3.2.2 when constructing request.url and falls back to scope["server"] for malformed values.


    {
      "affected": [
        {
          "ecosystem_specific": {
            "fix": "bump",
            "range_state": "fixed",
            "resource": "starlette",
            "resource_purl": "pkg:pypi/starlette@1.6.0",
            "upstream_fixed_in": "1.0.1"
          },
          "package": {
            "ecosystem": "Homebrew",
            "name": "dstack",
            "purl": "pkg:brew/dstack"
          },
          "ranges": [
            {
              "events": [
                {
                  "introduced": "0.0.14"
                },
                {
                  "fixed": "0.21.0"
                }
              ],
              "type": "ECOSYSTEM"
            }
          ]
        }
      ],
      "database_specific": {
        "confidence": "high",
        "source": "matched",
        "strategy": "registry",
        "upstream_evidence": [
          {
            "ecosystem": "PyPI",
            "key": "pkg:pypi/starlette@1.6.0",
            "name": "starlette",
            "resource": "starlette",
            "strategy": "registry",
            "subject_version": "1.6.0"
          }
        ]
      },
      "details": "### Summary\nIn affected versions, the HTTP `Host` request header was not validated before being used to reconstruct `request.url`. Because the routing algorithm relies on the raw HTTP path while `request.url` is rebuilt from the `Host` header, a malformed header could make `request.url.path` differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on `request.url` (rather than the raw `scope` path) could therefore be bypassed.\n\n### Details\nWhen a client requests `http://example.com/foo`, it sends:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com\n```\n\nAffected versions reconstructed the URL by concatenating `http://{host}{path}` and re-parsing the result. The `Host` value is only valid as a `uri-host [ \":\" port ]` per [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6), where `uri-host` follows the restricted `host` grammar of [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2). When it contains characters outside that grammar - notably `/`, `?`, or `#` - those characters move the path/query/fragment boundaries during re-parsing, so the parsed `request.url.path` no longer matches the path the server actually received. For example:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com/abc?bar=\n```\n\nreconstructs to `http://example.com/abc?bar=/foo`, whose parsed `path` is `/abc` - even though routing used the real path `/foo`. The router still dispatches to `/foo` and the endpoint executes, but any middleware or code that reads `request.url.path` sees `/abc`, so path-based authorization checks can be bypassed.\n\n### Impact\nAny application running an affected version that relies on `request.url` (or `request.url.path`) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on `request.url.path`. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed `Host` header before forwarding and the application does not trust attacker-controlled host headers (e.g. `X-Forwarded-Host`) elsewhere.\n\n### Mitigation\nUpgrade to a patched version, which validates the `Host` header against the grammar of [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6) / [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2) when constructing `request.url` and falls back to `scope[\"server\"]` for malformed values.",
      "id": "BREW-dstack-CVE-2026-48710",
      "modified": "2026-09-17T18:14:18Z",
      "published": "2026-08-13T16:43:57Z",
      "references": [
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/security/advisories/GHSA-86qp-5c8j-p5mr"
        },
        {
          "type": "ADVISORY",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/commit/764dab0dcfb9033d75442d7a359645c9f94648c6"
        },
        {
          "type": "WEB",
          "url": "https://www.x41-dsec.de/lab/advisories/x41-2026-002-starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.secwest.net/starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-48710.json"
        },
        {
          "type": "WEB",
          "url": "https://ostif.org/disclosing-the-badhost-vulnerability-in-starlette"
        },
        {
          "type": "WEB",
          "url": "https://github.com/pypa/advisory-database/tree/main/vulns/starlette/PYSEC-2026-161.yaml"
        },
        {
          "type": "PACKAGE",
          "url": "https://github.com/Kludex/starlette"
        },
        {
          "type": "WEB",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2481742"
        },
        {
          "type": "WEB",
          "url": "https://badhost.org"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/security/cve/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:60520"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:51357"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:44696"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:43038"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:37275"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34532"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34526"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34456"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30089"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30088"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:26226"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:24866"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:23346"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22993"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22992"
        }
      ],
      "schema_version": "1.7.3",
      "severity": [
        {
          "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
          "type": "CVSS_V3"
        }
      ],
      "summary": "Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks",
      "upstream": [
        "GHSA-86qp-5c8j-p5mr",
        "CVE-2026-48710",
        "PYSEC-2026-161",
        "X41-2026-002"
      ]
    }

    BREW-ESPHOME-CVE-2026-48710 (GHSA-86QP-5C8J-P5MR)

    Vulnerability from osv_homebrew – Published: 2026-08-13 16:45 – Updated: 2026-09-09 23:53 – Source website
    VLAI
    Summary
    Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks
    Details

    Summary

    In affected versions, the HTTP Host request header was not validated before being used to reconstruct request.url. Because the routing algorithm relies on the raw HTTP path while request.url is rebuilt from the Host header, a malformed header could make request.url.path differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on request.url (rather than the raw scope path) could therefore be bypassed.

    Details

    When a client requests http://example.com/foo, it sends:

    GET /foo HTTP/1.1
    Host: example.com
    

    Affected versions reconstructed the URL by concatenating http://{host}{path} and re-parsing the result. The Host value is only valid as a uri-host [ ":" port ] per RFC 9112 §3.2, where uri-host follows the restricted host grammar of RFC 3986 §3.2.2. When it contains characters outside that grammar - notably /, ?, or # - those characters move the path/query/fragment boundaries during re-parsing, so the parsed request.url.path no longer matches the path the server actually received. For example:

    GET /foo HTTP/1.1
    Host: example.com/abc?bar=
    

    reconstructs to http://example.com/abc?bar=/foo, whose parsed path is /abc - even though routing used the real path /foo. The router still dispatches to /foo and the endpoint executes, but any middleware or code that reads request.url.path sees /abc, so path-based authorization checks can be bypassed.

    Impact

    Any application running an affected version that relies on request.url (or request.url.path) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on request.url.path. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed Host header before forwarding and the application does not trust attacker-controlled host headers (e.g. X-Forwarded-Host) elsewhere.

    Mitigation

    Upgrade to a patched version, which validates the Host header against the grammar of RFC 9112 §3.2 / RFC 3986 §3.2.2 when constructing request.url and falls back to scope["server"] for malformed values.


    {
      "affected": [
        {
          "ecosystem_specific": {
            "fix": null,
            "range_state": "affected",
            "resource": "starlette",
            "resource_purl": "pkg:pypi/starlette@0.52.1",
            "upstream_fixed_in": "1.0.1"
          },
          "package": {
            "ecosystem": "Homebrew",
            "name": "esphome",
            "purl": "pkg:brew/esphome"
          },
          "ranges": [
            {
              "events": [
                {
                  "introduced": "0"
                }
              ],
              "type": "ECOSYSTEM"
            }
          ]
        }
      ],
      "database_specific": {
        "confidence": "high",
        "source": "matched",
        "strategy": "registry",
        "upstream_evidence": [
          {
            "ecosystem": "PyPI",
            "key": "pkg:pypi/starlette@0.52.1",
            "name": "starlette",
            "resource": "starlette",
            "strategy": "registry",
            "subject_version": "0.52.1"
          }
        ]
      },
      "details": "### Summary\nIn affected versions, the HTTP `Host` request header was not validated before being used to reconstruct `request.url`. Because the routing algorithm relies on the raw HTTP path while `request.url` is rebuilt from the `Host` header, a malformed header could make `request.url.path` differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on `request.url` (rather than the raw `scope` path) could therefore be bypassed.\n\n### Details\nWhen a client requests `http://example.com/foo`, it sends:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com\n```\n\nAffected versions reconstructed the URL by concatenating `http://{host}{path}` and re-parsing the result. The `Host` value is only valid as a `uri-host [ \":\" port ]` per [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6), where `uri-host` follows the restricted `host` grammar of [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2). When it contains characters outside that grammar - notably `/`, `?`, or `#` - those characters move the path/query/fragment boundaries during re-parsing, so the parsed `request.url.path` no longer matches the path the server actually received. For example:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com/abc?bar=\n```\n\nreconstructs to `http://example.com/abc?bar=/foo`, whose parsed `path` is `/abc` - even though routing used the real path `/foo`. The router still dispatches to `/foo` and the endpoint executes, but any middleware or code that reads `request.url.path` sees `/abc`, so path-based authorization checks can be bypassed.\n\n### Impact\nAny application running an affected version that relies on `request.url` (or `request.url.path`) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on `request.url.path`. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed `Host` header before forwarding and the application does not trust attacker-controlled host headers (e.g. `X-Forwarded-Host`) elsewhere.\n\n### Mitigation\nUpgrade to a patched version, which validates the `Host` header against the grammar of [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6) / [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2) when constructing `request.url` and falls back to `scope[\"server\"]` for malformed values.",
      "id": "BREW-esphome-CVE-2026-48710",
      "modified": "2026-09-09T23:53:49Z",
      "published": "2026-08-13T16:45:08Z",
      "references": [
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/security/advisories/GHSA-86qp-5c8j-p5mr"
        },
        {
          "type": "ADVISORY",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/commit/764dab0dcfb9033d75442d7a359645c9f94648c6"
        },
        {
          "type": "WEB",
          "url": "https://www.x41-dsec.de/lab/advisories/x41-2026-002-starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.secwest.net/starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-48710.json"
        },
        {
          "type": "WEB",
          "url": "https://ostif.org/disclosing-the-badhost-vulnerability-in-starlette"
        },
        {
          "type": "WEB",
          "url": "https://github.com/pypa/advisory-database/tree/main/vulns/starlette/PYSEC-2026-161.yaml"
        },
        {
          "type": "PACKAGE",
          "url": "https://github.com/Kludex/starlette"
        },
        {
          "type": "WEB",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2481742"
        },
        {
          "type": "WEB",
          "url": "https://badhost.org"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/security/cve/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:60520"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:51357"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:44696"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:43038"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:37275"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34532"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34526"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34456"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30089"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30088"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:26226"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:24866"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:23346"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22993"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22992"
        }
      ],
      "schema_version": "1.7.3",
      "severity": [
        {
          "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
          "type": "CVSS_V3"
        }
      ],
      "summary": "Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks",
      "upstream": [
        "GHSA-86qp-5c8j-p5mr",
        "CVE-2026-48710",
        "PYSEC-2026-161",
        "X41-2026-002"
      ]
    }

    BREW-FASTAPI-CVE-2026-48710 (GHSA-86QP-5C8J-P5MR)

    Vulnerability from osv_homebrew – Published: 2026-08-13 16:46 – Updated: 2026-09-17 19:08 – Source website
    VLAI
    Summary
    Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks
    Details

    Summary

    In affected versions, the HTTP Host request header was not validated before being used to reconstruct request.url. Because the routing algorithm relies on the raw HTTP path while request.url is rebuilt from the Host header, a malformed header could make request.url.path differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on request.url (rather than the raw scope path) could therefore be bypassed.

    Details

    When a client requests http://example.com/foo, it sends:

    GET /foo HTTP/1.1
    Host: example.com
    

    Affected versions reconstructed the URL by concatenating http://{host}{path} and re-parsing the result. The Host value is only valid as a uri-host [ ":" port ] per RFC 9112 §3.2, where uri-host follows the restricted host grammar of RFC 3986 §3.2.2. When it contains characters outside that grammar - notably /, ?, or # - those characters move the path/query/fragment boundaries during re-parsing, so the parsed request.url.path no longer matches the path the server actually received. For example:

    GET /foo HTTP/1.1
    Host: example.com/abc?bar=
    

    reconstructs to http://example.com/abc?bar=/foo, whose parsed path is /abc - even though routing used the real path /foo. The router still dispatches to /foo and the endpoint executes, but any middleware or code that reads request.url.path sees /abc, so path-based authorization checks can be bypassed.

    Impact

    Any application running an affected version that relies on request.url (or request.url.path) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on request.url.path. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed Host header before forwarding and the application does not trust attacker-controlled host headers (e.g. X-Forwarded-Host) elsewhere.

    Mitigation

    Upgrade to a patched version, which validates the Host header against the grammar of RFC 9112 §3.2 / RFC 3986 §3.2.2 when constructing request.url and falls back to scope["server"] for malformed values.


    {
      "affected": [
        {
          "ecosystem_specific": {
            "fix": "bump",
            "range_state": "fixed",
            "resource": "starlette",
            "resource_purl": "pkg:pypi/starlette@1.3.1",
            "upstream_fixed_in": "1.0.1"
          },
          "package": {
            "ecosystem": "Homebrew",
            "name": "fastapi",
            "purl": "pkg:brew/fastapi"
          },
          "ranges": [
            {
              "events": [
                {
                  "introduced": "0.111.0"
                },
                {
                  "fixed": "0.136.1_4"
                }
              ],
              "type": "ECOSYSTEM"
            }
          ]
        }
      ],
      "database_specific": {
        "confidence": "high",
        "source": "matched",
        "strategy": "registry",
        "upstream_evidence": [
          {
            "ecosystem": "PyPI",
            "key": "pkg:pypi/starlette@1.3.1",
            "name": "starlette",
            "resource": "starlette",
            "strategy": "registry",
            "subject_version": "1.3.1"
          }
        ]
      },
      "details": "### Summary\nIn affected versions, the HTTP `Host` request header was not validated before being used to reconstruct `request.url`. Because the routing algorithm relies on the raw HTTP path while `request.url` is rebuilt from the `Host` header, a malformed header could make `request.url.path` differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on `request.url` (rather than the raw `scope` path) could therefore be bypassed.\n\n### Details\nWhen a client requests `http://example.com/foo`, it sends:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com\n```\n\nAffected versions reconstructed the URL by concatenating `http://{host}{path}` and re-parsing the result. The `Host` value is only valid as a `uri-host [ \":\" port ]` per [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6), where `uri-host` follows the restricted `host` grammar of [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2). When it contains characters outside that grammar - notably `/`, `?`, or `#` - those characters move the path/query/fragment boundaries during re-parsing, so the parsed `request.url.path` no longer matches the path the server actually received. For example:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com/abc?bar=\n```\n\nreconstructs to `http://example.com/abc?bar=/foo`, whose parsed `path` is `/abc` - even though routing used the real path `/foo`. The router still dispatches to `/foo` and the endpoint executes, but any middleware or code that reads `request.url.path` sees `/abc`, so path-based authorization checks can be bypassed.\n\n### Impact\nAny application running an affected version that relies on `request.url` (or `request.url.path`) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on `request.url.path`. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed `Host` header before forwarding and the application does not trust attacker-controlled host headers (e.g. `X-Forwarded-Host`) elsewhere.\n\n### Mitigation\nUpgrade to a patched version, which validates the `Host` header against the grammar of [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6) / [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2) when constructing `request.url` and falls back to `scope[\"server\"]` for malformed values.",
      "id": "BREW-fastapi-CVE-2026-48710",
      "modified": "2026-09-17T19:08:32Z",
      "published": "2026-08-13T16:46:30Z",
      "references": [
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/security/advisories/GHSA-86qp-5c8j-p5mr"
        },
        {
          "type": "ADVISORY",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/commit/764dab0dcfb9033d75442d7a359645c9f94648c6"
        },
        {
          "type": "WEB",
          "url": "https://www.x41-dsec.de/lab/advisories/x41-2026-002-starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.secwest.net/starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-48710.json"
        },
        {
          "type": "WEB",
          "url": "https://ostif.org/disclosing-the-badhost-vulnerability-in-starlette"
        },
        {
          "type": "WEB",
          "url": "https://github.com/pypa/advisory-database/tree/main/vulns/starlette/PYSEC-2026-161.yaml"
        },
        {
          "type": "PACKAGE",
          "url": "https://github.com/Kludex/starlette"
        },
        {
          "type": "WEB",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2481742"
        },
        {
          "type": "WEB",
          "url": "https://badhost.org"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/security/cve/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:60520"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:51357"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:44696"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:43038"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:37275"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34532"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34526"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34456"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30089"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30088"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:26226"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:24866"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:23346"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22993"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22992"
        }
      ],
      "schema_version": "1.7.3",
      "severity": [
        {
          "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
          "type": "CVSS_V3"
        }
      ],
      "summary": "Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks",
      "upstream": [
        "GHSA-86qp-5c8j-p5mr",
        "CVE-2026-48710",
        "PYSEC-2026-161",
        "X41-2026-002"
      ]
    }

    BREW-FASTMCP-CVE-2026-48710 (GHSA-86QP-5C8J-P5MR)

    Vulnerability from osv_homebrew – Published: 2026-08-13 16:46 – Updated: 2026-09-17 19:27 – Source website
    VLAI
    Summary
    Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks
    Details

    Summary

    In affected versions, the HTTP Host request header was not validated before being used to reconstruct request.url. Because the routing algorithm relies on the raw HTTP path while request.url is rebuilt from the Host header, a malformed header could make request.url.path differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on request.url (rather than the raw scope path) could therefore be bypassed.

    Details

    When a client requests http://example.com/foo, it sends:

    GET /foo HTTP/1.1
    Host: example.com
    

    Affected versions reconstructed the URL by concatenating http://{host}{path} and re-parsing the result. The Host value is only valid as a uri-host [ ":" port ] per RFC 9112 §3.2, where uri-host follows the restricted host grammar of RFC 3986 §3.2.2. When it contains characters outside that grammar - notably /, ?, or # - those characters move the path/query/fragment boundaries during re-parsing, so the parsed request.url.path no longer matches the path the server actually received. For example:

    GET /foo HTTP/1.1
    Host: example.com/abc?bar=
    

    reconstructs to http://example.com/abc?bar=/foo, whose parsed path is /abc - even though routing used the real path /foo. The router still dispatches to /foo and the endpoint executes, but any middleware or code that reads request.url.path sees /abc, so path-based authorization checks can be bypassed.

    Impact

    Any application running an affected version that relies on request.url (or request.url.path) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on request.url.path. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed Host header before forwarding and the application does not trust attacker-controlled host headers (e.g. X-Forwarded-Host) elsewhere.

    Mitigation

    Upgrade to a patched version, which validates the Host header against the grammar of RFC 9112 §3.2 / RFC 3986 §3.2.2 when constructing request.url and falls back to scope["server"] for malformed values.


    {
      "affected": [
        {
          "ecosystem_specific": {
            "fix": "bump",
            "range_state": "fixed",
            "resource": "starlette",
            "resource_purl": "pkg:pypi/starlette@1.6.0",
            "upstream_fixed_in": "1.0.1"
          },
          "package": {
            "ecosystem": "Homebrew",
            "name": "fastmcp",
            "purl": "pkg:brew/fastmcp"
          },
          "ranges": [
            {
              "events": [
                {
                  "introduced": "2.12.3"
                },
                {
                  "fixed": "3.3.1_1"
                }
              ],
              "type": "ECOSYSTEM"
            }
          ]
        }
      ],
      "database_specific": {
        "confidence": "high",
        "source": "matched",
        "strategy": "registry",
        "upstream_evidence": [
          {
            "ecosystem": "PyPI",
            "key": "pkg:pypi/starlette@1.6.0",
            "name": "starlette",
            "resource": "starlette",
            "strategy": "registry",
            "subject_version": "1.6.0"
          }
        ]
      },
      "details": "### Summary\nIn affected versions, the HTTP `Host` request header was not validated before being used to reconstruct `request.url`. Because the routing algorithm relies on the raw HTTP path while `request.url` is rebuilt from the `Host` header, a malformed header could make `request.url.path` differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on `request.url` (rather than the raw `scope` path) could therefore be bypassed.\n\n### Details\nWhen a client requests `http://example.com/foo`, it sends:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com\n```\n\nAffected versions reconstructed the URL by concatenating `http://{host}{path}` and re-parsing the result. The `Host` value is only valid as a `uri-host [ \":\" port ]` per [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6), where `uri-host` follows the restricted `host` grammar of [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2). When it contains characters outside that grammar - notably `/`, `?`, or `#` - those characters move the path/query/fragment boundaries during re-parsing, so the parsed `request.url.path` no longer matches the path the server actually received. For example:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com/abc?bar=\n```\n\nreconstructs to `http://example.com/abc?bar=/foo`, whose parsed `path` is `/abc` - even though routing used the real path `/foo`. The router still dispatches to `/foo` and the endpoint executes, but any middleware or code that reads `request.url.path` sees `/abc`, so path-based authorization checks can be bypassed.\n\n### Impact\nAny application running an affected version that relies on `request.url` (or `request.url.path`) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on `request.url.path`. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed `Host` header before forwarding and the application does not trust attacker-controlled host headers (e.g. `X-Forwarded-Host`) elsewhere.\n\n### Mitigation\nUpgrade to a patched version, which validates the `Host` header against the grammar of [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6) / [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2) when constructing `request.url` and falls back to `scope[\"server\"]` for malformed values.",
      "id": "BREW-fastmcp-CVE-2026-48710",
      "modified": "2026-09-17T19:27:54Z",
      "published": "2026-08-13T16:46:31Z",
      "references": [
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/security/advisories/GHSA-86qp-5c8j-p5mr"
        },
        {
          "type": "ADVISORY",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/commit/764dab0dcfb9033d75442d7a359645c9f94648c6"
        },
        {
          "type": "WEB",
          "url": "https://www.x41-dsec.de/lab/advisories/x41-2026-002-starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.secwest.net/starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-48710.json"
        },
        {
          "type": "WEB",
          "url": "https://ostif.org/disclosing-the-badhost-vulnerability-in-starlette"
        },
        {
          "type": "WEB",
          "url": "https://github.com/pypa/advisory-database/tree/main/vulns/starlette/PYSEC-2026-161.yaml"
        },
        {
          "type": "PACKAGE",
          "url": "https://github.com/Kludex/starlette"
        },
        {
          "type": "WEB",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2481742"
        },
        {
          "type": "WEB",
          "url": "https://badhost.org"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/security/cve/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:60520"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:51357"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:44696"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:43038"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:37275"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34532"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34526"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34456"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30089"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30088"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:26226"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:24866"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:23346"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22993"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22992"
        }
      ],
      "schema_version": "1.7.3",
      "severity": [
        {
          "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
          "type": "CVSS_V3"
        }
      ],
      "summary": "Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks",
      "upstream": [
        "GHSA-86qp-5c8j-p5mr",
        "CVE-2026-48710",
        "PYSEC-2026-161",
        "X41-2026-002"
      ]
    }

    BREW-GITINGEST-CVE-2026-48710 (GHSA-86QP-5C8J-P5MR)

    Vulnerability from osv_homebrew – Published: 2026-08-13 16:51 – Updated: 2026-09-17 18:34 – Source website
    VLAI
    Summary
    Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks
    Details

    Summary

    In affected versions, the HTTP Host request header was not validated before being used to reconstruct request.url. Because the routing algorithm relies on the raw HTTP path while request.url is rebuilt from the Host header, a malformed header could make request.url.path differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on request.url (rather than the raw scope path) could therefore be bypassed.

    Details

    When a client requests http://example.com/foo, it sends:

    GET /foo HTTP/1.1
    Host: example.com
    

    Affected versions reconstructed the URL by concatenating http://{host}{path} and re-parsing the result. The Host value is only valid as a uri-host [ ":" port ] per RFC 9112 §3.2, where uri-host follows the restricted host grammar of RFC 3986 §3.2.2. When it contains characters outside that grammar - notably /, ?, or # - those characters move the path/query/fragment boundaries during re-parsing, so the parsed request.url.path no longer matches the path the server actually received. For example:

    GET /foo HTTP/1.1
    Host: example.com/abc?bar=
    

    reconstructs to http://example.com/abc?bar=/foo, whose parsed path is /abc - even though routing used the real path /foo. The router still dispatches to /foo and the endpoint executes, but any middleware or code that reads request.url.path sees /abc, so path-based authorization checks can be bypassed.

    Impact

    Any application running an affected version that relies on request.url (or request.url.path) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on request.url.path. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed Host header before forwarding and the application does not trust attacker-controlled host headers (e.g. X-Forwarded-Host) elsewhere.

    Mitigation

    Upgrade to a patched version, which validates the Host header against the grammar of RFC 9112 §3.2 / RFC 3986 §3.2.2 when constructing request.url and falls back to scope["server"] for malformed values.


    {
      "affected": [
        {
          "ecosystem_specific": {
            "fix": "bump",
            "range_state": "fixed",
            "resource": "starlette",
            "resource_purl": "pkg:pypi/starlette@1.3.1",
            "upstream_fixed_in": "1.0.1"
          },
          "package": {
            "ecosystem": "Homebrew",
            "name": "gitingest",
            "purl": "pkg:brew/gitingest"
          },
          "ranges": [
            {
              "events": [
                {
                  "introduced": "0.3.1"
                },
                {
                  "fixed": "0.3.1_7"
                }
              ],
              "type": "ECOSYSTEM"
            }
          ]
        }
      ],
      "database_specific": {
        "confidence": "high",
        "source": "matched",
        "strategy": "registry",
        "upstream_evidence": [
          {
            "ecosystem": "PyPI",
            "key": "pkg:pypi/starlette@1.3.1",
            "name": "starlette",
            "resource": "starlette",
            "strategy": "registry",
            "subject_version": "1.3.1"
          }
        ]
      },
      "details": "### Summary\nIn affected versions, the HTTP `Host` request header was not validated before being used to reconstruct `request.url`. Because the routing algorithm relies on the raw HTTP path while `request.url` is rebuilt from the `Host` header, a malformed header could make `request.url.path` differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on `request.url` (rather than the raw `scope` path) could therefore be bypassed.\n\n### Details\nWhen a client requests `http://example.com/foo`, it sends:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com\n```\n\nAffected versions reconstructed the URL by concatenating `http://{host}{path}` and re-parsing the result. The `Host` value is only valid as a `uri-host [ \":\" port ]` per [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6), where `uri-host` follows the restricted `host` grammar of [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2). When it contains characters outside that grammar - notably `/`, `?`, or `#` - those characters move the path/query/fragment boundaries during re-parsing, so the parsed `request.url.path` no longer matches the path the server actually received. For example:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com/abc?bar=\n```\n\nreconstructs to `http://example.com/abc?bar=/foo`, whose parsed `path` is `/abc` - even though routing used the real path `/foo`. The router still dispatches to `/foo` and the endpoint executes, but any middleware or code that reads `request.url.path` sees `/abc`, so path-based authorization checks can be bypassed.\n\n### Impact\nAny application running an affected version that relies on `request.url` (or `request.url.path`) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on `request.url.path`. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed `Host` header before forwarding and the application does not trust attacker-controlled host headers (e.g. `X-Forwarded-Host`) elsewhere.\n\n### Mitigation\nUpgrade to a patched version, which validates the `Host` header against the grammar of [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6) / [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2) when constructing `request.url` and falls back to `scope[\"server\"]` for malformed values.",
      "id": "BREW-gitingest-CVE-2026-48710",
      "modified": "2026-09-17T18:34:54Z",
      "published": "2026-08-13T16:51:22Z",
      "references": [
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/security/advisories/GHSA-86qp-5c8j-p5mr"
        },
        {
          "type": "ADVISORY",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/commit/764dab0dcfb9033d75442d7a359645c9f94648c6"
        },
        {
          "type": "WEB",
          "url": "https://www.x41-dsec.de/lab/advisories/x41-2026-002-starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.secwest.net/starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-48710.json"
        },
        {
          "type": "WEB",
          "url": "https://ostif.org/disclosing-the-badhost-vulnerability-in-starlette"
        },
        {
          "type": "WEB",
          "url": "https://github.com/pypa/advisory-database/tree/main/vulns/starlette/PYSEC-2026-161.yaml"
        },
        {
          "type": "PACKAGE",
          "url": "https://github.com/Kludex/starlette"
        },
        {
          "type": "WEB",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2481742"
        },
        {
          "type": "WEB",
          "url": "https://badhost.org"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/security/cve/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:60520"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:51357"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:44696"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:43038"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:37275"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34532"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34526"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34456"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30089"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30088"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:26226"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:24866"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:23346"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22993"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22992"
        }
      ],
      "schema_version": "1.7.3",
      "severity": [
        {
          "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
          "type": "CVSS_V3"
        }
      ],
      "summary": "Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks",
      "upstream": [
        "GHSA-86qp-5c8j-p5mr",
        "CVE-2026-48710",
        "PYSEC-2026-161",
        "X41-2026-002"
      ]
    }

    BREW-GLANCES-CVE-2026-48710 (GHSA-86QP-5C8J-P5MR)

    Vulnerability from osv_homebrew – Published: 2026-08-13 16:51 – Updated: 2026-09-10 19:18 – Source website
    VLAI
    Summary
    Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks
    Details

    Summary

    In affected versions, the HTTP Host request header was not validated before being used to reconstruct request.url. Because the routing algorithm relies on the raw HTTP path while request.url is rebuilt from the Host header, a malformed header could make request.url.path differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on request.url (rather than the raw scope path) could therefore be bypassed.

    Details

    When a client requests http://example.com/foo, it sends:

    GET /foo HTTP/1.1
    Host: example.com
    

    Affected versions reconstructed the URL by concatenating http://{host}{path} and re-parsing the result. The Host value is only valid as a uri-host [ ":" port ] per RFC 9112 §3.2, where uri-host follows the restricted host grammar of RFC 3986 §3.2.2. When it contains characters outside that grammar - notably /, ?, or # - those characters move the path/query/fragment boundaries during re-parsing, so the parsed request.url.path no longer matches the path the server actually received. For example:

    GET /foo HTTP/1.1
    Host: example.com/abc?bar=
    

    reconstructs to http://example.com/abc?bar=/foo, whose parsed path is /abc - even though routing used the real path /foo. The router still dispatches to /foo and the endpoint executes, but any middleware or code that reads request.url.path sees /abc, so path-based authorization checks can be bypassed.

    Impact

    Any application running an affected version that relies on request.url (or request.url.path) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on request.url.path. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed Host header before forwarding and the application does not trust attacker-controlled host headers (e.g. X-Forwarded-Host) elsewhere.

    Mitigation

    Upgrade to a patched version, which validates the Host header against the grammar of RFC 9112 §3.2 / RFC 3986 §3.2.2 when constructing request.url and falls back to scope["server"] for malformed values.


    {
      "affected": [
        {
          "ecosystem_specific": {
            "fix": "bump",
            "range_state": "fixed",
            "resource": "starlette",
            "resource_purl": "pkg:pypi/starlette@1.3.1",
            "upstream_fixed_in": "1.0.1"
          },
          "package": {
            "ecosystem": "Homebrew",
            "name": "glances",
            "purl": "pkg:brew/glances"
          },
          "ranges": [
            {
              "events": [
                {
                  "introduced": "0"
                },
                {
                  "fixed": "4.5.6"
                }
              ],
              "type": "ECOSYSTEM"
            }
          ]
        }
      ],
      "database_specific": {
        "confidence": "high",
        "source": "matched",
        "strategy": "registry",
        "upstream_evidence": [
          {
            "ecosystem": "PyPI",
            "key": "pkg:pypi/starlette@1.3.1",
            "name": "starlette",
            "resource": "starlette",
            "strategy": "registry",
            "subject_version": "1.3.1"
          }
        ]
      },
      "details": "### Summary\nIn affected versions, the HTTP `Host` request header was not validated before being used to reconstruct `request.url`. Because the routing algorithm relies on the raw HTTP path while `request.url` is rebuilt from the `Host` header, a malformed header could make `request.url.path` differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on `request.url` (rather than the raw `scope` path) could therefore be bypassed.\n\n### Details\nWhen a client requests `http://example.com/foo`, it sends:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com\n```\n\nAffected versions reconstructed the URL by concatenating `http://{host}{path}` and re-parsing the result. The `Host` value is only valid as a `uri-host [ \":\" port ]` per [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6), where `uri-host` follows the restricted `host` grammar of [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2). When it contains characters outside that grammar - notably `/`, `?`, or `#` - those characters move the path/query/fragment boundaries during re-parsing, so the parsed `request.url.path` no longer matches the path the server actually received. For example:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com/abc?bar=\n```\n\nreconstructs to `http://example.com/abc?bar=/foo`, whose parsed `path` is `/abc` - even though routing used the real path `/foo`. The router still dispatches to `/foo` and the endpoint executes, but any middleware or code that reads `request.url.path` sees `/abc`, so path-based authorization checks can be bypassed.\n\n### Impact\nAny application running an affected version that relies on `request.url` (or `request.url.path`) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on `request.url.path`. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed `Host` header before forwarding and the application does not trust attacker-controlled host headers (e.g. `X-Forwarded-Host`) elsewhere.\n\n### Mitigation\nUpgrade to a patched version, which validates the `Host` header against the grammar of [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6) / [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2) when constructing `request.url` and falls back to `scope[\"server\"]` for malformed values.",
      "id": "BREW-glances-CVE-2026-48710",
      "modified": "2026-09-10T19:18:35Z",
      "published": "2026-08-13T16:51:23Z",
      "references": [
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/security/advisories/GHSA-86qp-5c8j-p5mr"
        },
        {
          "type": "ADVISORY",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/commit/764dab0dcfb9033d75442d7a359645c9f94648c6"
        },
        {
          "type": "WEB",
          "url": "https://www.x41-dsec.de/lab/advisories/x41-2026-002-starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.secwest.net/starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-48710.json"
        },
        {
          "type": "WEB",
          "url": "https://ostif.org/disclosing-the-badhost-vulnerability-in-starlette"
        },
        {
          "type": "WEB",
          "url": "https://github.com/pypa/advisory-database/tree/main/vulns/starlette/PYSEC-2026-161.yaml"
        },
        {
          "type": "PACKAGE",
          "url": "https://github.com/Kludex/starlette"
        },
        {
          "type": "WEB",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2481742"
        },
        {
          "type": "WEB",
          "url": "https://badhost.org"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/security/cve/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:60520"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:51357"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:44696"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:43038"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:37275"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34532"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34526"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34456"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30089"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30088"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:26226"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:24866"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:23346"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22993"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22992"
        }
      ],
      "schema_version": "1.7.3",
      "severity": [
        {
          "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
          "type": "CVSS_V3"
        }
      ],
      "summary": "Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks",
      "upstream": [
        "GHSA-86qp-5c8j-p5mr",
        "CVE-2026-48710",
        "PYSEC-2026-161",
        "X41-2026-002"
      ]
    }

    BREW-GPTME-CVE-2026-48710 (GHSA-86QP-5C8J-P5MR)

    Vulnerability from osv_homebrew – Published: 2026-08-13 16:54 – Updated: 2026-09-17 18:12 – Source website
    VLAI
    Summary
    Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks
    Details

    Summary

    In affected versions, the HTTP Host request header was not validated before being used to reconstruct request.url. Because the routing algorithm relies on the raw HTTP path while request.url is rebuilt from the Host header, a malformed header could make request.url.path differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on request.url (rather than the raw scope path) could therefore be bypassed.

    Details

    When a client requests http://example.com/foo, it sends:

    GET /foo HTTP/1.1
    Host: example.com
    

    Affected versions reconstructed the URL by concatenating http://{host}{path} and re-parsing the result. The Host value is only valid as a uri-host [ ":" port ] per RFC 9112 §3.2, where uri-host follows the restricted host grammar of RFC 3986 §3.2.2. When it contains characters outside that grammar - notably /, ?, or # - those characters move the path/query/fragment boundaries during re-parsing, so the parsed request.url.path no longer matches the path the server actually received. For example:

    GET /foo HTTP/1.1
    Host: example.com/abc?bar=
    

    reconstructs to http://example.com/abc?bar=/foo, whose parsed path is /abc - even though routing used the real path /foo. The router still dispatches to /foo and the endpoint executes, but any middleware or code that reads request.url.path sees /abc, so path-based authorization checks can be bypassed.

    Impact

    Any application running an affected version that relies on request.url (or request.url.path) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on request.url.path. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed Host header before forwarding and the application does not trust attacker-controlled host headers (e.g. X-Forwarded-Host) elsewhere.

    Mitigation

    Upgrade to a patched version, which validates the Host header against the grammar of RFC 9112 §3.2 / RFC 3986 §3.2.2 when constructing request.url and falls back to scope["server"] for malformed values.


    {
      "affected": [
        {
          "ecosystem_specific": {
            "fix": "bump",
            "range_state": "fixed",
            "resource": "starlette",
            "resource_purl": "pkg:pypi/starlette@1.6.0",
            "upstream_fixed_in": "1.0.1"
          },
          "package": {
            "ecosystem": "Homebrew",
            "name": "gptme",
            "purl": "pkg:brew/gptme"
          },
          "ranges": [
            {
              "events": [
                {
                  "introduced": "0.28.0"
                },
                {
                  "fixed": "0.31.0_11"
                }
              ],
              "type": "ECOSYSTEM"
            }
          ]
        }
      ],
      "database_specific": {
        "confidence": "high",
        "source": "matched",
        "strategy": "registry",
        "upstream_evidence": [
          {
            "ecosystem": "PyPI",
            "key": "pkg:pypi/starlette@1.6.0",
            "name": "starlette",
            "resource": "starlette",
            "strategy": "registry",
            "subject_version": "1.6.0"
          }
        ]
      },
      "details": "### Summary\nIn affected versions, the HTTP `Host` request header was not validated before being used to reconstruct `request.url`. Because the routing algorithm relies on the raw HTTP path while `request.url` is rebuilt from the `Host` header, a malformed header could make `request.url.path` differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on `request.url` (rather than the raw `scope` path) could therefore be bypassed.\n\n### Details\nWhen a client requests `http://example.com/foo`, it sends:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com\n```\n\nAffected versions reconstructed the URL by concatenating `http://{host}{path}` and re-parsing the result. The `Host` value is only valid as a `uri-host [ \":\" port ]` per [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6), where `uri-host` follows the restricted `host` grammar of [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2). When it contains characters outside that grammar - notably `/`, `?`, or `#` - those characters move the path/query/fragment boundaries during re-parsing, so the parsed `request.url.path` no longer matches the path the server actually received. For example:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com/abc?bar=\n```\n\nreconstructs to `http://example.com/abc?bar=/foo`, whose parsed `path` is `/abc` - even though routing used the real path `/foo`. The router still dispatches to `/foo` and the endpoint executes, but any middleware or code that reads `request.url.path` sees `/abc`, so path-based authorization checks can be bypassed.\n\n### Impact\nAny application running an affected version that relies on `request.url` (or `request.url.path`) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on `request.url.path`. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed `Host` header before forwarding and the application does not trust attacker-controlled host headers (e.g. `X-Forwarded-Host`) elsewhere.\n\n### Mitigation\nUpgrade to a patched version, which validates the `Host` header against the grammar of [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6) / [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2) when constructing `request.url` and falls back to `scope[\"server\"]` for malformed values.",
      "id": "BREW-gptme-CVE-2026-48710",
      "modified": "2026-09-17T18:12:06Z",
      "published": "2026-08-13T16:54:46Z",
      "references": [
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/security/advisories/GHSA-86qp-5c8j-p5mr"
        },
        {
          "type": "ADVISORY",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/commit/764dab0dcfb9033d75442d7a359645c9f94648c6"
        },
        {
          "type": "WEB",
          "url": "https://www.x41-dsec.de/lab/advisories/x41-2026-002-starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.secwest.net/starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-48710.json"
        },
        {
          "type": "WEB",
          "url": "https://ostif.org/disclosing-the-badhost-vulnerability-in-starlette"
        },
        {
          "type": "WEB",
          "url": "https://github.com/pypa/advisory-database/tree/main/vulns/starlette/PYSEC-2026-161.yaml"
        },
        {
          "type": "PACKAGE",
          "url": "https://github.com/Kludex/starlette"
        },
        {
          "type": "WEB",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2481742"
        },
        {
          "type": "WEB",
          "url": "https://badhost.org"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/security/cve/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:60520"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:51357"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:44696"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:43038"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:37275"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34532"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34526"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34456"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30089"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30088"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:26226"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:24866"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:23346"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22993"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22992"
        }
      ],
      "schema_version": "1.7.3",
      "severity": [
        {
          "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
          "type": "CVSS_V3"
        }
      ],
      "summary": "Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks",
      "upstream": [
        "GHSA-86qp-5c8j-p5mr",
        "CVE-2026-48710",
        "PYSEC-2026-161",
        "X41-2026-002"
      ]
    }

    BREW-HERMES-AGENT-CVE-20… (GHSA-86QP-5C8J-P5MR)

    Vulnerability from osv_homebrew – Published: 2026-08-13 16:56 – Updated: 2026-09-10 19:27 – Source website
    VLAI
    Summary
    Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks
    Details

    Summary

    In affected versions, the HTTP Host request header was not validated before being used to reconstruct request.url. Because the routing algorithm relies on the raw HTTP path while request.url is rebuilt from the Host header, a malformed header could make request.url.path differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on request.url (rather than the raw scope path) could therefore be bypassed.

    Details

    When a client requests http://example.com/foo, it sends:

    GET /foo HTTP/1.1
    Host: example.com
    

    Affected versions reconstructed the URL by concatenating http://{host}{path} and re-parsing the result. The Host value is only valid as a uri-host [ ":" port ] per RFC 9112 §3.2, where uri-host follows the restricted host grammar of RFC 3986 §3.2.2. When it contains characters outside that grammar - notably /, ?, or # - those characters move the path/query/fragment boundaries during re-parsing, so the parsed request.url.path no longer matches the path the server actually received. For example:

    GET /foo HTTP/1.1
    Host: example.com/abc?bar=
    

    reconstructs to http://example.com/abc?bar=/foo, whose parsed path is /abc - even though routing used the real path /foo. The router still dispatches to /foo and the endpoint executes, but any middleware or code that reads request.url.path sees /abc, so path-based authorization checks can be bypassed.

    Impact

    Any application running an affected version that relies on request.url (or request.url.path) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on request.url.path. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed Host header before forwarding and the application does not trust attacker-controlled host headers (e.g. X-Forwarded-Host) elsewhere.

    Mitigation

    Upgrade to a patched version, which validates the Host header against the grammar of RFC 9112 §3.2 / RFC 3986 §3.2.2 when constructing request.url and falls back to scope["server"] for malformed values.


    {
      "affected": [
        {
          "ecosystem_specific": {
            "fix": "bump",
            "range_state": "fixed",
            "resource": "starlette",
            "resource_purl": "pkg:pypi/starlette@1.6.0",
            "upstream_fixed_in": "1.0.1"
          },
          "package": {
            "ecosystem": "Homebrew",
            "name": "hermes-agent",
            "purl": "pkg:brew/hermes-agent"
          },
          "ranges": [
            {
              "events": [
                {
                  "introduced": "0"
                },
                {
                  "fixed": "2026.8.3_1"
                }
              ],
              "type": "ECOSYSTEM"
            }
          ]
        }
      ],
      "database_specific": {
        "confidence": "high",
        "source": "matched",
        "strategy": "registry",
        "upstream_evidence": [
          {
            "ecosystem": "PyPI",
            "key": "pkg:pypi/starlette@1.6.0",
            "name": "starlette",
            "resource": "starlette",
            "strategy": "registry",
            "subject_version": "1.6.0"
          }
        ]
      },
      "details": "### Summary\nIn affected versions, the HTTP `Host` request header was not validated before being used to reconstruct `request.url`. Because the routing algorithm relies on the raw HTTP path while `request.url` is rebuilt from the `Host` header, a malformed header could make `request.url.path` differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on `request.url` (rather than the raw `scope` path) could therefore be bypassed.\n\n### Details\nWhen a client requests `http://example.com/foo`, it sends:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com\n```\n\nAffected versions reconstructed the URL by concatenating `http://{host}{path}` and re-parsing the result. The `Host` value is only valid as a `uri-host [ \":\" port ]` per [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6), where `uri-host` follows the restricted `host` grammar of [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2). When it contains characters outside that grammar - notably `/`, `?`, or `#` - those characters move the path/query/fragment boundaries during re-parsing, so the parsed `request.url.path` no longer matches the path the server actually received. For example:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com/abc?bar=\n```\n\nreconstructs to `http://example.com/abc?bar=/foo`, whose parsed `path` is `/abc` - even though routing used the real path `/foo`. The router still dispatches to `/foo` and the endpoint executes, but any middleware or code that reads `request.url.path` sees `/abc`, so path-based authorization checks can be bypassed.\n\n### Impact\nAny application running an affected version that relies on `request.url` (or `request.url.path`) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on `request.url.path`. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed `Host` header before forwarding and the application does not trust attacker-controlled host headers (e.g. `X-Forwarded-Host`) elsewhere.\n\n### Mitigation\nUpgrade to a patched version, which validates the `Host` header against the grammar of [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6) / [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2) when constructing `request.url` and falls back to `scope[\"server\"]` for malformed values.",
      "id": "BREW-hermes-agent-CVE-2026-48710",
      "modified": "2026-09-10T19:27:17Z",
      "published": "2026-08-13T16:56:26Z",
      "references": [
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/security/advisories/GHSA-86qp-5c8j-p5mr"
        },
        {
          "type": "ADVISORY",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/commit/764dab0dcfb9033d75442d7a359645c9f94648c6"
        },
        {
          "type": "WEB",
          "url": "https://www.x41-dsec.de/lab/advisories/x41-2026-002-starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.secwest.net/starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-48710.json"
        },
        {
          "type": "WEB",
          "url": "https://ostif.org/disclosing-the-badhost-vulnerability-in-starlette"
        },
        {
          "type": "WEB",
          "url": "https://github.com/pypa/advisory-database/tree/main/vulns/starlette/PYSEC-2026-161.yaml"
        },
        {
          "type": "PACKAGE",
          "url": "https://github.com/Kludex/starlette"
        },
        {
          "type": "WEB",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2481742"
        },
        {
          "type": "WEB",
          "url": "https://badhost.org"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/security/cve/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:60520"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:51357"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:44696"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:43038"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:37275"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34532"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34526"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34456"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30089"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30088"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:26226"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:24866"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:23346"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22993"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22992"
        }
      ],
      "schema_version": "1.7.3",
      "severity": [
        {
          "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
          "type": "CVSS_V3"
        }
      ],
      "summary": "Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks",
      "upstream": [
        "GHSA-86qp-5c8j-p5mr",
        "CVE-2026-48710",
        "PYSEC-2026-161",
        "X41-2026-002"
      ]
    }

    BREW-KIMI-CLI-CVE-2026-48710 (GHSA-86QP-5C8J-P5MR)

    Vulnerability from osv_homebrew – Published: 2026-08-13 17:01 – Updated: 2026-09-17 20:03 – Source website
    VLAI
    Summary
    Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks
    Details

    Summary

    In affected versions, the HTTP Host request header was not validated before being used to reconstruct request.url. Because the routing algorithm relies on the raw HTTP path while request.url is rebuilt from the Host header, a malformed header could make request.url.path differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on request.url (rather than the raw scope path) could therefore be bypassed.

    Details

    When a client requests http://example.com/foo, it sends:

    GET /foo HTTP/1.1
    Host: example.com
    

    Affected versions reconstructed the URL by concatenating http://{host}{path} and re-parsing the result. The Host value is only valid as a uri-host [ ":" port ] per RFC 9112 §3.2, where uri-host follows the restricted host grammar of RFC 3986 §3.2.2. When it contains characters outside that grammar - notably /, ?, or # - those characters move the path/query/fragment boundaries during re-parsing, so the parsed request.url.path no longer matches the path the server actually received. For example:

    GET /foo HTTP/1.1
    Host: example.com/abc?bar=
    

    reconstructs to http://example.com/abc?bar=/foo, whose parsed path is /abc - even though routing used the real path /foo. The router still dispatches to /foo and the endpoint executes, but any middleware or code that reads request.url.path sees /abc, so path-based authorization checks can be bypassed.

    Impact

    Any application running an affected version that relies on request.url (or request.url.path) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on request.url.path. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed Host header before forwarding and the application does not trust attacker-controlled host headers (e.g. X-Forwarded-Host) elsewhere.

    Mitigation

    Upgrade to a patched version, which validates the Host header against the grammar of RFC 9112 §3.2 / RFC 3986 §3.2.2 when constructing request.url and falls back to scope["server"] for malformed values.


    {
      "affected": [
        {
          "ecosystem_specific": {
            "fix": "bump",
            "range_state": "fixed",
            "resource": "starlette",
            "resource_purl": "pkg:pypi/starlette@1.3.1",
            "upstream_fixed_in": "1.0.1"
          },
          "package": {
            "ecosystem": "Homebrew",
            "name": "kimi-cli",
            "purl": "pkg:brew/kimi-cli"
          },
          "ranges": [
            {
              "events": [
                {
                  "introduced": "0.40"
                },
                {
                  "fixed": "1.44.0_1"
                }
              ],
              "type": "ECOSYSTEM"
            }
          ]
        }
      ],
      "database_specific": {
        "confidence": "high",
        "source": "matched",
        "strategy": "registry",
        "upstream_evidence": [
          {
            "ecosystem": "PyPI",
            "key": "pkg:pypi/starlette@1.3.1",
            "name": "starlette",
            "resource": "starlette",
            "strategy": "registry",
            "subject_version": "1.3.1"
          }
        ]
      },
      "details": "### Summary\nIn affected versions, the HTTP `Host` request header was not validated before being used to reconstruct `request.url`. Because the routing algorithm relies on the raw HTTP path while `request.url` is rebuilt from the `Host` header, a malformed header could make `request.url.path` differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on `request.url` (rather than the raw `scope` path) could therefore be bypassed.\n\n### Details\nWhen a client requests `http://example.com/foo`, it sends:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com\n```\n\nAffected versions reconstructed the URL by concatenating `http://{host}{path}` and re-parsing the result. The `Host` value is only valid as a `uri-host [ \":\" port ]` per [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6), where `uri-host` follows the restricted `host` grammar of [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2). When it contains characters outside that grammar - notably `/`, `?`, or `#` - those characters move the path/query/fragment boundaries during re-parsing, so the parsed `request.url.path` no longer matches the path the server actually received. For example:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com/abc?bar=\n```\n\nreconstructs to `http://example.com/abc?bar=/foo`, whose parsed `path` is `/abc` - even though routing used the real path `/foo`. The router still dispatches to `/foo` and the endpoint executes, but any middleware or code that reads `request.url.path` sees `/abc`, so path-based authorization checks can be bypassed.\n\n### Impact\nAny application running an affected version that relies on `request.url` (or `request.url.path`) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on `request.url.path`. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed `Host` header before forwarding and the application does not trust attacker-controlled host headers (e.g. `X-Forwarded-Host`) elsewhere.\n\n### Mitigation\nUpgrade to a patched version, which validates the `Host` header against the grammar of [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6) / [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2) when constructing `request.url` and falls back to `scope[\"server\"]` for malformed values.",
      "id": "BREW-kimi-cli-CVE-2026-48710",
      "modified": "2026-09-17T20:03:17Z",
      "published": "2026-08-13T17:01:40Z",
      "references": [
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/security/advisories/GHSA-86qp-5c8j-p5mr"
        },
        {
          "type": "ADVISORY",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/commit/764dab0dcfb9033d75442d7a359645c9f94648c6"
        },
        {
          "type": "WEB",
          "url": "https://www.x41-dsec.de/lab/advisories/x41-2026-002-starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.secwest.net/starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-48710.json"
        },
        {
          "type": "WEB",
          "url": "https://ostif.org/disclosing-the-badhost-vulnerability-in-starlette"
        },
        {
          "type": "WEB",
          "url": "https://github.com/pypa/advisory-database/tree/main/vulns/starlette/PYSEC-2026-161.yaml"
        },
        {
          "type": "PACKAGE",
          "url": "https://github.com/Kludex/starlette"
        },
        {
          "type": "WEB",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2481742"
        },
        {
          "type": "WEB",
          "url": "https://badhost.org"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/security/cve/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:60520"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:51357"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:44696"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:43038"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:37275"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34532"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34526"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34456"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30089"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30088"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:26226"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:24866"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:23346"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22993"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22992"
        }
      ],
      "schema_version": "1.7.3",
      "severity": [
        {
          "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
          "type": "CVSS_V3"
        }
      ],
      "summary": "Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks",
      "upstream": [
        "GHSA-86qp-5c8j-p5mr",
        "CVE-2026-48710",
        "PYSEC-2026-161",
        "X41-2026-002"
      ]
    }

    BREW-MCP-ATLASSIAN-CVE-2… (GHSA-86QP-5C8J-P5MR)

    Vulnerability from osv_homebrew – Published: 2026-08-13 17:13 – Updated: 2026-09-17 19:03 – Source website
    VLAI
    Summary
    Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks
    Details

    Summary

    In affected versions, the HTTP Host request header was not validated before being used to reconstruct request.url. Because the routing algorithm relies on the raw HTTP path while request.url is rebuilt from the Host header, a malformed header could make request.url.path differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on request.url (rather than the raw scope path) could therefore be bypassed.

    Details

    When a client requests http://example.com/foo, it sends:

    GET /foo HTTP/1.1
    Host: example.com
    

    Affected versions reconstructed the URL by concatenating http://{host}{path} and re-parsing the result. The Host value is only valid as a uri-host [ ":" port ] per RFC 9112 §3.2, where uri-host follows the restricted host grammar of RFC 3986 §3.2.2. When it contains characters outside that grammar - notably /, ?, or # - those characters move the path/query/fragment boundaries during re-parsing, so the parsed request.url.path no longer matches the path the server actually received. For example:

    GET /foo HTTP/1.1
    Host: example.com/abc?bar=
    

    reconstructs to http://example.com/abc?bar=/foo, whose parsed path is /abc - even though routing used the real path /foo. The router still dispatches to /foo and the endpoint executes, but any middleware or code that reads request.url.path sees /abc, so path-based authorization checks can be bypassed.

    Impact

    Any application running an affected version that relies on request.url (or request.url.path) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on request.url.path. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed Host header before forwarding and the application does not trust attacker-controlled host headers (e.g. X-Forwarded-Host) elsewhere.

    Mitigation

    Upgrade to a patched version, which validates the Host header against the grammar of RFC 9112 §3.2 / RFC 3986 §3.2.2 when constructing request.url and falls back to scope["server"] for malformed values.


    {
      "affected": [
        {
          "ecosystem_specific": {
            "fix": "bump",
            "range_state": "fixed",
            "resource": "starlette",
            "resource_purl": "pkg:pypi/starlette@1.6.0",
            "upstream_fixed_in": "1.0.1"
          },
          "package": {
            "ecosystem": "Homebrew",
            "name": "mcp-atlassian",
            "purl": "pkg:brew/mcp-atlassian"
          },
          "ranges": [
            {
              "events": [
                {
                  "introduced": "0.11.9"
                },
                {
                  "fixed": "0.21.1_7"
                }
              ],
              "type": "ECOSYSTEM"
            }
          ]
        }
      ],
      "database_specific": {
        "confidence": "high",
        "source": "matched",
        "strategy": "registry",
        "upstream_evidence": [
          {
            "ecosystem": "PyPI",
            "key": "pkg:pypi/starlette@1.6.0",
            "name": "starlette",
            "resource": "starlette",
            "strategy": "registry",
            "subject_version": "1.6.0"
          }
        ]
      },
      "details": "### Summary\nIn affected versions, the HTTP `Host` request header was not validated before being used to reconstruct `request.url`. Because the routing algorithm relies on the raw HTTP path while `request.url` is rebuilt from the `Host` header, a malformed header could make `request.url.path` differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on `request.url` (rather than the raw `scope` path) could therefore be bypassed.\n\n### Details\nWhen a client requests `http://example.com/foo`, it sends:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com\n```\n\nAffected versions reconstructed the URL by concatenating `http://{host}{path}` and re-parsing the result. The `Host` value is only valid as a `uri-host [ \":\" port ]` per [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6), where `uri-host` follows the restricted `host` grammar of [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2). When it contains characters outside that grammar - notably `/`, `?`, or `#` - those characters move the path/query/fragment boundaries during re-parsing, so the parsed `request.url.path` no longer matches the path the server actually received. For example:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com/abc?bar=\n```\n\nreconstructs to `http://example.com/abc?bar=/foo`, whose parsed `path` is `/abc` - even though routing used the real path `/foo`. The router still dispatches to `/foo` and the endpoint executes, but any middleware or code that reads `request.url.path` sees `/abc`, so path-based authorization checks can be bypassed.\n\n### Impact\nAny application running an affected version that relies on `request.url` (or `request.url.path`) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on `request.url.path`. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed `Host` header before forwarding and the application does not trust attacker-controlled host headers (e.g. `X-Forwarded-Host`) elsewhere.\n\n### Mitigation\nUpgrade to a patched version, which validates the `Host` header against the grammar of [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6) / [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2) when constructing `request.url` and falls back to `scope[\"server\"]` for malformed values.",
      "id": "BREW-mcp-atlassian-CVE-2026-48710",
      "modified": "2026-09-17T19:03:07Z",
      "published": "2026-08-13T17:13:13Z",
      "references": [
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/security/advisories/GHSA-86qp-5c8j-p5mr"
        },
        {
          "type": "ADVISORY",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/commit/764dab0dcfb9033d75442d7a359645c9f94648c6"
        },
        {
          "type": "WEB",
          "url": "https://www.x41-dsec.de/lab/advisories/x41-2026-002-starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.secwest.net/starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-48710.json"
        },
        {
          "type": "WEB",
          "url": "https://ostif.org/disclosing-the-badhost-vulnerability-in-starlette"
        },
        {
          "type": "WEB",
          "url": "https://github.com/pypa/advisory-database/tree/main/vulns/starlette/PYSEC-2026-161.yaml"
        },
        {
          "type": "PACKAGE",
          "url": "https://github.com/Kludex/starlette"
        },
        {
          "type": "WEB",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2481742"
        },
        {
          "type": "WEB",
          "url": "https://badhost.org"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/security/cve/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:60520"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:51357"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:44696"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:43038"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:37275"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34532"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34526"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34456"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30089"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30088"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:26226"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:24866"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:23346"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22993"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22992"
        }
      ],
      "schema_version": "1.7.3",
      "severity": [
        {
          "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
          "type": "CVSS_V3"
        }
      ],
      "summary": "Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks",
      "upstream": [
        "GHSA-86qp-5c8j-p5mr",
        "CVE-2026-48710",
        "PYSEC-2026-161",
        "X41-2026-002"
      ]
    }

    BREW-MCP-GOOGLE-SHEETS-C… (GHSA-86QP-5C8J-P5MR)

    Vulnerability from osv_homebrew – Published: 2026-08-13 17:13 – Updated: 2026-09-17 18:01 – Source website
    VLAI
    Summary
    Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks
    Details

    Summary

    In affected versions, the HTTP Host request header was not validated before being used to reconstruct request.url. Because the routing algorithm relies on the raw HTTP path while request.url is rebuilt from the Host header, a malformed header could make request.url.path differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on request.url (rather than the raw scope path) could therefore be bypassed.

    Details

    When a client requests http://example.com/foo, it sends:

    GET /foo HTTP/1.1
    Host: example.com
    

    Affected versions reconstructed the URL by concatenating http://{host}{path} and re-parsing the result. The Host value is only valid as a uri-host [ ":" port ] per RFC 9112 §3.2, where uri-host follows the restricted host grammar of RFC 3986 §3.2.2. When it contains characters outside that grammar - notably /, ?, or # - those characters move the path/query/fragment boundaries during re-parsing, so the parsed request.url.path no longer matches the path the server actually received. For example:

    GET /foo HTTP/1.1
    Host: example.com/abc?bar=
    

    reconstructs to http://example.com/abc?bar=/foo, whose parsed path is /abc - even though routing used the real path /foo. The router still dispatches to /foo and the endpoint executes, but any middleware or code that reads request.url.path sees /abc, so path-based authorization checks can be bypassed.

    Impact

    Any application running an affected version that relies on request.url (or request.url.path) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on request.url.path. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed Host header before forwarding and the application does not trust attacker-controlled host headers (e.g. X-Forwarded-Host) elsewhere.

    Mitigation

    Upgrade to a patched version, which validates the Host header against the grammar of RFC 9112 §3.2 / RFC 3986 §3.2.2 when constructing request.url and falls back to scope["server"] for malformed values.


    {
      "affected": [
        {
          "ecosystem_specific": {
            "fix": "bump",
            "range_state": "fixed",
            "resource": "starlette",
            "resource_purl": "pkg:pypi/starlette@1.3.1",
            "upstream_fixed_in": "1.0.1"
          },
          "package": {
            "ecosystem": "Homebrew",
            "name": "mcp-google-sheets",
            "purl": "pkg:brew/mcp-google-sheets"
          },
          "ranges": [
            {
              "events": [
                {
                  "introduced": "0.5.1"
                },
                {
                  "fixed": "0.6.3_1"
                }
              ],
              "type": "ECOSYSTEM"
            }
          ]
        }
      ],
      "database_specific": {
        "confidence": "high",
        "source": "matched",
        "strategy": "registry",
        "upstream_evidence": [
          {
            "ecosystem": "PyPI",
            "key": "pkg:pypi/starlette@1.3.1",
            "name": "starlette",
            "resource": "starlette",
            "strategy": "registry",
            "subject_version": "1.3.1"
          }
        ]
      },
      "details": "### Summary\nIn affected versions, the HTTP `Host` request header was not validated before being used to reconstruct `request.url`. Because the routing algorithm relies on the raw HTTP path while `request.url` is rebuilt from the `Host` header, a malformed header could make `request.url.path` differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on `request.url` (rather than the raw `scope` path) could therefore be bypassed.\n\n### Details\nWhen a client requests `http://example.com/foo`, it sends:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com\n```\n\nAffected versions reconstructed the URL by concatenating `http://{host}{path}` and re-parsing the result. The `Host` value is only valid as a `uri-host [ \":\" port ]` per [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6), where `uri-host` follows the restricted `host` grammar of [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2). When it contains characters outside that grammar - notably `/`, `?`, or `#` - those characters move the path/query/fragment boundaries during re-parsing, so the parsed `request.url.path` no longer matches the path the server actually received. For example:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com/abc?bar=\n```\n\nreconstructs to `http://example.com/abc?bar=/foo`, whose parsed `path` is `/abc` - even though routing used the real path `/foo`. The router still dispatches to `/foo` and the endpoint executes, but any middleware or code that reads `request.url.path` sees `/abc`, so path-based authorization checks can be bypassed.\n\n### Impact\nAny application running an affected version that relies on `request.url` (or `request.url.path`) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on `request.url.path`. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed `Host` header before forwarding and the application does not trust attacker-controlled host headers (e.g. `X-Forwarded-Host`) elsewhere.\n\n### Mitigation\nUpgrade to a patched version, which validates the `Host` header against the grammar of [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6) / [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2) when constructing `request.url` and falls back to `scope[\"server\"]` for malformed values.",
      "id": "BREW-mcp-google-sheets-CVE-2026-48710",
      "modified": "2026-09-17T18:01:45Z",
      "published": "2026-08-13T17:13:13Z",
      "references": [
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/security/advisories/GHSA-86qp-5c8j-p5mr"
        },
        {
          "type": "ADVISORY",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/commit/764dab0dcfb9033d75442d7a359645c9f94648c6"
        },
        {
          "type": "WEB",
          "url": "https://www.x41-dsec.de/lab/advisories/x41-2026-002-starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.secwest.net/starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-48710.json"
        },
        {
          "type": "WEB",
          "url": "https://ostif.org/disclosing-the-badhost-vulnerability-in-starlette"
        },
        {
          "type": "WEB",
          "url": "https://github.com/pypa/advisory-database/tree/main/vulns/starlette/PYSEC-2026-161.yaml"
        },
        {
          "type": "PACKAGE",
          "url": "https://github.com/Kludex/starlette"
        },
        {
          "type": "WEB",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2481742"
        },
        {
          "type": "WEB",
          "url": "https://badhost.org"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/security/cve/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:60520"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:51357"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:44696"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:43038"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:37275"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34532"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34526"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34456"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30089"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30088"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:26226"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:24866"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:23346"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22993"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22992"
        }
      ],
      "schema_version": "1.7.3",
      "severity": [
        {
          "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
          "type": "CVSS_V3"
        }
      ],
      "summary": "Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks",
      "upstream": [
        "GHSA-86qp-5c8j-p5mr",
        "CVE-2026-48710",
        "PYSEC-2026-161",
        "X41-2026-002"
      ]
    }

    BREW-MCP-PROXY-CVE-2026-48710 (GHSA-86QP-5C8J-P5MR)

    Vulnerability from osv_homebrew – Published: 2026-08-13 17:13 – Updated: 2026-09-17 19:13 – Source website
    VLAI
    Summary
    Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks
    Details

    Summary

    In affected versions, the HTTP Host request header was not validated before being used to reconstruct request.url. Because the routing algorithm relies on the raw HTTP path while request.url is rebuilt from the Host header, a malformed header could make request.url.path differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on request.url (rather than the raw scope path) could therefore be bypassed.

    Details

    When a client requests http://example.com/foo, it sends:

    GET /foo HTTP/1.1
    Host: example.com
    

    Affected versions reconstructed the URL by concatenating http://{host}{path} and re-parsing the result. The Host value is only valid as a uri-host [ ":" port ] per RFC 9112 §3.2, where uri-host follows the restricted host grammar of RFC 3986 §3.2.2. When it contains characters outside that grammar - notably /, ?, or # - those characters move the path/query/fragment boundaries during re-parsing, so the parsed request.url.path no longer matches the path the server actually received. For example:

    GET /foo HTTP/1.1
    Host: example.com/abc?bar=
    

    reconstructs to http://example.com/abc?bar=/foo, whose parsed path is /abc - even though routing used the real path /foo. The router still dispatches to /foo and the endpoint executes, but any middleware or code that reads request.url.path sees /abc, so path-based authorization checks can be bypassed.

    Impact

    Any application running an affected version that relies on request.url (or request.url.path) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on request.url.path. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed Host header before forwarding and the application does not trust attacker-controlled host headers (e.g. X-Forwarded-Host) elsewhere.

    Mitigation

    Upgrade to a patched version, which validates the Host header against the grammar of RFC 9112 §3.2 / RFC 3986 §3.2.2 when constructing request.url and falls back to scope["server"] for malformed values.


    {
      "affected": [
        {
          "ecosystem_specific": {
            "fix": "bump",
            "range_state": "fixed",
            "resource": "starlette",
            "resource_purl": "pkg:pypi/starlette@1.3.1",
            "upstream_fixed_in": "1.0.1"
          },
          "package": {
            "ecosystem": "Homebrew",
            "name": "mcp-proxy",
            "purl": "pkg:brew/mcp-proxy"
          },
          "ranges": [
            {
              "events": [
                {
                  "introduced": "0.8.2"
                },
                {
                  "fixed": "0.12.0_1"
                }
              ],
              "type": "ECOSYSTEM"
            }
          ]
        }
      ],
      "database_specific": {
        "confidence": "high",
        "source": "matched",
        "strategy": "registry",
        "upstream_evidence": [
          {
            "ecosystem": "PyPI",
            "key": "pkg:pypi/starlette@1.3.1",
            "name": "starlette",
            "resource": "starlette",
            "strategy": "registry",
            "subject_version": "1.3.1"
          }
        ]
      },
      "details": "### Summary\nIn affected versions, the HTTP `Host` request header was not validated before being used to reconstruct `request.url`. Because the routing algorithm relies on the raw HTTP path while `request.url` is rebuilt from the `Host` header, a malformed header could make `request.url.path` differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on `request.url` (rather than the raw `scope` path) could therefore be bypassed.\n\n### Details\nWhen a client requests `http://example.com/foo`, it sends:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com\n```\n\nAffected versions reconstructed the URL by concatenating `http://{host}{path}` and re-parsing the result. The `Host` value is only valid as a `uri-host [ \":\" port ]` per [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6), where `uri-host` follows the restricted `host` grammar of [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2). When it contains characters outside that grammar - notably `/`, `?`, or `#` - those characters move the path/query/fragment boundaries during re-parsing, so the parsed `request.url.path` no longer matches the path the server actually received. For example:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com/abc?bar=\n```\n\nreconstructs to `http://example.com/abc?bar=/foo`, whose parsed `path` is `/abc` - even though routing used the real path `/foo`. The router still dispatches to `/foo` and the endpoint executes, but any middleware or code that reads `request.url.path` sees `/abc`, so path-based authorization checks can be bypassed.\n\n### Impact\nAny application running an affected version that relies on `request.url` (or `request.url.path`) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on `request.url.path`. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed `Host` header before forwarding and the application does not trust attacker-controlled host headers (e.g. `X-Forwarded-Host`) elsewhere.\n\n### Mitigation\nUpgrade to a patched version, which validates the `Host` header against the grammar of [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6) / [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2) when constructing `request.url` and falls back to `scope[\"server\"]` for malformed values.",
      "id": "BREW-mcp-proxy-CVE-2026-48710",
      "modified": "2026-09-17T19:13:40Z",
      "published": "2026-08-13T17:13:13Z",
      "references": [
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/security/advisories/GHSA-86qp-5c8j-p5mr"
        },
        {
          "type": "ADVISORY",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/commit/764dab0dcfb9033d75442d7a359645c9f94648c6"
        },
        {
          "type": "WEB",
          "url": "https://www.x41-dsec.de/lab/advisories/x41-2026-002-starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.secwest.net/starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-48710.json"
        },
        {
          "type": "WEB",
          "url": "https://ostif.org/disclosing-the-badhost-vulnerability-in-starlette"
        },
        {
          "type": "WEB",
          "url": "https://github.com/pypa/advisory-database/tree/main/vulns/starlette/PYSEC-2026-161.yaml"
        },
        {
          "type": "PACKAGE",
          "url": "https://github.com/Kludex/starlette"
        },
        {
          "type": "WEB",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2481742"
        },
        {
          "type": "WEB",
          "url": "https://badhost.org"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/security/cve/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:60520"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:51357"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:44696"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:43038"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:37275"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34532"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34526"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34456"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30089"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30088"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:26226"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:24866"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:23346"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22993"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22992"
        }
      ],
      "schema_version": "1.7.3",
      "severity": [
        {
          "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
          "type": "CVSS_V3"
        }
      ],
      "summary": "Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks",
      "upstream": [
        "GHSA-86qp-5c8j-p5mr",
        "CVE-2026-48710",
        "PYSEC-2026-161",
        "X41-2026-002"
      ]
    }

    BREW-MCPM-CVE-2026-48710 (GHSA-86QP-5C8J-P5MR)

    Vulnerability from osv_homebrew – Published: 2026-08-13 17:13 – Updated: 2026-09-17 19:39 – Source website
    VLAI
    Summary
    Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks
    Details

    Summary

    In affected versions, the HTTP Host request header was not validated before being used to reconstruct request.url. Because the routing algorithm relies on the raw HTTP path while request.url is rebuilt from the Host header, a malformed header could make request.url.path differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on request.url (rather than the raw scope path) could therefore be bypassed.

    Details

    When a client requests http://example.com/foo, it sends:

    GET /foo HTTP/1.1
    Host: example.com
    

    Affected versions reconstructed the URL by concatenating http://{host}{path} and re-parsing the result. The Host value is only valid as a uri-host [ ":" port ] per RFC 9112 §3.2, where uri-host follows the restricted host grammar of RFC 3986 §3.2.2. When it contains characters outside that grammar - notably /, ?, or # - those characters move the path/query/fragment boundaries during re-parsing, so the parsed request.url.path no longer matches the path the server actually received. For example:

    GET /foo HTTP/1.1
    Host: example.com/abc?bar=
    

    reconstructs to http://example.com/abc?bar=/foo, whose parsed path is /abc - even though routing used the real path /foo. The router still dispatches to /foo and the endpoint executes, but any middleware or code that reads request.url.path sees /abc, so path-based authorization checks can be bypassed.

    Impact

    Any application running an affected version that relies on request.url (or request.url.path) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on request.url.path. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed Host header before forwarding and the application does not trust attacker-controlled host headers (e.g. X-Forwarded-Host) elsewhere.

    Mitigation

    Upgrade to a patched version, which validates the Host header against the grammar of RFC 9112 §3.2 / RFC 3986 §3.2.2 when constructing request.url and falls back to scope["server"] for malformed values.


    {
      "affected": [
        {
          "ecosystem_specific": {
            "fix": "bump",
            "range_state": "fixed",
            "resource": "starlette",
            "resource_purl": "pkg:pypi/starlette@1.3.1",
            "upstream_fixed_in": "1.0.1"
          },
          "package": {
            "ecosystem": "Homebrew",
            "name": "mcpm",
            "purl": "pkg:brew/mcpm"
          },
          "ranges": [
            {
              "events": [
                {
                  "introduced": "1.0.3"
                },
                {
                  "fixed": "2.15.0"
                }
              ],
              "type": "ECOSYSTEM"
            }
          ]
        }
      ],
      "database_specific": {
        "confidence": "high",
        "source": "matched",
        "strategy": "registry",
        "upstream_evidence": [
          {
            "ecosystem": "PyPI",
            "key": "pkg:pypi/starlette@1.3.1",
            "name": "starlette",
            "resource": "starlette",
            "strategy": "registry",
            "subject_version": "1.3.1"
          }
        ]
      },
      "details": "### Summary\nIn affected versions, the HTTP `Host` request header was not validated before being used to reconstruct `request.url`. Because the routing algorithm relies on the raw HTTP path while `request.url` is rebuilt from the `Host` header, a malformed header could make `request.url.path` differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on `request.url` (rather than the raw `scope` path) could therefore be bypassed.\n\n### Details\nWhen a client requests `http://example.com/foo`, it sends:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com\n```\n\nAffected versions reconstructed the URL by concatenating `http://{host}{path}` and re-parsing the result. The `Host` value is only valid as a `uri-host [ \":\" port ]` per [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6), where `uri-host` follows the restricted `host` grammar of [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2). When it contains characters outside that grammar - notably `/`, `?`, or `#` - those characters move the path/query/fragment boundaries during re-parsing, so the parsed `request.url.path` no longer matches the path the server actually received. For example:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com/abc?bar=\n```\n\nreconstructs to `http://example.com/abc?bar=/foo`, whose parsed `path` is `/abc` - even though routing used the real path `/foo`. The router still dispatches to `/foo` and the endpoint executes, but any middleware or code that reads `request.url.path` sees `/abc`, so path-based authorization checks can be bypassed.\n\n### Impact\nAny application running an affected version that relies on `request.url` (or `request.url.path`) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on `request.url.path`. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed `Host` header before forwarding and the application does not trust attacker-controlled host headers (e.g. `X-Forwarded-Host`) elsewhere.\n\n### Mitigation\nUpgrade to a patched version, which validates the `Host` header against the grammar of [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6) / [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2) when constructing `request.url` and falls back to `scope[\"server\"]` for malformed values.",
      "id": "BREW-mcpm-CVE-2026-48710",
      "modified": "2026-09-17T19:39:23Z",
      "published": "2026-08-13T17:13:14Z",
      "references": [
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/security/advisories/GHSA-86qp-5c8j-p5mr"
        },
        {
          "type": "ADVISORY",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/commit/764dab0dcfb9033d75442d7a359645c9f94648c6"
        },
        {
          "type": "WEB",
          "url": "https://www.x41-dsec.de/lab/advisories/x41-2026-002-starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.secwest.net/starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-48710.json"
        },
        {
          "type": "WEB",
          "url": "https://ostif.org/disclosing-the-badhost-vulnerability-in-starlette"
        },
        {
          "type": "WEB",
          "url": "https://github.com/pypa/advisory-database/tree/main/vulns/starlette/PYSEC-2026-161.yaml"
        },
        {
          "type": "PACKAGE",
          "url": "https://github.com/Kludex/starlette"
        },
        {
          "type": "WEB",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2481742"
        },
        {
          "type": "WEB",
          "url": "https://badhost.org"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/security/cve/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:60520"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:51357"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:44696"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:43038"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:37275"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34532"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34526"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34456"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30089"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30088"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:26226"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:24866"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:23346"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22993"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22992"
        }
      ],
      "schema_version": "1.7.3",
      "severity": [
        {
          "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
          "type": "CVSS_V3"
        }
      ],
      "summary": "Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks",
      "upstream": [
        "GHSA-86qp-5c8j-p5mr",
        "CVE-2026-48710",
        "PYSEC-2026-161",
        "X41-2026-002"
      ]
    }

    BREW-MISTRAL-VIBE-CVE-20… (GHSA-86QP-5C8J-P5MR)

    Vulnerability from osv_homebrew – Published: 2026-08-13 17:14 – Updated: 2026-09-17 19:14 – Source website
    VLAI
    Summary
    Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks
    Details

    Summary

    In affected versions, the HTTP Host request header was not validated before being used to reconstruct request.url. Because the routing algorithm relies on the raw HTTP path while request.url is rebuilt from the Host header, a malformed header could make request.url.path differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on request.url (rather than the raw scope path) could therefore be bypassed.

    Details

    When a client requests http://example.com/foo, it sends:

    GET /foo HTTP/1.1
    Host: example.com
    

    Affected versions reconstructed the URL by concatenating http://{host}{path} and re-parsing the result. The Host value is only valid as a uri-host [ ":" port ] per RFC 9112 §3.2, where uri-host follows the restricted host grammar of RFC 3986 §3.2.2. When it contains characters outside that grammar - notably /, ?, or # - those characters move the path/query/fragment boundaries during re-parsing, so the parsed request.url.path no longer matches the path the server actually received. For example:

    GET /foo HTTP/1.1
    Host: example.com/abc?bar=
    

    reconstructs to http://example.com/abc?bar=/foo, whose parsed path is /abc - even though routing used the real path /foo. The router still dispatches to /foo and the endpoint executes, but any middleware or code that reads request.url.path sees /abc, so path-based authorization checks can be bypassed.

    Impact

    Any application running an affected version that relies on request.url (or request.url.path) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on request.url.path. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed Host header before forwarding and the application does not trust attacker-controlled host headers (e.g. X-Forwarded-Host) elsewhere.

    Mitigation

    Upgrade to a patched version, which validates the Host header against the grammar of RFC 9112 §3.2 / RFC 3986 §3.2.2 when constructing request.url and falls back to scope["server"] for malformed values.


    {
      "affected": [
        {
          "ecosystem_specific": {
            "fix": "bump",
            "range_state": "fixed",
            "resource": "starlette",
            "resource_purl": "pkg:pypi/starlette@1.3.1",
            "upstream_fixed_in": "1.0.1"
          },
          "package": {
            "ecosystem": "Homebrew",
            "name": "mistral-vibe",
            "purl": "pkg:brew/mistral-vibe"
          },
          "ranges": [
            {
              "events": [
                {
                  "introduced": "1.1.1"
                },
                {
                  "fixed": "2.19.1"
                }
              ],
              "type": "ECOSYSTEM"
            }
          ]
        }
      ],
      "database_specific": {
        "confidence": "high",
        "source": "matched",
        "strategy": "registry",
        "upstream_evidence": [
          {
            "ecosystem": "PyPI",
            "key": "pkg:pypi/starlette@1.3.1",
            "name": "starlette",
            "resource": "starlette",
            "strategy": "registry",
            "subject_version": "1.3.1"
          }
        ]
      },
      "details": "### Summary\nIn affected versions, the HTTP `Host` request header was not validated before being used to reconstruct `request.url`. Because the routing algorithm relies on the raw HTTP path while `request.url` is rebuilt from the `Host` header, a malformed header could make `request.url.path` differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on `request.url` (rather than the raw `scope` path) could therefore be bypassed.\n\n### Details\nWhen a client requests `http://example.com/foo`, it sends:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com\n```\n\nAffected versions reconstructed the URL by concatenating `http://{host}{path}` and re-parsing the result. The `Host` value is only valid as a `uri-host [ \":\" port ]` per [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6), where `uri-host` follows the restricted `host` grammar of [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2). When it contains characters outside that grammar - notably `/`, `?`, or `#` - those characters move the path/query/fragment boundaries during re-parsing, so the parsed `request.url.path` no longer matches the path the server actually received. For example:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com/abc?bar=\n```\n\nreconstructs to `http://example.com/abc?bar=/foo`, whose parsed `path` is `/abc` - even though routing used the real path `/foo`. The router still dispatches to `/foo` and the endpoint executes, but any middleware or code that reads `request.url.path` sees `/abc`, so path-based authorization checks can be bypassed.\n\n### Impact\nAny application running an affected version that relies on `request.url` (or `request.url.path`) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on `request.url.path`. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed `Host` header before forwarding and the application does not trust attacker-controlled host headers (e.g. `X-Forwarded-Host`) elsewhere.\n\n### Mitigation\nUpgrade to a patched version, which validates the `Host` header against the grammar of [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6) / [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2) when constructing `request.url` and falls back to `scope[\"server\"]` for malformed values.",
      "id": "BREW-mistral-vibe-CVE-2026-48710",
      "modified": "2026-09-17T19:14:51Z",
      "published": "2026-08-13T17:14:16Z",
      "references": [
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/security/advisories/GHSA-86qp-5c8j-p5mr"
        },
        {
          "type": "ADVISORY",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/commit/764dab0dcfb9033d75442d7a359645c9f94648c6"
        },
        {
          "type": "WEB",
          "url": "https://www.x41-dsec.de/lab/advisories/x41-2026-002-starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.secwest.net/starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-48710.json"
        },
        {
          "type": "WEB",
          "url": "https://ostif.org/disclosing-the-badhost-vulnerability-in-starlette"
        },
        {
          "type": "WEB",
          "url": "https://github.com/pypa/advisory-database/tree/main/vulns/starlette/PYSEC-2026-161.yaml"
        },
        {
          "type": "PACKAGE",
          "url": "https://github.com/Kludex/starlette"
        },
        {
          "type": "WEB",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2481742"
        },
        {
          "type": "WEB",
          "url": "https://badhost.org"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/security/cve/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:60520"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:51357"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:44696"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:43038"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:37275"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34532"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34526"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34456"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30089"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30088"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:26226"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:24866"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:23346"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22993"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22992"
        }
      ],
      "schema_version": "1.7.3",
      "severity": [
        {
          "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
          "type": "CVSS_V3"
        }
      ],
      "summary": "Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks",
      "upstream": [
        "GHSA-86qp-5c8j-p5mr",
        "CVE-2026-48710",
        "PYSEC-2026-161",
        "X41-2026-002"
      ]
    }

    BREW-OMNARA-CVE-2026-48710 (GHSA-86QP-5C8J-P5MR)

    Vulnerability from osv_homebrew – Published: 2026-08-13 17:19 – Updated: 2026-09-10 00:41 – Source website
    VLAI
    Summary
    Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks
    Details

    Summary

    In affected versions, the HTTP Host request header was not validated before being used to reconstruct request.url. Because the routing algorithm relies on the raw HTTP path while request.url is rebuilt from the Host header, a malformed header could make request.url.path differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on request.url (rather than the raw scope path) could therefore be bypassed.

    Details

    When a client requests http://example.com/foo, it sends:

    GET /foo HTTP/1.1
    Host: example.com
    

    Affected versions reconstructed the URL by concatenating http://{host}{path} and re-parsing the result. The Host value is only valid as a uri-host [ ":" port ] per RFC 9112 §3.2, where uri-host follows the restricted host grammar of RFC 3986 §3.2.2. When it contains characters outside that grammar - notably /, ?, or # - those characters move the path/query/fragment boundaries during re-parsing, so the parsed request.url.path no longer matches the path the server actually received. For example:

    GET /foo HTTP/1.1
    Host: example.com/abc?bar=
    

    reconstructs to http://example.com/abc?bar=/foo, whose parsed path is /abc - even though routing used the real path /foo. The router still dispatches to /foo and the endpoint executes, but any middleware or code that reads request.url.path sees /abc, so path-based authorization checks can be bypassed.

    Impact

    Any application running an affected version that relies on request.url (or request.url.path) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on request.url.path. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed Host header before forwarding and the application does not trust attacker-controlled host headers (e.g. X-Forwarded-Host) elsewhere.

    Mitigation

    Upgrade to a patched version, which validates the Host header against the grammar of RFC 9112 §3.2 / RFC 3986 §3.2.2 when constructing request.url and falls back to scope["server"] for malformed values.


    {
      "affected": [
        {
          "ecosystem_specific": {
            "fix": null,
            "range_state": "affected",
            "resource": "starlette",
            "resource_purl": "pkg:pypi/starlette@0.50.0",
            "upstream_fixed_in": "1.0.1"
          },
          "package": {
            "ecosystem": "Homebrew",
            "name": "omnara",
            "purl": "pkg:brew/omnara"
          },
          "ranges": [
            {
              "events": [
                {
                  "introduced": "0"
                }
              ],
              "type": "ECOSYSTEM"
            }
          ]
        }
      ],
      "database_specific": {
        "confidence": "high",
        "source": "matched",
        "strategy": "registry",
        "upstream_evidence": [
          {
            "ecosystem": "PyPI",
            "key": "pkg:pypi/starlette@0.50.0",
            "name": "starlette",
            "resource": "starlette",
            "strategy": "registry",
            "subject_version": "0.50.0"
          }
        ]
      },
      "details": "### Summary\nIn affected versions, the HTTP `Host` request header was not validated before being used to reconstruct `request.url`. Because the routing algorithm relies on the raw HTTP path while `request.url` is rebuilt from the `Host` header, a malformed header could make `request.url.path` differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on `request.url` (rather than the raw `scope` path) could therefore be bypassed.\n\n### Details\nWhen a client requests `http://example.com/foo`, it sends:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com\n```\n\nAffected versions reconstructed the URL by concatenating `http://{host}{path}` and re-parsing the result. The `Host` value is only valid as a `uri-host [ \":\" port ]` per [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6), where `uri-host` follows the restricted `host` grammar of [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2). When it contains characters outside that grammar - notably `/`, `?`, or `#` - those characters move the path/query/fragment boundaries during re-parsing, so the parsed `request.url.path` no longer matches the path the server actually received. For example:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com/abc?bar=\n```\n\nreconstructs to `http://example.com/abc?bar=/foo`, whose parsed `path` is `/abc` - even though routing used the real path `/foo`. The router still dispatches to `/foo` and the endpoint executes, but any middleware or code that reads `request.url.path` sees `/abc`, so path-based authorization checks can be bypassed.\n\n### Impact\nAny application running an affected version that relies on `request.url` (or `request.url.path`) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on `request.url.path`. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed `Host` header before forwarding and the application does not trust attacker-controlled host headers (e.g. `X-Forwarded-Host`) elsewhere.\n\n### Mitigation\nUpgrade to a patched version, which validates the `Host` header against the grammar of [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6) / [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2) when constructing `request.url` and falls back to `scope[\"server\"]` for malformed values.",
      "id": "BREW-omnara-CVE-2026-48710",
      "modified": "2026-09-10T00:41:55Z",
      "published": "2026-08-13T17:19:23Z",
      "references": [
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/security/advisories/GHSA-86qp-5c8j-p5mr"
        },
        {
          "type": "ADVISORY",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/commit/764dab0dcfb9033d75442d7a359645c9f94648c6"
        },
        {
          "type": "WEB",
          "url": "https://www.x41-dsec.de/lab/advisories/x41-2026-002-starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.secwest.net/starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-48710.json"
        },
        {
          "type": "WEB",
          "url": "https://ostif.org/disclosing-the-badhost-vulnerability-in-starlette"
        },
        {
          "type": "WEB",
          "url": "https://github.com/pypa/advisory-database/tree/main/vulns/starlette/PYSEC-2026-161.yaml"
        },
        {
          "type": "PACKAGE",
          "url": "https://github.com/Kludex/starlette"
        },
        {
          "type": "WEB",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2481742"
        },
        {
          "type": "WEB",
          "url": "https://badhost.org"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/security/cve/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:60520"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:51357"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:44696"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:43038"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:37275"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34532"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34526"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34456"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30089"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30088"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:26226"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:24866"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:23346"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22993"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22992"
        }
      ],
      "schema_version": "1.7.3",
      "severity": [
        {
          "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
          "type": "CVSS_V3"
        }
      ],
      "summary": "Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks",
      "upstream": [
        "GHSA-86qp-5c8j-p5mr",
        "CVE-2026-48710",
        "PYSEC-2026-161",
        "X41-2026-002"
      ]
    }

    BREW-OTERM-CVE-2026-48710 (GHSA-86QP-5C8J-P5MR)

    Vulnerability from osv_homebrew – Published: 2026-08-13 17:24 – Updated: 2026-09-17 18:44 – Source website
    VLAI
    Summary
    Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks
    Details

    Summary

    In affected versions, the HTTP Host request header was not validated before being used to reconstruct request.url. Because the routing algorithm relies on the raw HTTP path while request.url is rebuilt from the Host header, a malformed header could make request.url.path differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on request.url (rather than the raw scope path) could therefore be bypassed.

    Details

    When a client requests http://example.com/foo, it sends:

    GET /foo HTTP/1.1
    Host: example.com
    

    Affected versions reconstructed the URL by concatenating http://{host}{path} and re-parsing the result. The Host value is only valid as a uri-host [ ":" port ] per RFC 9112 §3.2, where uri-host follows the restricted host grammar of RFC 3986 §3.2.2. When it contains characters outside that grammar - notably /, ?, or # - those characters move the path/query/fragment boundaries during re-parsing, so the parsed request.url.path no longer matches the path the server actually received. For example:

    GET /foo HTTP/1.1
    Host: example.com/abc?bar=
    

    reconstructs to http://example.com/abc?bar=/foo, whose parsed path is /abc - even though routing used the real path /foo. The router still dispatches to /foo and the endpoint executes, but any middleware or code that reads request.url.path sees /abc, so path-based authorization checks can be bypassed.

    Impact

    Any application running an affected version that relies on request.url (or request.url.path) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on request.url.path. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed Host header before forwarding and the application does not trust attacker-controlled host headers (e.g. X-Forwarded-Host) elsewhere.

    Mitigation

    Upgrade to a patched version, which validates the Host header against the grammar of RFC 9112 §3.2 / RFC 3986 §3.2.2 when constructing request.url and falls back to scope["server"] for malformed values.


    {
      "affected": [
        {
          "ecosystem_specific": {
            "fix": "bump",
            "range_state": "fixed",
            "resource": "starlette",
            "resource_purl": "pkg:pypi/starlette@1.6.0",
            "upstream_fixed_in": "1.0.1"
          },
          "package": {
            "ecosystem": "Homebrew",
            "name": "oterm",
            "purl": "pkg:brew/oterm"
          },
          "ranges": [
            {
              "events": [
                {
                  "introduced": "0.13.1"
                },
                {
                  "fixed": "0.17.2_1"
                }
              ],
              "type": "ECOSYSTEM"
            }
          ]
        }
      ],
      "database_specific": {
        "confidence": "high",
        "source": "matched",
        "strategy": "registry",
        "upstream_evidence": [
          {
            "ecosystem": "PyPI",
            "key": "pkg:pypi/starlette@1.6.0",
            "name": "starlette",
            "resource": "starlette",
            "strategy": "registry",
            "subject_version": "1.6.0"
          }
        ]
      },
      "details": "### Summary\nIn affected versions, the HTTP `Host` request header was not validated before being used to reconstruct `request.url`. Because the routing algorithm relies on the raw HTTP path while `request.url` is rebuilt from the `Host` header, a malformed header could make `request.url.path` differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on `request.url` (rather than the raw `scope` path) could therefore be bypassed.\n\n### Details\nWhen a client requests `http://example.com/foo`, it sends:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com\n```\n\nAffected versions reconstructed the URL by concatenating `http://{host}{path}` and re-parsing the result. The `Host` value is only valid as a `uri-host [ \":\" port ]` per [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6), where `uri-host` follows the restricted `host` grammar of [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2). When it contains characters outside that grammar - notably `/`, `?`, or `#` - those characters move the path/query/fragment boundaries during re-parsing, so the parsed `request.url.path` no longer matches the path the server actually received. For example:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com/abc?bar=\n```\n\nreconstructs to `http://example.com/abc?bar=/foo`, whose parsed `path` is `/abc` - even though routing used the real path `/foo`. The router still dispatches to `/foo` and the endpoint executes, but any middleware or code that reads `request.url.path` sees `/abc`, so path-based authorization checks can be bypassed.\n\n### Impact\nAny application running an affected version that relies on `request.url` (or `request.url.path`) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on `request.url.path`. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed `Host` header before forwarding and the application does not trust attacker-controlled host headers (e.g. `X-Forwarded-Host`) elsewhere.\n\n### Mitigation\nUpgrade to a patched version, which validates the `Host` header against the grammar of [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6) / [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2) when constructing `request.url` and falls back to `scope[\"server\"]` for malformed values.",
      "id": "BREW-oterm-CVE-2026-48710",
      "modified": "2026-09-17T18:44:04Z",
      "published": "2026-08-13T17:24:19Z",
      "references": [
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/security/advisories/GHSA-86qp-5c8j-p5mr"
        },
        {
          "type": "ADVISORY",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/commit/764dab0dcfb9033d75442d7a359645c9f94648c6"
        },
        {
          "type": "WEB",
          "url": "https://www.x41-dsec.de/lab/advisories/x41-2026-002-starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.secwest.net/starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-48710.json"
        },
        {
          "type": "WEB",
          "url": "https://ostif.org/disclosing-the-badhost-vulnerability-in-starlette"
        },
        {
          "type": "WEB",
          "url": "https://github.com/pypa/advisory-database/tree/main/vulns/starlette/PYSEC-2026-161.yaml"
        },
        {
          "type": "PACKAGE",
          "url": "https://github.com/Kludex/starlette"
        },
        {
          "type": "WEB",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2481742"
        },
        {
          "type": "WEB",
          "url": "https://badhost.org"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/security/cve/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:60520"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:51357"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:44696"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:43038"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:37275"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34532"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34526"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34456"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30089"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30088"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:26226"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:24866"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:23346"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22993"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22992"
        }
      ],
      "schema_version": "1.7.3",
      "severity": [
        {
          "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
          "type": "CVSS_V3"
        }
      ],
      "summary": "Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks",
      "upstream": [
        "GHSA-86qp-5c8j-p5mr",
        "CVE-2026-48710",
        "PYSEC-2026-161",
        "X41-2026-002"
      ]
    }

    BREW-PIECES-CLI-CVE-2026-48710 (GHSA-86QP-5C8J-P5MR)

    Vulnerability from osv_homebrew – Published: 2026-08-13 17:28 – Updated: 2026-09-17 18:23 – Source website
    VLAI
    Summary
    Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks
    Details

    Summary

    In affected versions, the HTTP Host request header was not validated before being used to reconstruct request.url. Because the routing algorithm relies on the raw HTTP path while request.url is rebuilt from the Host header, a malformed header could make request.url.path differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on request.url (rather than the raw scope path) could therefore be bypassed.

    Details

    When a client requests http://example.com/foo, it sends:

    GET /foo HTTP/1.1
    Host: example.com
    

    Affected versions reconstructed the URL by concatenating http://{host}{path} and re-parsing the result. The Host value is only valid as a uri-host [ ":" port ] per RFC 9112 §3.2, where uri-host follows the restricted host grammar of RFC 3986 §3.2.2. When it contains characters outside that grammar - notably /, ?, or # - those characters move the path/query/fragment boundaries during re-parsing, so the parsed request.url.path no longer matches the path the server actually received. For example:

    GET /foo HTTP/1.1
    Host: example.com/abc?bar=
    

    reconstructs to http://example.com/abc?bar=/foo, whose parsed path is /abc - even though routing used the real path /foo. The router still dispatches to /foo and the endpoint executes, but any middleware or code that reads request.url.path sees /abc, so path-based authorization checks can be bypassed.

    Impact

    Any application running an affected version that relies on request.url (or request.url.path) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on request.url.path. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed Host header before forwarding and the application does not trust attacker-controlled host headers (e.g. X-Forwarded-Host) elsewhere.

    Mitigation

    Upgrade to a patched version, which validates the Host header against the grammar of RFC 9112 §3.2 / RFC 3986 §3.2.2 when constructing request.url and falls back to scope["server"] for malformed values.


    {
      "affected": [
        {
          "ecosystem_specific": {
            "fix": "bump",
            "range_state": "fixed",
            "resource": "starlette",
            "resource_purl": "pkg:pypi/starlette@1.3.1",
            "upstream_fixed_in": "1.0.1"
          },
          "package": {
            "ecosystem": "Homebrew",
            "name": "pieces-cli",
            "purl": "pkg:brew/pieces-cli"
          },
          "ranges": [
            {
              "events": [
                {
                  "introduced": "1.15.1"
                },
                {
                  "fixed": "1.20.1_5"
                }
              ],
              "type": "ECOSYSTEM"
            }
          ]
        }
      ],
      "database_specific": {
        "confidence": "high",
        "source": "matched",
        "strategy": "registry",
        "upstream_evidence": [
          {
            "ecosystem": "PyPI",
            "key": "pkg:pypi/starlette@1.3.1",
            "name": "starlette",
            "resource": "starlette",
            "strategy": "registry",
            "subject_version": "1.3.1"
          }
        ]
      },
      "details": "### Summary\nIn affected versions, the HTTP `Host` request header was not validated before being used to reconstruct `request.url`. Because the routing algorithm relies on the raw HTTP path while `request.url` is rebuilt from the `Host` header, a malformed header could make `request.url.path` differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on `request.url` (rather than the raw `scope` path) could therefore be bypassed.\n\n### Details\nWhen a client requests `http://example.com/foo`, it sends:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com\n```\n\nAffected versions reconstructed the URL by concatenating `http://{host}{path}` and re-parsing the result. The `Host` value is only valid as a `uri-host [ \":\" port ]` per [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6), where `uri-host` follows the restricted `host` grammar of [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2). When it contains characters outside that grammar - notably `/`, `?`, or `#` - those characters move the path/query/fragment boundaries during re-parsing, so the parsed `request.url.path` no longer matches the path the server actually received. For example:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com/abc?bar=\n```\n\nreconstructs to `http://example.com/abc?bar=/foo`, whose parsed `path` is `/abc` - even though routing used the real path `/foo`. The router still dispatches to `/foo` and the endpoint executes, but any middleware or code that reads `request.url.path` sees `/abc`, so path-based authorization checks can be bypassed.\n\n### Impact\nAny application running an affected version that relies on `request.url` (or `request.url.path`) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on `request.url.path`. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed `Host` header before forwarding and the application does not trust attacker-controlled host headers (e.g. `X-Forwarded-Host`) elsewhere.\n\n### Mitigation\nUpgrade to a patched version, which validates the `Host` header against the grammar of [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6) / [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2) when constructing `request.url` and falls back to `scope[\"server\"]` for malformed values.",
      "id": "BREW-pieces-cli-CVE-2026-48710",
      "modified": "2026-09-17T18:23:12Z",
      "published": "2026-08-13T17:28:18Z",
      "references": [
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/security/advisories/GHSA-86qp-5c8j-p5mr"
        },
        {
          "type": "ADVISORY",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/commit/764dab0dcfb9033d75442d7a359645c9f94648c6"
        },
        {
          "type": "WEB",
          "url": "https://www.x41-dsec.de/lab/advisories/x41-2026-002-starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.secwest.net/starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-48710.json"
        },
        {
          "type": "WEB",
          "url": "https://ostif.org/disclosing-the-badhost-vulnerability-in-starlette"
        },
        {
          "type": "WEB",
          "url": "https://github.com/pypa/advisory-database/tree/main/vulns/starlette/PYSEC-2026-161.yaml"
        },
        {
          "type": "PACKAGE",
          "url": "https://github.com/Kludex/starlette"
        },
        {
          "type": "WEB",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2481742"
        },
        {
          "type": "WEB",
          "url": "https://badhost.org"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/security/cve/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:60520"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:51357"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:44696"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:43038"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:37275"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34532"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34526"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34456"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30089"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30088"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:26226"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:24866"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:23346"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22993"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22992"
        }
      ],
      "schema_version": "1.7.3",
      "severity": [
        {
          "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
          "type": "CVSS_V3"
        }
      ],
      "summary": "Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks",
      "upstream": [
        "GHSA-86qp-5c8j-p5mr",
        "CVE-2026-48710",
        "PYSEC-2026-161",
        "X41-2026-002"
      ]
    }

    BREW-PLATFORMIO-CVE-2026-48710 (GHSA-86QP-5C8J-P5MR)

    Vulnerability from osv_homebrew – Published: 2026-08-13 17:28 – Updated: 2026-09-10 00:54 – Source website
    VLAI
    Summary
    Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks
    Details

    Summary

    In affected versions, the HTTP Host request header was not validated before being used to reconstruct request.url. Because the routing algorithm relies on the raw HTTP path while request.url is rebuilt from the Host header, a malformed header could make request.url.path differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on request.url (rather than the raw scope path) could therefore be bypassed.

    Details

    When a client requests http://example.com/foo, it sends:

    GET /foo HTTP/1.1
    Host: example.com
    

    Affected versions reconstructed the URL by concatenating http://{host}{path} and re-parsing the result. The Host value is only valid as a uri-host [ ":" port ] per RFC 9112 §3.2, where uri-host follows the restricted host grammar of RFC 3986 §3.2.2. When it contains characters outside that grammar - notably /, ?, or # - those characters move the path/query/fragment boundaries during re-parsing, so the parsed request.url.path no longer matches the path the server actually received. For example:

    GET /foo HTTP/1.1
    Host: example.com/abc?bar=
    

    reconstructs to http://example.com/abc?bar=/foo, whose parsed path is /abc - even though routing used the real path /foo. The router still dispatches to /foo and the endpoint executes, but any middleware or code that reads request.url.path sees /abc, so path-based authorization checks can be bypassed.

    Impact

    Any application running an affected version that relies on request.url (or request.url.path) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on request.url.path. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed Host header before forwarding and the application does not trust attacker-controlled host headers (e.g. X-Forwarded-Host) elsewhere.

    Mitigation

    Upgrade to a patched version, which validates the Host header against the grammar of RFC 9112 §3.2 / RFC 3986 §3.2.2 when constructing request.url and falls back to scope["server"] for malformed values.


    {
      "affected": [
        {
          "ecosystem_specific": {
            "fix": "bump",
            "range_state": "fixed",
            "resource": "starlette",
            "resource_purl": "pkg:pypi/starlette@1.6.0",
            "upstream_fixed_in": "1.0.1"
          },
          "package": {
            "ecosystem": "Homebrew",
            "name": "platformio",
            "purl": "pkg:brew/platformio"
          },
          "ranges": [
            {
              "events": [
                {
                  "introduced": "0"
                },
                {
                  "fixed": "6.2.0"
                }
              ],
              "type": "ECOSYSTEM"
            }
          ]
        }
      ],
      "database_specific": {
        "confidence": "high",
        "source": "matched",
        "strategy": "registry",
        "upstream_evidence": [
          {
            "ecosystem": "PyPI",
            "key": "pkg:pypi/starlette@1.6.0",
            "name": "starlette",
            "resource": "starlette",
            "strategy": "registry",
            "subject_version": "1.6.0"
          }
        ]
      },
      "details": "### Summary\nIn affected versions, the HTTP `Host` request header was not validated before being used to reconstruct `request.url`. Because the routing algorithm relies on the raw HTTP path while `request.url` is rebuilt from the `Host` header, a malformed header could make `request.url.path` differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on `request.url` (rather than the raw `scope` path) could therefore be bypassed.\n\n### Details\nWhen a client requests `http://example.com/foo`, it sends:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com\n```\n\nAffected versions reconstructed the URL by concatenating `http://{host}{path}` and re-parsing the result. The `Host` value is only valid as a `uri-host [ \":\" port ]` per [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6), where `uri-host` follows the restricted `host` grammar of [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2). When it contains characters outside that grammar - notably `/`, `?`, or `#` - those characters move the path/query/fragment boundaries during re-parsing, so the parsed `request.url.path` no longer matches the path the server actually received. For example:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com/abc?bar=\n```\n\nreconstructs to `http://example.com/abc?bar=/foo`, whose parsed `path` is `/abc` - even though routing used the real path `/foo`. The router still dispatches to `/foo` and the endpoint executes, but any middleware or code that reads `request.url.path` sees `/abc`, so path-based authorization checks can be bypassed.\n\n### Impact\nAny application running an affected version that relies on `request.url` (or `request.url.path`) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on `request.url.path`. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed `Host` header before forwarding and the application does not trust attacker-controlled host headers (e.g. `X-Forwarded-Host`) elsewhere.\n\n### Mitigation\nUpgrade to a patched version, which validates the `Host` header against the grammar of [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6) / [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2) when constructing `request.url` and falls back to `scope[\"server\"]` for malformed values.",
      "id": "BREW-platformio-CVE-2026-48710",
      "modified": "2026-09-10T00:54:38Z",
      "published": "2026-08-13T17:28:24Z",
      "references": [
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/security/advisories/GHSA-86qp-5c8j-p5mr"
        },
        {
          "type": "ADVISORY",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/commit/764dab0dcfb9033d75442d7a359645c9f94648c6"
        },
        {
          "type": "WEB",
          "url": "https://www.x41-dsec.de/lab/advisories/x41-2026-002-starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.secwest.net/starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-48710.json"
        },
        {
          "type": "WEB",
          "url": "https://ostif.org/disclosing-the-badhost-vulnerability-in-starlette"
        },
        {
          "type": "WEB",
          "url": "https://github.com/pypa/advisory-database/tree/main/vulns/starlette/PYSEC-2026-161.yaml"
        },
        {
          "type": "PACKAGE",
          "url": "https://github.com/Kludex/starlette"
        },
        {
          "type": "WEB",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2481742"
        },
        {
          "type": "WEB",
          "url": "https://badhost.org"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/security/cve/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:60520"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:51357"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:44696"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:43038"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:37275"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34532"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34526"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34456"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30089"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30088"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:26226"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:24866"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:23346"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22993"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22992"
        }
      ],
      "schema_version": "1.7.3",
      "severity": [
        {
          "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
          "type": "CVSS_V3"
        }
      ],
      "summary": "Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks",
      "upstream": [
        "GHSA-86qp-5c8j-p5mr",
        "CVE-2026-48710",
        "PYSEC-2026-161",
        "X41-2026-002"
      ]
    }

    BREW-POCKET-TTS-CVE-2026-48710 (GHSA-86QP-5C8J-P5MR)

    Vulnerability from osv_homebrew – Published: 2026-08-13 17:28 – Updated: 2026-09-17 17:39 – Source website
    VLAI
    Summary
    Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks
    Details

    Summary

    In affected versions, the HTTP Host request header was not validated before being used to reconstruct request.url. Because the routing algorithm relies on the raw HTTP path while request.url is rebuilt from the Host header, a malformed header could make request.url.path differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on request.url (rather than the raw scope path) could therefore be bypassed.

    Details

    When a client requests http://example.com/foo, it sends:

    GET /foo HTTP/1.1
    Host: example.com
    

    Affected versions reconstructed the URL by concatenating http://{host}{path} and re-parsing the result. The Host value is only valid as a uri-host [ ":" port ] per RFC 9112 §3.2, where uri-host follows the restricted host grammar of RFC 3986 §3.2.2. When it contains characters outside that grammar - notably /, ?, or # - those characters move the path/query/fragment boundaries during re-parsing, so the parsed request.url.path no longer matches the path the server actually received. For example:

    GET /foo HTTP/1.1
    Host: example.com/abc?bar=
    

    reconstructs to http://example.com/abc?bar=/foo, whose parsed path is /abc - even though routing used the real path /foo. The router still dispatches to /foo and the endpoint executes, but any middleware or code that reads request.url.path sees /abc, so path-based authorization checks can be bypassed.

    Impact

    Any application running an affected version that relies on request.url (or request.url.path) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on request.url.path. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed Host header before forwarding and the application does not trust attacker-controlled host headers (e.g. X-Forwarded-Host) elsewhere.

    Mitigation

    Upgrade to a patched version, which validates the Host header against the grammar of RFC 9112 §3.2 / RFC 3986 §3.2.2 when constructing request.url and falls back to scope["server"] for malformed values.


    {
      "affected": [
        {
          "ecosystem_specific": {
            "fix": "bump",
            "range_state": "fixed",
            "resource": "starlette",
            "resource_purl": "pkg:pypi/starlette@1.6.0",
            "upstream_fixed_in": "1.0.1"
          },
          "package": {
            "ecosystem": "Homebrew",
            "name": "pocket-tts",
            "purl": "pkg:brew/pocket-tts"
          },
          "ranges": [
            {
              "events": [
                {
                  "introduced": "1.0.2"
                },
                {
                  "fixed": "2.1.0_2"
                }
              ],
              "type": "ECOSYSTEM"
            }
          ]
        }
      ],
      "database_specific": {
        "confidence": "high",
        "source": "matched",
        "strategy": "registry",
        "upstream_evidence": [
          {
            "ecosystem": "PyPI",
            "key": "pkg:pypi/starlette@1.6.0",
            "name": "starlette",
            "resource": "starlette",
            "strategy": "registry",
            "subject_version": "1.6.0"
          }
        ]
      },
      "details": "### Summary\nIn affected versions, the HTTP `Host` request header was not validated before being used to reconstruct `request.url`. Because the routing algorithm relies on the raw HTTP path while `request.url` is rebuilt from the `Host` header, a malformed header could make `request.url.path` differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on `request.url` (rather than the raw `scope` path) could therefore be bypassed.\n\n### Details\nWhen a client requests `http://example.com/foo`, it sends:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com\n```\n\nAffected versions reconstructed the URL by concatenating `http://{host}{path}` and re-parsing the result. The `Host` value is only valid as a `uri-host [ \":\" port ]` per [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6), where `uri-host` follows the restricted `host` grammar of [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2). When it contains characters outside that grammar - notably `/`, `?`, or `#` - those characters move the path/query/fragment boundaries during re-parsing, so the parsed `request.url.path` no longer matches the path the server actually received. For example:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com/abc?bar=\n```\n\nreconstructs to `http://example.com/abc?bar=/foo`, whose parsed `path` is `/abc` - even though routing used the real path `/foo`. The router still dispatches to `/foo` and the endpoint executes, but any middleware or code that reads `request.url.path` sees `/abc`, so path-based authorization checks can be bypassed.\n\n### Impact\nAny application running an affected version that relies on `request.url` (or `request.url.path`) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on `request.url.path`. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed `Host` header before forwarding and the application does not trust attacker-controlled host headers (e.g. `X-Forwarded-Host`) elsewhere.\n\n### Mitigation\nUpgrade to a patched version, which validates the `Host` header against the grammar of [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6) / [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2) when constructing `request.url` and falls back to `scope[\"server\"]` for malformed values.",
      "id": "BREW-pocket-tts-CVE-2026-48710",
      "modified": "2026-09-17T17:39:07Z",
      "published": "2026-08-13T17:28:25Z",
      "references": [
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/security/advisories/GHSA-86qp-5c8j-p5mr"
        },
        {
          "type": "ADVISORY",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/commit/764dab0dcfb9033d75442d7a359645c9f94648c6"
        },
        {
          "type": "WEB",
          "url": "https://www.x41-dsec.de/lab/advisories/x41-2026-002-starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.secwest.net/starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-48710.json"
        },
        {
          "type": "WEB",
          "url": "https://ostif.org/disclosing-the-badhost-vulnerability-in-starlette"
        },
        {
          "type": "WEB",
          "url": "https://github.com/pypa/advisory-database/tree/main/vulns/starlette/PYSEC-2026-161.yaml"
        },
        {
          "type": "PACKAGE",
          "url": "https://github.com/Kludex/starlette"
        },
        {
          "type": "WEB",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2481742"
        },
        {
          "type": "WEB",
          "url": "https://badhost.org"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/security/cve/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:60520"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:51357"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:44696"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:43038"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:37275"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34532"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34526"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34456"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30089"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30088"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:26226"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:24866"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:23346"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22993"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22992"
        }
      ],
      "schema_version": "1.7.3",
      "severity": [
        {
          "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
          "type": "CVSS_V3"
        }
      ],
      "summary": "Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks",
      "upstream": [
        "GHSA-86qp-5c8j-p5mr",
        "CVE-2026-48710",
        "PYSEC-2026-161",
        "X41-2026-002"
      ]
    }

    BREW-RAPID-MLX-CVE-2026-48710 (GHSA-86QP-5C8J-P5MR)

    Vulnerability from osv_homebrew – Published: 2026-08-13 17:32 – Updated: 2026-09-10 20:37 – Source website
    VLAI
    Summary
    Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks
    Details

    Summary

    In affected versions, the HTTP Host request header was not validated before being used to reconstruct request.url. Because the routing algorithm relies on the raw HTTP path while request.url is rebuilt from the Host header, a malformed header could make request.url.path differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on request.url (rather than the raw scope path) could therefore be bypassed.

    Details

    When a client requests http://example.com/foo, it sends:

    GET /foo HTTP/1.1
    Host: example.com
    

    Affected versions reconstructed the URL by concatenating http://{host}{path} and re-parsing the result. The Host value is only valid as a uri-host [ ":" port ] per RFC 9112 §3.2, where uri-host follows the restricted host grammar of RFC 3986 §3.2.2. When it contains characters outside that grammar - notably /, ?, or # - those characters move the path/query/fragment boundaries during re-parsing, so the parsed request.url.path no longer matches the path the server actually received. For example:

    GET /foo HTTP/1.1
    Host: example.com/abc?bar=
    

    reconstructs to http://example.com/abc?bar=/foo, whose parsed path is /abc - even though routing used the real path /foo. The router still dispatches to /foo and the endpoint executes, but any middleware or code that reads request.url.path sees /abc, so path-based authorization checks can be bypassed.

    Impact

    Any application running an affected version that relies on request.url (or request.url.path) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on request.url.path. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed Host header before forwarding and the application does not trust attacker-controlled host headers (e.g. X-Forwarded-Host) elsewhere.

    Mitigation

    Upgrade to a patched version, which validates the Host header against the grammar of RFC 9112 §3.2 / RFC 3986 §3.2.2 when constructing request.url and falls back to scope["server"] for malformed values.


    {
      "affected": [
        {
          "ecosystem_specific": {
            "fix": "bump",
            "range_state": "fixed",
            "resource": "starlette",
            "resource_purl": "pkg:pypi/starlette@1.6.0",
            "upstream_fixed_in": "1.0.1"
          },
          "package": {
            "ecosystem": "Homebrew",
            "name": "rapid-mlx",
            "purl": "pkg:brew/rapid-mlx"
          },
          "ranges": [
            {
              "events": [
                {
                  "introduced": "0"
                },
                {
                  "fixed": "0.12.11"
                }
              ],
              "type": "ECOSYSTEM"
            }
          ]
        }
      ],
      "database_specific": {
        "confidence": "high",
        "source": "matched",
        "strategy": "registry",
        "upstream_evidence": [
          {
            "ecosystem": "PyPI",
            "key": "pkg:pypi/starlette@1.6.0",
            "name": "starlette",
            "resource": "starlette",
            "strategy": "registry",
            "subject_version": "1.6.0"
          }
        ]
      },
      "details": "### Summary\nIn affected versions, the HTTP `Host` request header was not validated before being used to reconstruct `request.url`. Because the routing algorithm relies on the raw HTTP path while `request.url` is rebuilt from the `Host` header, a malformed header could make `request.url.path` differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on `request.url` (rather than the raw `scope` path) could therefore be bypassed.\n\n### Details\nWhen a client requests `http://example.com/foo`, it sends:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com\n```\n\nAffected versions reconstructed the URL by concatenating `http://{host}{path}` and re-parsing the result. The `Host` value is only valid as a `uri-host [ \":\" port ]` per [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6), where `uri-host` follows the restricted `host` grammar of [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2). When it contains characters outside that grammar - notably `/`, `?`, or `#` - those characters move the path/query/fragment boundaries during re-parsing, so the parsed `request.url.path` no longer matches the path the server actually received. For example:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com/abc?bar=\n```\n\nreconstructs to `http://example.com/abc?bar=/foo`, whose parsed `path` is `/abc` - even though routing used the real path `/foo`. The router still dispatches to `/foo` and the endpoint executes, but any middleware or code that reads `request.url.path` sees `/abc`, so path-based authorization checks can be bypassed.\n\n### Impact\nAny application running an affected version that relies on `request.url` (or `request.url.path`) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on `request.url.path`. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed `Host` header before forwarding and the application does not trust attacker-controlled host headers (e.g. `X-Forwarded-Host`) elsewhere.\n\n### Mitigation\nUpgrade to a patched version, which validates the `Host` header against the grammar of [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6) / [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2) when constructing `request.url` and falls back to `scope[\"server\"]` for malformed values.",
      "id": "BREW-rapid-mlx-CVE-2026-48710",
      "modified": "2026-09-10T20:37:33Z",
      "published": "2026-08-13T17:32:07Z",
      "references": [
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/security/advisories/GHSA-86qp-5c8j-p5mr"
        },
        {
          "type": "ADVISORY",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/commit/764dab0dcfb9033d75442d7a359645c9f94648c6"
        },
        {
          "type": "WEB",
          "url": "https://www.x41-dsec.de/lab/advisories/x41-2026-002-starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.secwest.net/starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-48710.json"
        },
        {
          "type": "WEB",
          "url": "https://ostif.org/disclosing-the-badhost-vulnerability-in-starlette"
        },
        {
          "type": "WEB",
          "url": "https://github.com/pypa/advisory-database/tree/main/vulns/starlette/PYSEC-2026-161.yaml"
        },
        {
          "type": "PACKAGE",
          "url": "https://github.com/Kludex/starlette"
        },
        {
          "type": "WEB",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2481742"
        },
        {
          "type": "WEB",
          "url": "https://badhost.org"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/security/cve/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:60520"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:51357"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:44696"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:43038"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:37275"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34532"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34526"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34456"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30089"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30088"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:26226"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:24866"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:23346"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22993"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22992"
        }
      ],
      "schema_version": "1.7.3",
      "severity": [
        {
          "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
          "type": "CVSS_V3"
        }
      ],
      "summary": "Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks",
      "upstream": [
        "GHSA-86qp-5c8j-p5mr",
        "CVE-2026-48710",
        "PYSEC-2026-161",
        "X41-2026-002"
      ]
    }

    BREW-SCHEMATHESIS-CVE-20… (GHSA-86QP-5C8J-P5MR)

    Vulnerability from osv_homebrew – Published: 2026-08-13 17:34 – Updated: 2026-08-29 09:41 – Source website
    VLAI
    Summary
    Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks
    Details

    Summary

    In affected versions, the HTTP Host request header was not validated before being used to reconstruct request.url. Because the routing algorithm relies on the raw HTTP path while request.url is rebuilt from the Host header, a malformed header could make request.url.path differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on request.url (rather than the raw scope path) could therefore be bypassed.

    Details

    When a client requests http://example.com/foo, it sends:

    GET /foo HTTP/1.1
    Host: example.com
    

    Affected versions reconstructed the URL by concatenating http://{host}{path} and re-parsing the result. The Host value is only valid as a uri-host [ ":" port ] per RFC 9112 §3.2, where uri-host follows the restricted host grammar of RFC 3986 §3.2.2. When it contains characters outside that grammar - notably /, ?, or # - those characters move the path/query/fragment boundaries during re-parsing, so the parsed request.url.path no longer matches the path the server actually received. For example:

    GET /foo HTTP/1.1
    Host: example.com/abc?bar=
    

    reconstructs to http://example.com/abc?bar=/foo, whose parsed path is /abc - even though routing used the real path /foo. The router still dispatches to /foo and the endpoint executes, but any middleware or code that reads request.url.path sees /abc, so path-based authorization checks can be bypassed.

    Impact

    Any application running an affected version that relies on request.url (or request.url.path) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on request.url.path. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed Host header before forwarding and the application does not trust attacker-controlled host headers (e.g. X-Forwarded-Host) elsewhere.

    Mitigation

    Upgrade to a patched version, which validates the Host header against the grammar of RFC 9112 §3.2 / RFC 3986 §3.2.2 when constructing request.url and falls back to scope["server"] for malformed values.


    {
      "affected": [
        {
          "ecosystem_specific": {
            "fix": "bump",
            "range_state": "fixed",
            "resource": "starlette",
            "resource_purl": "pkg:pypi/starlette@1.6.0",
            "upstream_fixed_in": "1.0.1"
          },
          "package": {
            "ecosystem": "Homebrew",
            "name": "schemathesis",
            "purl": "pkg:brew/schemathesis"
          },
          "ranges": [
            {
              "events": [
                {
                  "introduced": "0"
                },
                {
                  "fixed": "4.24.3"
                }
              ],
              "type": "ECOSYSTEM"
            }
          ]
        }
      ],
      "database_specific": {
        "confidence": "high",
        "source": "matched",
        "strategy": "registry",
        "upstream_evidence": [
          {
            "ecosystem": "PyPI",
            "key": "pkg:pypi/starlette@1.6.0",
            "name": "starlette",
            "resource": "starlette",
            "strategy": "registry",
            "subject_version": "1.6.0"
          },
          {
            "ecosystem": "PyPI",
            "key": "pkg:pypi/starlette@1.6.0",
            "name": "starlette",
            "resource": "starlette",
            "strategy": "registry",
            "subject_version": "1.6.0"
          }
        ]
      },
      "details": "### Summary\nIn affected versions, the HTTP `Host` request header was not validated before being used to reconstruct `request.url`. Because the routing algorithm relies on the raw HTTP path while `request.url` is rebuilt from the `Host` header, a malformed header could make `request.url.path` differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on `request.url` (rather than the raw `scope` path) could therefore be bypassed.\n\n### Details\nWhen a client requests `http://example.com/foo`, it sends:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com\n```\n\nAffected versions reconstructed the URL by concatenating `http://{host}{path}` and re-parsing the result. The `Host` value is only valid as a `uri-host [ \":\" port ]` per [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6), where `uri-host` follows the restricted `host` grammar of [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2). When it contains characters outside that grammar - notably `/`, `?`, or `#` - those characters move the path/query/fragment boundaries during re-parsing, so the parsed `request.url.path` no longer matches the path the server actually received. For example:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com/abc?bar=\n```\n\nreconstructs to `http://example.com/abc?bar=/foo`, whose parsed `path` is `/abc` - even though routing used the real path `/foo`. The router still dispatches to `/foo` and the endpoint executes, but any middleware or code that reads `request.url.path` sees `/abc`, so path-based authorization checks can be bypassed.\n\n### Impact\nAny application running an affected version that relies on `request.url` (or `request.url.path`) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on `request.url.path`. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed `Host` header before forwarding and the application does not trust attacker-controlled host headers (e.g. `X-Forwarded-Host`) elsewhere.\n\n### Mitigation\nUpgrade to a patched version, which validates the `Host` header against the grammar of [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6) / [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2) when constructing `request.url` and falls back to `scope[\"server\"]` for malformed values.",
      "id": "BREW-schemathesis-CVE-2026-48710",
      "modified": "2026-08-29T09:41:05Z",
      "published": "2026-08-13T17:34:18Z",
      "references": [
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/security/advisories/GHSA-86qp-5c8j-p5mr"
        },
        {
          "type": "ADVISORY",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/commit/764dab0dcfb9033d75442d7a359645c9f94648c6"
        },
        {
          "type": "WEB",
          "url": "https://www.x41-dsec.de/lab/advisories/x41-2026-002-starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.secwest.net/starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-48710.json"
        },
        {
          "type": "WEB",
          "url": "https://ostif.org/disclosing-the-badhost-vulnerability-in-starlette"
        },
        {
          "type": "WEB",
          "url": "https://github.com/pypa/advisory-database/tree/main/vulns/starlette/PYSEC-2026-161.yaml"
        },
        {
          "type": "PACKAGE",
          "url": "https://github.com/Kludex/starlette"
        },
        {
          "type": "WEB",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2481742"
        },
        {
          "type": "WEB",
          "url": "https://badhost.org"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/security/cve/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:60520"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:51357"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:44696"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:43038"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:37275"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34532"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34526"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34456"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30089"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30088"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:26226"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:24866"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:23346"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22993"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22992"
        }
      ],
      "schema_version": "1.7.3",
      "severity": [
        {
          "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
          "type": "CVSS_V3"
        }
      ],
      "summary": "Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks",
      "upstream": [
        "GHSA-86qp-5c8j-p5mr",
        "CVE-2026-48710",
        "PYSEC-2026-161",
        "X41-2026-002"
      ]
    }

    BREW-SEMGREP-CVE-2026-48710 (GHSA-86QP-5C8J-P5MR)

    Vulnerability from osv_homebrew – Published: 2026-08-13 17:34 – Updated: 2026-09-17 18:23 – Source website
    VLAI
    Summary
    Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks
    Details

    Summary

    In affected versions, the HTTP Host request header was not validated before being used to reconstruct request.url. Because the routing algorithm relies on the raw HTTP path while request.url is rebuilt from the Host header, a malformed header could make request.url.path differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on request.url (rather than the raw scope path) could therefore be bypassed.

    Details

    When a client requests http://example.com/foo, it sends:

    GET /foo HTTP/1.1
    Host: example.com
    

    Affected versions reconstructed the URL by concatenating http://{host}{path} and re-parsing the result. The Host value is only valid as a uri-host [ ":" port ] per RFC 9112 §3.2, where uri-host follows the restricted host grammar of RFC 3986 §3.2.2. When it contains characters outside that grammar - notably /, ?, or # - those characters move the path/query/fragment boundaries during re-parsing, so the parsed request.url.path no longer matches the path the server actually received. For example:

    GET /foo HTTP/1.1
    Host: example.com/abc?bar=
    

    reconstructs to http://example.com/abc?bar=/foo, whose parsed path is /abc - even though routing used the real path /foo. The router still dispatches to /foo and the endpoint executes, but any middleware or code that reads request.url.path sees /abc, so path-based authorization checks can be bypassed.

    Impact

    Any application running an affected version that relies on request.url (or request.url.path) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on request.url.path. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed Host header before forwarding and the application does not trust attacker-controlled host headers (e.g. X-Forwarded-Host) elsewhere.

    Mitigation

    Upgrade to a patched version, which validates the Host header against the grammar of RFC 9112 §3.2 / RFC 3986 §3.2.2 when constructing request.url and falls back to scope["server"] for malformed values.


    {
      "affected": [
        {
          "ecosystem_specific": {
            "fix": "bump",
            "range_state": "fixed",
            "resource": "starlette",
            "resource_purl": "pkg:pypi/starlette@1.6.0",
            "upstream_fixed_in": "1.0.1"
          },
          "package": {
            "ecosystem": "Homebrew",
            "name": "semgrep",
            "purl": "pkg:brew/semgrep"
          },
          "ranges": [
            {
              "events": [
                {
                  "introduced": "1.137.0"
                },
                {
                  "fixed": "1.165.0"
                }
              ],
              "type": "ECOSYSTEM"
            }
          ]
        }
      ],
      "database_specific": {
        "confidence": "high",
        "source": "matched",
        "strategy": "registry",
        "upstream_evidence": [
          {
            "ecosystem": "PyPI",
            "key": "pkg:pypi/starlette@1.6.0",
            "name": "starlette",
            "resource": "starlette",
            "strategy": "registry",
            "subject_version": "1.6.0"
          }
        ]
      },
      "details": "### Summary\nIn affected versions, the HTTP `Host` request header was not validated before being used to reconstruct `request.url`. Because the routing algorithm relies on the raw HTTP path while `request.url` is rebuilt from the `Host` header, a malformed header could make `request.url.path` differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on `request.url` (rather than the raw `scope` path) could therefore be bypassed.\n\n### Details\nWhen a client requests `http://example.com/foo`, it sends:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com\n```\n\nAffected versions reconstructed the URL by concatenating `http://{host}{path}` and re-parsing the result. The `Host` value is only valid as a `uri-host [ \":\" port ]` per [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6), where `uri-host` follows the restricted `host` grammar of [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2). When it contains characters outside that grammar - notably `/`, `?`, or `#` - those characters move the path/query/fragment boundaries during re-parsing, so the parsed `request.url.path` no longer matches the path the server actually received. For example:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com/abc?bar=\n```\n\nreconstructs to `http://example.com/abc?bar=/foo`, whose parsed `path` is `/abc` - even though routing used the real path `/foo`. The router still dispatches to `/foo` and the endpoint executes, but any middleware or code that reads `request.url.path` sees `/abc`, so path-based authorization checks can be bypassed.\n\n### Impact\nAny application running an affected version that relies on `request.url` (or `request.url.path`) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on `request.url.path`. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed `Host` header before forwarding and the application does not trust attacker-controlled host headers (e.g. `X-Forwarded-Host`) elsewhere.\n\n### Mitigation\nUpgrade to a patched version, which validates the `Host` header against the grammar of [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6) / [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2) when constructing `request.url` and falls back to `scope[\"server\"]` for malformed values.",
      "id": "BREW-semgrep-CVE-2026-48710",
      "modified": "2026-09-17T18:23:29Z",
      "published": "2026-08-13T17:34:27Z",
      "references": [
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/security/advisories/GHSA-86qp-5c8j-p5mr"
        },
        {
          "type": "ADVISORY",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/commit/764dab0dcfb9033d75442d7a359645c9f94648c6"
        },
        {
          "type": "WEB",
          "url": "https://www.x41-dsec.de/lab/advisories/x41-2026-002-starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.secwest.net/starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-48710.json"
        },
        {
          "type": "WEB",
          "url": "https://ostif.org/disclosing-the-badhost-vulnerability-in-starlette"
        },
        {
          "type": "WEB",
          "url": "https://github.com/pypa/advisory-database/tree/main/vulns/starlette/PYSEC-2026-161.yaml"
        },
        {
          "type": "PACKAGE",
          "url": "https://github.com/Kludex/starlette"
        },
        {
          "type": "WEB",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2481742"
        },
        {
          "type": "WEB",
          "url": "https://badhost.org"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/security/cve/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:60520"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:51357"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:44696"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:43038"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:37275"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34532"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34526"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34456"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30089"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30088"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:26226"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:24866"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:23346"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22993"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22992"
        }
      ],
      "schema_version": "1.7.3",
      "severity": [
        {
          "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
          "type": "CVSS_V3"
        }
      ],
      "summary": "Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks",
      "upstream": [
        "GHSA-86qp-5c8j-p5mr",
        "CVE-2026-48710",
        "PYSEC-2026-161",
        "X41-2026-002"
      ]
    }

    BREW-SNYK-AGENT-SCAN-CVE… (GHSA-86QP-5C8J-P5MR)

    Vulnerability from osv_homebrew – Published: 2026-08-13 17:35 – Updated: 2026-09-17 18:07 – Source website
    VLAI
    Summary
    Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks
    Details

    Summary

    In affected versions, the HTTP Host request header was not validated before being used to reconstruct request.url. Because the routing algorithm relies on the raw HTTP path while request.url is rebuilt from the Host header, a malformed header could make request.url.path differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on request.url (rather than the raw scope path) could therefore be bypassed.

    Details

    When a client requests http://example.com/foo, it sends:

    GET /foo HTTP/1.1
    Host: example.com
    

    Affected versions reconstructed the URL by concatenating http://{host}{path} and re-parsing the result. The Host value is only valid as a uri-host [ ":" port ] per RFC 9112 §3.2, where uri-host follows the restricted host grammar of RFC 3986 §3.2.2. When it contains characters outside that grammar - notably /, ?, or # - those characters move the path/query/fragment boundaries during re-parsing, so the parsed request.url.path no longer matches the path the server actually received. For example:

    GET /foo HTTP/1.1
    Host: example.com/abc?bar=
    

    reconstructs to http://example.com/abc?bar=/foo, whose parsed path is /abc - even though routing used the real path /foo. The router still dispatches to /foo and the endpoint executes, but any middleware or code that reads request.url.path sees /abc, so path-based authorization checks can be bypassed.

    Impact

    Any application running an affected version that relies on request.url (or request.url.path) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on request.url.path. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed Host header before forwarding and the application does not trust attacker-controlled host headers (e.g. X-Forwarded-Host) elsewhere.

    Mitigation

    Upgrade to a patched version, which validates the Host header against the grammar of RFC 9112 §3.2 / RFC 3986 §3.2.2 when constructing request.url and falls back to scope["server"] for malformed values.


    {
      "affected": [
        {
          "ecosystem_specific": {
            "fix": "bump",
            "range_state": "fixed",
            "resource": "starlette",
            "resource_purl": "pkg:pypi/starlette@1.6.0",
            "upstream_fixed_in": "1.0.1"
          },
          "package": {
            "ecosystem": "Homebrew",
            "name": "snyk-agent-scan",
            "purl": "pkg:brew/snyk-agent-scan"
          },
          "ranges": [
            {
              "events": [
                {
                  "introduced": "0.4.3"
                },
                {
                  "fixed": "0.5.4_1"
                }
              ],
              "type": "ECOSYSTEM"
            }
          ]
        }
      ],
      "database_specific": {
        "confidence": "high",
        "source": "matched",
        "strategy": "registry",
        "upstream_evidence": [
          {
            "ecosystem": "PyPI",
            "key": "pkg:pypi/starlette@1.6.0",
            "name": "starlette",
            "resource": "starlette",
            "strategy": "registry",
            "subject_version": "1.6.0"
          }
        ]
      },
      "details": "### Summary\nIn affected versions, the HTTP `Host` request header was not validated before being used to reconstruct `request.url`. Because the routing algorithm relies on the raw HTTP path while `request.url` is rebuilt from the `Host` header, a malformed header could make `request.url.path` differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on `request.url` (rather than the raw `scope` path) could therefore be bypassed.\n\n### Details\nWhen a client requests `http://example.com/foo`, it sends:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com\n```\n\nAffected versions reconstructed the URL by concatenating `http://{host}{path}` and re-parsing the result. The `Host` value is only valid as a `uri-host [ \":\" port ]` per [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6), where `uri-host` follows the restricted `host` grammar of [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2). When it contains characters outside that grammar - notably `/`, `?`, or `#` - those characters move the path/query/fragment boundaries during re-parsing, so the parsed `request.url.path` no longer matches the path the server actually received. For example:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com/abc?bar=\n```\n\nreconstructs to `http://example.com/abc?bar=/foo`, whose parsed `path` is `/abc` - even though routing used the real path `/foo`. The router still dispatches to `/foo` and the endpoint executes, but any middleware or code that reads `request.url.path` sees `/abc`, so path-based authorization checks can be bypassed.\n\n### Impact\nAny application running an affected version that relies on `request.url` (or `request.url.path`) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on `request.url.path`. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed `Host` header before forwarding and the application does not trust attacker-controlled host headers (e.g. `X-Forwarded-Host`) elsewhere.\n\n### Mitigation\nUpgrade to a patched version, which validates the `Host` header against the grammar of [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6) / [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2) when constructing `request.url` and falls back to `scope[\"server\"]` for malformed values.",
      "id": "BREW-snyk-agent-scan-CVE-2026-48710",
      "modified": "2026-09-17T18:07:02Z",
      "published": "2026-08-13T17:35:48Z",
      "references": [
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/security/advisories/GHSA-86qp-5c8j-p5mr"
        },
        {
          "type": "ADVISORY",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/commit/764dab0dcfb9033d75442d7a359645c9f94648c6"
        },
        {
          "type": "WEB",
          "url": "https://www.x41-dsec.de/lab/advisories/x41-2026-002-starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.secwest.net/starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-48710.json"
        },
        {
          "type": "WEB",
          "url": "https://ostif.org/disclosing-the-badhost-vulnerability-in-starlette"
        },
        {
          "type": "WEB",
          "url": "https://github.com/pypa/advisory-database/tree/main/vulns/starlette/PYSEC-2026-161.yaml"
        },
        {
          "type": "PACKAGE",
          "url": "https://github.com/Kludex/starlette"
        },
        {
          "type": "WEB",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2481742"
        },
        {
          "type": "WEB",
          "url": "https://badhost.org"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/security/cve/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:60520"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:51357"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:44696"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:43038"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:37275"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34532"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34526"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34456"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30089"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30088"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:26226"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:24866"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:23346"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22993"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22992"
        }
      ],
      "schema_version": "1.7.3",
      "severity": [
        {
          "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
          "type": "CVSS_V3"
        }
      ],
      "summary": "Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks",
      "upstream": [
        "GHSA-86qp-5c8j-p5mr",
        "CVE-2026-48710",
        "PYSEC-2026-161",
        "X41-2026-002"
      ]
    }

    BREW-STRANDS-AGENTS-SOPS… (GHSA-86QP-5C8J-P5MR)

    Vulnerability from osv_homebrew – Published: 2026-08-13 17:41 – Updated: 2026-09-17 18:46 – Source website
    VLAI
    Summary
    Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks
    Details

    Summary

    In affected versions, the HTTP Host request header was not validated before being used to reconstruct request.url. Because the routing algorithm relies on the raw HTTP path while request.url is rebuilt from the Host header, a malformed header could make request.url.path differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on request.url (rather than the raw scope path) could therefore be bypassed.

    Details

    When a client requests http://example.com/foo, it sends:

    GET /foo HTTP/1.1
    Host: example.com
    

    Affected versions reconstructed the URL by concatenating http://{host}{path} and re-parsing the result. The Host value is only valid as a uri-host [ ":" port ] per RFC 9112 §3.2, where uri-host follows the restricted host grammar of RFC 3986 §3.2.2. When it contains characters outside that grammar - notably /, ?, or # - those characters move the path/query/fragment boundaries during re-parsing, so the parsed request.url.path no longer matches the path the server actually received. For example:

    GET /foo HTTP/1.1
    Host: example.com/abc?bar=
    

    reconstructs to http://example.com/abc?bar=/foo, whose parsed path is /abc - even though routing used the real path /foo. The router still dispatches to /foo and the endpoint executes, but any middleware or code that reads request.url.path sees /abc, so path-based authorization checks can be bypassed.

    Impact

    Any application running an affected version that relies on request.url (or request.url.path) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on request.url.path. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed Host header before forwarding and the application does not trust attacker-controlled host headers (e.g. X-Forwarded-Host) elsewhere.

    Mitigation

    Upgrade to a patched version, which validates the Host header against the grammar of RFC 9112 §3.2 / RFC 3986 §3.2.2 when constructing request.url and falls back to scope["server"] for malformed values.


    {
      "affected": [
        {
          "ecosystem_specific": {
            "fix": "bump",
            "range_state": "fixed",
            "resource": "starlette",
            "resource_purl": "pkg:pypi/starlette@1.6.0",
            "upstream_fixed_in": "1.0.1"
          },
          "package": {
            "ecosystem": "Homebrew",
            "name": "strands-agents-sops",
            "purl": "pkg:brew/strands-agents-sops"
          },
          "ranges": [
            {
              "events": [
                {
                  "introduced": "1.0.1"
                },
                {
                  "fixed": "1.1.2_3"
                }
              ],
              "type": "ECOSYSTEM"
            }
          ]
        }
      ],
      "database_specific": {
        "confidence": "high",
        "source": "matched",
        "strategy": "registry",
        "upstream_evidence": [
          {
            "ecosystem": "PyPI",
            "key": "pkg:pypi/starlette@1.6.0",
            "name": "starlette",
            "resource": "starlette",
            "strategy": "registry",
            "subject_version": "1.6.0"
          }
        ]
      },
      "details": "### Summary\nIn affected versions, the HTTP `Host` request header was not validated before being used to reconstruct `request.url`. Because the routing algorithm relies on the raw HTTP path while `request.url` is rebuilt from the `Host` header, a malformed header could make `request.url.path` differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on `request.url` (rather than the raw `scope` path) could therefore be bypassed.\n\n### Details\nWhen a client requests `http://example.com/foo`, it sends:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com\n```\n\nAffected versions reconstructed the URL by concatenating `http://{host}{path}` and re-parsing the result. The `Host` value is only valid as a `uri-host [ \":\" port ]` per [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6), where `uri-host` follows the restricted `host` grammar of [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2). When it contains characters outside that grammar - notably `/`, `?`, or `#` - those characters move the path/query/fragment boundaries during re-parsing, so the parsed `request.url.path` no longer matches the path the server actually received. For example:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com/abc?bar=\n```\n\nreconstructs to `http://example.com/abc?bar=/foo`, whose parsed `path` is `/abc` - even though routing used the real path `/foo`. The router still dispatches to `/foo` and the endpoint executes, but any middleware or code that reads `request.url.path` sees `/abc`, so path-based authorization checks can be bypassed.\n\n### Impact\nAny application running an affected version that relies on `request.url` (or `request.url.path`) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on `request.url.path`. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed `Host` header before forwarding and the application does not trust attacker-controlled host headers (e.g. `X-Forwarded-Host`) elsewhere.\n\n### Mitigation\nUpgrade to a patched version, which validates the `Host` header against the grammar of [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6) / [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2) when constructing `request.url` and falls back to `scope[\"server\"]` for malformed values.",
      "id": "BREW-strands-agents-sops-CVE-2026-48710",
      "modified": "2026-09-17T18:46:24Z",
      "published": "2026-08-13T17:41:09Z",
      "references": [
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/security/advisories/GHSA-86qp-5c8j-p5mr"
        },
        {
          "type": "ADVISORY",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/commit/764dab0dcfb9033d75442d7a359645c9f94648c6"
        },
        {
          "type": "WEB",
          "url": "https://www.x41-dsec.de/lab/advisories/x41-2026-002-starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.secwest.net/starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-48710.json"
        },
        {
          "type": "WEB",
          "url": "https://ostif.org/disclosing-the-badhost-vulnerability-in-starlette"
        },
        {
          "type": "WEB",
          "url": "https://github.com/pypa/advisory-database/tree/main/vulns/starlette/PYSEC-2026-161.yaml"
        },
        {
          "type": "PACKAGE",
          "url": "https://github.com/Kludex/starlette"
        },
        {
          "type": "WEB",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2481742"
        },
        {
          "type": "WEB",
          "url": "https://badhost.org"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/security/cve/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:60520"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:51357"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:44696"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:43038"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:37275"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34532"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34526"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34456"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30089"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30088"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:26226"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:24866"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:23346"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22993"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22992"
        }
      ],
      "schema_version": "1.7.3",
      "severity": [
        {
          "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
          "type": "CVSS_V3"
        }
      ],
      "summary": "Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks",
      "upstream": [
        "GHSA-86qp-5c8j-p5mr",
        "CVE-2026-48710",
        "PYSEC-2026-161",
        "X41-2026-002"
      ]
    }

    BREW-SYSAIDMIN-CVE-2026-48710 (GHSA-86QP-5C8J-P5MR)

    Vulnerability from osv_homebrew – Published: 2026-08-13 17:42 – Updated: 2026-09-17 19:04 – Source website
    VLAI
    Summary
    Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks
    Details

    Summary

    In affected versions, the HTTP Host request header was not validated before being used to reconstruct request.url. Because the routing algorithm relies on the raw HTTP path while request.url is rebuilt from the Host header, a malformed header could make request.url.path differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on request.url (rather than the raw scope path) could therefore be bypassed.

    Details

    When a client requests http://example.com/foo, it sends:

    GET /foo HTTP/1.1
    Host: example.com
    

    Affected versions reconstructed the URL by concatenating http://{host}{path} and re-parsing the result. The Host value is only valid as a uri-host [ ":" port ] per RFC 9112 §3.2, where uri-host follows the restricted host grammar of RFC 3986 §3.2.2. When it contains characters outside that grammar - notably /, ?, or # - those characters move the path/query/fragment boundaries during re-parsing, so the parsed request.url.path no longer matches the path the server actually received. For example:

    GET /foo HTTP/1.1
    Host: example.com/abc?bar=
    

    reconstructs to http://example.com/abc?bar=/foo, whose parsed path is /abc - even though routing used the real path /foo. The router still dispatches to /foo and the endpoint executes, but any middleware or code that reads request.url.path sees /abc, so path-based authorization checks can be bypassed.

    Impact

    Any application running an affected version that relies on request.url (or request.url.path) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on request.url.path. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed Host header before forwarding and the application does not trust attacker-controlled host headers (e.g. X-Forwarded-Host) elsewhere.

    Mitigation

    Upgrade to a patched version, which validates the Host header against the grammar of RFC 9112 §3.2 / RFC 3986 §3.2.2 when constructing request.url and falls back to scope["server"] for malformed values.


    {
      "affected": [
        {
          "ecosystem_specific": {
            "fix": "bump",
            "range_state": "fixed",
            "resource": "starlette",
            "resource_purl": "pkg:pypi/starlette@1.3.1",
            "upstream_fixed_in": "1.0.1"
          },
          "package": {
            "ecosystem": "Homebrew",
            "name": "sysaidmin",
            "purl": "pkg:brew/sysaidmin"
          },
          "ranges": [
            {
              "events": [
                {
                  "introduced": "0.2.3"
                },
                {
                  "fixed": "0.2.5_16"
                }
              ],
              "type": "ECOSYSTEM"
            }
          ]
        }
      ],
      "database_specific": {
        "confidence": "high",
        "source": "matched",
        "strategy": "registry",
        "upstream_evidence": [
          {
            "ecosystem": "PyPI",
            "key": "pkg:pypi/starlette@1.3.1",
            "name": "starlette",
            "resource": "starlette",
            "strategy": "registry",
            "subject_version": "1.3.1"
          }
        ]
      },
      "details": "### Summary\nIn affected versions, the HTTP `Host` request header was not validated before being used to reconstruct `request.url`. Because the routing algorithm relies on the raw HTTP path while `request.url` is rebuilt from the `Host` header, a malformed header could make `request.url.path` differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on `request.url` (rather than the raw `scope` path) could therefore be bypassed.\n\n### Details\nWhen a client requests `http://example.com/foo`, it sends:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com\n```\n\nAffected versions reconstructed the URL by concatenating `http://{host}{path}` and re-parsing the result. The `Host` value is only valid as a `uri-host [ \":\" port ]` per [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6), where `uri-host` follows the restricted `host` grammar of [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2). When it contains characters outside that grammar - notably `/`, `?`, or `#` - those characters move the path/query/fragment boundaries during re-parsing, so the parsed `request.url.path` no longer matches the path the server actually received. For example:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com/abc?bar=\n```\n\nreconstructs to `http://example.com/abc?bar=/foo`, whose parsed `path` is `/abc` - even though routing used the real path `/foo`. The router still dispatches to `/foo` and the endpoint executes, but any middleware or code that reads `request.url.path` sees `/abc`, so path-based authorization checks can be bypassed.\n\n### Impact\nAny application running an affected version that relies on `request.url` (or `request.url.path`) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on `request.url.path`. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed `Host` header before forwarding and the application does not trust attacker-controlled host headers (e.g. `X-Forwarded-Host`) elsewhere.\n\n### Mitigation\nUpgrade to a patched version, which validates the `Host` header against the grammar of [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6) / [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2) when constructing `request.url` and falls back to `scope[\"server\"]` for malformed values.",
      "id": "BREW-sysaidmin-CVE-2026-48710",
      "modified": "2026-09-17T19:04:06Z",
      "published": "2026-08-13T17:42:12Z",
      "references": [
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/security/advisories/GHSA-86qp-5c8j-p5mr"
        },
        {
          "type": "ADVISORY",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/commit/764dab0dcfb9033d75442d7a359645c9f94648c6"
        },
        {
          "type": "WEB",
          "url": "https://www.x41-dsec.de/lab/advisories/x41-2026-002-starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.secwest.net/starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-48710.json"
        },
        {
          "type": "WEB",
          "url": "https://ostif.org/disclosing-the-badhost-vulnerability-in-starlette"
        },
        {
          "type": "WEB",
          "url": "https://github.com/pypa/advisory-database/tree/main/vulns/starlette/PYSEC-2026-161.yaml"
        },
        {
          "type": "PACKAGE",
          "url": "https://github.com/Kludex/starlette"
        },
        {
          "type": "WEB",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2481742"
        },
        {
          "type": "WEB",
          "url": "https://badhost.org"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/security/cve/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:60520"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:51357"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:44696"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:43038"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:37275"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34532"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34526"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34456"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30089"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30088"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:26226"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:24866"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:23346"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22993"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22992"
        }
      ],
      "schema_version": "1.7.3",
      "severity": [
        {
          "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
          "type": "CVSS_V3"
        }
      ],
      "summary": "Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks",
      "upstream": [
        "GHSA-86qp-5c8j-p5mr",
        "CVE-2026-48710",
        "PYSEC-2026-161",
        "X41-2026-002"
      ]
    }

    BREW-THEHARVESTER-CVE-20… (GHSA-86QP-5C8J-P5MR)

    Vulnerability from osv_homebrew – Published: 2026-08-13 17:43 – Updated: 2026-09-18 19:03 – Source website
    VLAI
    Summary
    Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks
    Details

    Summary

    In affected versions, the HTTP Host request header was not validated before being used to reconstruct request.url. Because the routing algorithm relies on the raw HTTP path while request.url is rebuilt from the Host header, a malformed header could make request.url.path differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on request.url (rather than the raw scope path) could therefore be bypassed.

    Details

    When a client requests http://example.com/foo, it sends:

    GET /foo HTTP/1.1
    Host: example.com
    

    Affected versions reconstructed the URL by concatenating http://{host}{path} and re-parsing the result. The Host value is only valid as a uri-host [ ":" port ] per RFC 9112 §3.2, where uri-host follows the restricted host grammar of RFC 3986 §3.2.2. When it contains characters outside that grammar - notably /, ?, or # - those characters move the path/query/fragment boundaries during re-parsing, so the parsed request.url.path no longer matches the path the server actually received. For example:

    GET /foo HTTP/1.1
    Host: example.com/abc?bar=
    

    reconstructs to http://example.com/abc?bar=/foo, whose parsed path is /abc - even though routing used the real path /foo. The router still dispatches to /foo and the endpoint executes, but any middleware or code that reads request.url.path sees /abc, so path-based authorization checks can be bypassed.

    Impact

    Any application running an affected version that relies on request.url (or request.url.path) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on request.url.path. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed Host header before forwarding and the application does not trust attacker-controlled host headers (e.g. X-Forwarded-Host) elsewhere.

    Mitigation

    Upgrade to a patched version, which validates the Host header against the grammar of RFC 9112 §3.2 / RFC 3986 §3.2.2 when constructing request.url and falls back to scope["server"] for malformed values.


    {
      "affected": [
        {
          "ecosystem_specific": {
            "fix": "bump",
            "range_state": "fixed",
            "resource": "starlette",
            "resource_purl": "pkg:pypi/starlette@1.6.0",
            "upstream_fixed_in": "1.0.1"
          },
          "package": {
            "ecosystem": "Homebrew",
            "name": "theharvester",
            "purl": "pkg:brew/theharvester"
          },
          "ranges": [
            {
              "events": [
                {
                  "introduced": "0"
                },
                {
                  "fixed": "4.11.1_1"
                }
              ],
              "type": "ECOSYSTEM"
            }
          ]
        }
      ],
      "database_specific": {
        "confidence": "high",
        "source": "matched",
        "strategy": "registry",
        "upstream_evidence": [
          {
            "ecosystem": "PyPI",
            "key": "pkg:pypi/starlette@1.6.0",
            "name": "starlette",
            "resource": "starlette",
            "strategy": "registry",
            "subject_version": "1.6.0"
          }
        ]
      },
      "details": "### Summary\nIn affected versions, the HTTP `Host` request header was not validated before being used to reconstruct `request.url`. Because the routing algorithm relies on the raw HTTP path while `request.url` is rebuilt from the `Host` header, a malformed header could make `request.url.path` differ from the path that was actually requested. Middleware and endpoints that apply security restrictions based on `request.url` (rather than the raw `scope` path) could therefore be bypassed.\n\n### Details\nWhen a client requests `http://example.com/foo`, it sends:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com\n```\n\nAffected versions reconstructed the URL by concatenating `http://{host}{path}` and re-parsing the result. The `Host` value is only valid as a `uri-host [ \":\" port ]` per [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6), where `uri-host` follows the restricted `host` grammar of [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2). When it contains characters outside that grammar - notably `/`, `?`, or `#` - those characters move the path/query/fragment boundaries during re-parsing, so the parsed `request.url.path` no longer matches the path the server actually received. For example:\n\n```http\nGET /foo HTTP/1.1\nHost: example.com/abc?bar=\n```\n\nreconstructs to `http://example.com/abc?bar=/foo`, whose parsed `path` is `/abc` - even though routing used the real path `/foo`. The router still dispatches to `/foo` and the endpoint executes, but any middleware or code that reads `request.url.path` sees `/abc`, so path-based authorization checks can be bypassed.\n\n### Impact\nAny application running an affected version that relies on `request.url` (or `request.url.path`) for security-sensitive decisions is affected. The most common case is middleware that gates access to certain path prefixes based on `request.url.path`. Deployments fronted by a proxy or load balancer are mitigated only if that proxy rejects or normalizes the malformed `Host` header before forwarding and the application does not trust attacker-controlled host headers (e.g. `X-Forwarded-Host`) elsewhere.\n\n### Mitigation\nUpgrade to a patched version, which validates the `Host` header against the grammar of [RFC 9112 \u00a73.2](https://www.rfc-editor.org/rfc/rfc9112.html#section-3.2-6) / [RFC 3986 \u00a73.2.2](https://www.rfc-editor.org/rfc/rfc3986.html#section-3.2.2) when constructing `request.url` and falls back to `scope[\"server\"]` for malformed values.",
      "id": "BREW-theharvester-CVE-2026-48710",
      "modified": "2026-09-18T19:03:30Z",
      "published": "2026-08-13T17:43:26Z",
      "references": [
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/security/advisories/GHSA-86qp-5c8j-p5mr"
        },
        {
          "type": "ADVISORY",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://github.com/Kludex/starlette/commit/764dab0dcfb9033d75442d7a359645c9f94648c6"
        },
        {
          "type": "WEB",
          "url": "https://www.x41-dsec.de/lab/advisories/x41-2026-002-starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.secwest.net/starlette"
        },
        {
          "type": "WEB",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-48710.json"
        },
        {
          "type": "WEB",
          "url": "https://ostif.org/disclosing-the-badhost-vulnerability-in-starlette"
        },
        {
          "type": "WEB",
          "url": "https://github.com/pypa/advisory-database/tree/main/vulns/starlette/PYSEC-2026-161.yaml"
        },
        {
          "type": "PACKAGE",
          "url": "https://github.com/Kludex/starlette"
        },
        {
          "type": "WEB",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2481742"
        },
        {
          "type": "WEB",
          "url": "https://badhost.org"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/security/cve/CVE-2026-48710"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:60520"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:51357"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:44696"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:43038"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:37275"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34532"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34526"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:34456"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30089"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:30088"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:26226"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:24866"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:23346"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22993"
        },
        {
          "type": "WEB",
          "url": "https://access.redhat.com/errata/RHSA-2026:22992"
        }
      ],
      "schema_version": "1.7.3",
      "severity": [
        {
          "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
          "type": "CVSS_V3"
        }
      ],
      "summary": "Starlette has missing Host header validation that poisons request.url.path, bypassing path-based security checks",
      "upstream": [
        "GHSA-86qp-5c8j-p5mr",
        "CVE-2026-48710",
        "PYSEC-2026-161",
        "X41-2026-002"
      ]
    }

    PYSEC-2026-161

    Vulnerability from pysec - Published: 2026-05-22 13:10 - Updated: 2026-05-22 13:11
    VLAI
    Details

    Starlette reconstructs the requested URL based on the HTTP Host request header and requested path, but does not perform any validation of the Host header value. This allows attackers to inject paths into the host part, prepending the actual path. However, routing in Starlette is based on the actual request path. This inconsistent interpretation of HTTP requests may lead to issues such as authentication bypass when the authentication depends on the reconstructed URL’s path.

    Impacted products
    Name purl
    starlette pkg:pypi/starlette

    {
      "affected": [
        {
          "package": {
            "ecosystem": "PyPI",
            "name": "starlette",
            "purl": "pkg:pypi/starlette"
          },
          "ranges": [
            {
              "events": [
                {
                  "introduced": "0"
                },
                {
                  "fixed": "1.0.1"
                }
              ],
              "type": "ECOSYSTEM"
            }
          ],
          "versions": [
            "0.1.0",
            "0.1.1",
            "0.1.10",
            "0.1.11",
            "0.1.12",
            "0.1.13",
            "0.1.14",
            "0.1.15",
            "0.1.16",
            "0.1.17",
            "0.1.2",
            "0.1.3",
            "0.1.4",
            "0.1.5",
            "0.1.6",
            "0.1.7",
            "0.1.8",
            "0.1.9",
            "0.10.0",
            "0.10.1",
            "0.10.2",
            "0.10.3",
            "0.10.4",
            "0.10.5",
            "0.10.6",
            "0.10.7",
            "0.11.0",
            "0.11.1",
            "0.11.2",
            "0.11.3",
            "0.11.4",
            "0.12.0",
            "0.12.0b1",
            "0.12.0b2",
            "0.12.0b3",
            "0.12.1",
            "0.12.10",
            "0.12.11",
            "0.12.12",
            "0.12.13",
            "0.12.2",
            "0.12.3",
            "0.12.4",
            "0.12.5",
            "0.12.6",
            "0.12.7",
            "0.12.8",
            "0.12.9",
            "0.13.0",
            "0.13.1",
            "0.13.2",
            "0.13.3",
            "0.13.4",
            "0.13.5",
            "0.13.6",
            "0.13.7",
            "0.13.8",
            "0.14.0",
            "0.14.1",
            "0.14.2",
            "0.15.0",
            "0.16.0",
            "0.17.0",
            "0.17.1",
            "0.18.0",
            "0.19.0",
            "0.19.1",
            "0.2.0",
            "0.2.1",
            "0.2.2",
            "0.2.3",
            "0.20.0",
            "0.20.1",
            "0.20.2",
            "0.20.3",
            "0.20.4",
            "0.21.0",
            "0.22.0",
            "0.23.0",
            "0.23.1",
            "0.24.0",
            "0.25.0",
            "0.26.0",
            "0.26.0.post1",
            "0.26.1",
            "0.27.0",
            "0.28.0",
            "0.29.0",
            "0.3.0",
            "0.3.1",
            "0.3.2",
            "0.3.3",
            "0.3.4",
            "0.3.5",
            "0.3.6",
            "0.3.7",
            "0.30.0",
            "0.31.0",
            "0.31.1",
            "0.32.0",
            "0.32.0.post1",
            "0.33.0",
            "0.34.0",
            "0.35.0",
            "0.35.1",
            "0.36.0",
            "0.36.1",
            "0.36.2",
            "0.36.3",
            "0.37.0",
            "0.37.1",
            "0.37.2",
            "0.38.0",
            "0.38.1",
            "0.38.2",
            "0.38.3",
            "0.38.4",
            "0.38.5",
            "0.38.6",
            "0.39.0",
            "0.39.1",
            "0.39.2",
            "0.4.0",
            "0.4.1",
            "0.4.2",
            "0.40.0",
            "0.41.0",
            "0.41.1",
            "0.41.2",
            "0.41.3",
            "0.42.0",
            "0.43.0",
            "0.44.0",
            "0.45.0",
            "0.45.1",
            "0.45.2",
            "0.45.3",
            "0.46.0",
            "0.46.1",
            "0.46.2",
            "0.47.0",
            "0.47.1",
            "0.47.2",
            "0.47.3",
            "0.48.0",
            "0.49.0",
            "0.49.1",
            "0.49.2",
            "0.49.3",
            "0.5.0",
            "0.5.1",
            "0.5.2",
            "0.5.3",
            "0.5.4",
            "0.5.5",
            "0.50.0",
            "0.51.0",
            "0.52.0",
            "0.52.1",
            "0.6.0",
            "0.6.1",
            "0.6.2",
            "0.6.3",
            "0.7.0",
            "0.7.1",
            "0.7.2",
            "0.7.3",
            "0.7.4",
            "0.8.0",
            "0.8.1",
            "0.8.2",
            "0.8.3",
            "0.8.4",
            "0.8.5",
            "0.8.6",
            "0.8.7",
            "0.8.8",
            "0.9.0",
            "0.9.1",
            "0.9.10",
            "0.9.11",
            "0.9.2",
            "0.9.3",
            "0.9.4",
            "0.9.5",
            "0.9.6",
            "0.9.7",
            "0.9.8",
            "0.9.9",
            "1.0.0",
            "1.0.0rc1"
          ]
        }
      ],
      "aliases": [
        "X41-2026-002",
        "CVE-2026-48710",
        "GHSA-86qp-5c8j-p5mr"
      ],
      "details": "Starlette reconstructs the requested URL based on the HTTP Host request header and requested path, but does not perform any validation of the Host header value. This allows attackers to inject paths into the host part, prepending the actual path. However, routing in Starlette is based on the actual request path. This inconsistent interpretation of HTTP requests may lead to issues such as authentication bypass when the authentication depends on the reconstructed URL\u2019s path.",
      "id": "PYSEC-2026-161",
      "modified": "2026-05-22T13:11:38.659740Z",
      "published": "2026-05-22T13:10:03Z",
      "references": [
        {
          "type": "ARTICLE",
          "url": "https://badhost.org"
        },
        {
          "type": "ARTICLE",
          "url": "https://www.secwest.net/starlette"
        },
        {
          "type": "ARTICLE",
          "url": "https://ostif.org/disclosing-the-badhost-vulnerability-in-starlette/"
        },
        {
          "type": "DETECTION",
          "url": "https://badhost.org"
        },
        {
          "type": "EVIDENCE",
          "url": "https://github.com/Kludex/starlette/security/advisories/GHSA-86qp-5c8j-p5mr"
        },
        {
          "type": "ADVISORY",
          "url": "https://github.com/Kludex/starlette/security/advisories/GHSA-86qp-5c8j-p5mr"
        },
        {
          "type": "ADVISORY",
          "url": "https://www.x41-dsec.de/lab/advisories/x41-2026-002-starlette/"
        },
        {
          "type": "FIX",
          "url": "https://github.com/Kludex/starlette/commit/764dab0dcfb9033d75442d7a359645c9f94648c6"
        }
      ],
      "summary": "BadHost: Missing Host header validation poisons request.url.path, bypassing path-based security checks"
    }