Originally reported by: Daniel Frischhut (Bitbucket: daniel_frischhut, GitHub: Unknown)
We got a request with the following header-fields:
'CONNECTION': 'close'
'CACHE-CONTROL': 'no-cache'
'ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8'
'ACCEPT-CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7)'
'USER-AGENT': 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36'
'ACCEPT-LANGUAGE': 'en-us'
'ACCEPT-ENCODING': 'gzip,deflate'
and cherrypy faild with follwing Traceback:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/dist-packages/cherrypy/_cprequest.py", line 670, in respond
response.body = self.handler()
File "/usr/local/lib/python2.7/dist-packages/cherrypy/lib/encoding.py", line 260, in __call__
ct.params[\'charset\'] = self.find_acceptable_charset()
File "/usr/local/lib/python2.7/dist-packages/cherrypy/lib/encoding.py", line 146, in find_acceptable_charset
encs = request.headers.elements(\'Accept-Charset\')
File "/usr/local/lib/python2.7/dist-packages/cherrypy/lib/httputil.py", line 456, in elements
return header_elements(key, value)
File "/usr/local/lib/python2.7/dist-packages/cherrypy/lib/httputil.py", line 237, in header_elements
return list(reversed(sorted(result)))
File "/usr/local/lib/python2.7/dist-packages/cherrypy/lib/httputil.py", line 217, in __lt__
if self.qvalue == other.qvalue:
File "/usr/local/lib/python2.7/dist-packages/cherrypy/lib/httputil.py", line 207, in qvalue
return float(val)
ValueError: invalid literal for float(): 0.7)
i edited the httputil.py in line 207 and surrounded the return float(val) with a try - except and returned the default value.
Originally reported by: Daniel Frischhut (Bitbucket: daniel_frischhut, GitHub: Unknown)
We got a request with the following header-fields:
and cherrypy faild with follwing Traceback:
i edited the httputil.py in line 207 and surrounded the return float(val) with a try - except and returned the default value.