Skip to content

Commit dd05334

Browse files
committed
Use the current upstream (python3.9) authreq header parsing regex
Fixes a DoS when parsing a malformed auth header. Reported by CodeQL. Reference GHSL-2021-108
1 parent 1af1582 commit dd05334

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

mechanize/_urllib2_fork.py

+9-2
Original file line numberDiff line numberDiff line change
@@ -875,8 +875,15 @@ class AbstractBasicAuthHandler:
875875

876876
# allow for double- and single-quoted realm values
877877
# (single quotes are a violation of the RFC, but appear in the wild)
878-
rx = re.compile('(?:.*,)*[ \t]*([^ \t]+)[ \t]+'
879-
'realm=(["\'])(.*?)\\2', re.I)
878+
rx = re.compile('(?:^|,)' # start of the string or ','
879+
'[ \t]*' # optional whitespaces
880+
'([^ \t,]+)' # scheme like "Basic"
881+
'[ \t]+' # mandatory whitespaces
882+
# realm=xxx
883+
# realm='xxx'
884+
# realm="xxx"
885+
'realm=(["\']?)([^"\']*)\\2',
886+
re.I)
880887

881888
# XXX could pre-emptively send auth info already accepted (RFC 2617,
882889
# end of section 2, and section 1.2 immediately after "credentials"

test/test_urllib2.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
HTTPCookieProcessor, HTTPRefererProcessor, \
2525
HTTPErrorProcessor, HTTPHandler
2626
from mechanize import OpenerDirector, build_opener, Request
27-
from mechanize._urllib2_fork import AbstractHTTPHandler, normalize_url
27+
from mechanize._urllib2_fork import AbstractHTTPHandler, normalize_url, AbstractBasicAuthHandler
2828
from mechanize._util import write_file
2929

3030
import mechanize._response
@@ -69,6 +69,10 @@ def test_parse_http_list(self):
6969
self.assertEqual(
7070
mechanize._urllib2_fork.parse_http_list(string), list)
7171

72+
def test_parse_authreq(self):
73+
for bad in (",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,",):
74+
self.assertIsNone(AbstractBasicAuthHandler.rx.search(bad))
75+
7276

7377
def test_request_headers_dict():
7478
"""

0 commit comments

Comments
 (0)