urllib.parse should sanitize urls containing ASCII newline and tabs.

Warning

This resource is maintained for historical reference and does not contain the latest vulnerability info for Python.

The canonical database for vulnerabilities affecting Python is available on GitHub in the Open Source Vulnerability (OSV) format. This vulnerability can be viewed online at the Open Source Vulnerability Database.

A security issue was reported by Mike Lissner wherein an attacker was able to use \r\n in the url path, the urlparse method didn’t sanitize and allowed those characters be present in the request:

>>> from urllib.parse import urlsplit
>>> urlsplit("java\nscript:alert('bad')")
SplitResult(scheme='', netloc='', path="java\nscript:alert('bad')", query='', fragment='')

Firefox and other browsers ignore newlines in the scheme. From the browser console:

>> new URL("java\nscript:alert(bad)")
<< URL { href: "javascript:alert(bad)", origin: "null", protocol:
"javascript:", username: "", password: "", host: "", hostname: "", port: "", pathname: "alert(bad)", search: ""

Mozilla Developers informed about the controlling specification for URLs is in fact defined by the “URL Spec” from WHATWG which updates RFC 3986 and specifies that tabs and newlines should be stripped from the scheme.

See: https://url.spec.whatwg.org/#concept-basic-url-parser

That link defines an automaton for URL parsing. From that link, steps 2 and 3 of scheme parsing read:

If input contains any ASCII tab or newline, validation error. 3. Remove all ASCII tab or newline from input.

urlparse module behavior should be updated, and an ASCII tab or newline should be removed from the url (sanitized) before it is sent to the request, as WHATWG spec.

More commits:

Doc changes:

Dates:

  • Disclosure date: 2021-04-18 (Python issue bpo-43882 reported)
  • Reported at: 2021-03-16 (email sent to the PSRT list)
  • Reported by: Mike Lissner

Fixed In

Python issue

[security] CVE-2022-0391: urllib.parse should sanitize urls containing ASCII newline and tabs.

  • Python issue: bpo-43882
  • Creation date: 2021-04-18
  • Reporter: Senthil Kumaran

CVE-2022-0391

A flaw was found in Python, specifically within the urllib.parse module. This module helps break Uniform Resource Locator (URL) strings into components. The issue involves how the urlparse method does not sanitize input and allows characters like ‘r’ and ‘n’ in the URL path. This flaw allows an attacker to input a crafted URL, leading to injection attacks. This flaw affects Python versions prior to 3.10.0b1, 3.9.5, 3.8.11, 3.7.11 and 3.6.14.

Timeline

Timeline using the disclosure date 2021-04-18 as reference: