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

CVE-2024-42353: WebOb's location header normalization during redirect leads to open redirect

August 14, 2024 (updated January 21, 2025)

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 urlparse, and joining it to the base URL. urlparse 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.

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

WebOb uses urljoin to take the request URI and joining the redirect location, so assuming the request URI is: https://example.org//example.com/some/path, and the URL to redirect to (for example by adding a slash automatically) is //example.com/some/path/ that gets turned by urljoin into:

>>> parse.urljoin("https://example.org//attacker.com/some/path", "//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
  • github.com/Pylons/webob/commit/f689bcf4f0a1f64f1735b1d5069aef5be6974b5b
  • github.com/Pylons/webob/security/advisories/GHSA-mg3v-6m49-jhp3
  • github.com/advisories/GHSA-mg3v-6m49-jhp3
  • github.com/pypa/advisory-database/tree/main/vulns/webob/PYSEC-2024-188.yaml
  • nvd.nist.gov/vuln/detail/CVE-2024-42353

Code Behaviors & Features

Detect and mitigate CVE-2024-42353 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.8

Fixed versions

  • 1.8.8

Solution

Upgrade to version 1.8.8 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-2024-42353.yml

Spotted a mistake? Edit the file on GitLab.

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

Page generated Wed, 14 May 2025 12:15:35 +0000.