Advisory Database
  • Advisories
  • Dependency Scanning
  1. pypi
  2. ›
  3. webob
  4. ›
  5. CVE-2026-44889

CVE-2026-44889: WebOb: Location header normalization during redirect leads to open redirect - again

June 4, 2026

When WebOb normalizes the HTTP Location header to include the request hostname, it does so by parsing the URL that the user is to be redirected to with Python’s urllib.parse, and joining it to the base URL. urlsplit (called internally by urljoin) however treats a // at the start of a string as a URI without a scheme, and then treats the next part as the hostname. urljoin will then use that hostname from the second part as the hostname replacing the original one from the request.

In a previous advisory https://github.com/Pylons/webob/security/advisories/GHSA-mg3v-6m49-jhp3 an attempt to fix this was made by forcing the replacement of // with /%2f, however this did not take into account that since Python 3.10 urlsplit internally strips ASCII tab, carriage return, and newline characters from the string, so /\t/attacker.com gets turned into //attacker.com and the attacker is able to bypass the changes introduced in that previous advisory, thereby bringing back the problem that was attempted to be fixed.

>>> parse.urlparse("//attacker.com/some/path")
ParseResult(scheme='', netloc='attacker.com', path='/some/path', params='', query='', fragment='')

WebOb uses urljoin to take the request URI and join the redirect location to it, so assuming the request URI is https://example.org/ and the URL to redirect to is /\t/attacker.com/some/path/:

>>> parse.urljoin("https://example.org/", "/\t/attacker.com/some/path/")
'https://attacker.com/some/path/'

Which redirects from example.org where we want the user to stay to attacker.com.

References

  • github.com/Pylons/webob/commit/1f681a4f17fc10777ef861e8b43ecb26053bc539
  • github.com/Pylons/webob/commit/2b9fbedafb31180c910cf8526e9ea72b4603d0bc
  • github.com/Pylons/webob/releases/tag/1.8.10
  • github.com/Pylons/webob/security/advisories/GHSA-fh3h-vg37-cc95
  • github.com/Pylons/webob/security/advisories/GHSA-mg3v-6m49-jhp3
  • github.com/advisories/GHSA-fh3h-vg37-cc95
  • nvd.nist.gov/vuln/detail/CVE-2026-44889

Code Behaviors & Features

Detect and mitigate CVE-2026-44889 with GitLab Dependency Scanning

Secure your software supply chain by verifying that all open source dependencies used in your projects contain no disclosed vulnerabilities. Learn more about Dependency Scanning →

Affected versions

All versions before 1.8.10

Fixed versions

  • 1.8.10

Solution

Upgrade to version 1.8.10 or above.

Impact 6.1 MEDIUM

CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N

Learn more about CVSS

Weakness

  • CWE-601: URL Redirection to Untrusted Site ('Open Redirect')

Source file

pypi/webob/CVE-2026-44889.yml

Spotted a mistake? Edit the file on GitLab.

  • Site Repo
  • About GitLab
  • Terms
  • Privacy Statement
  • Contact

Page generated Fri, 05 Jun 2026 12:55:08 +0000.