mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-29 13:03:50 +03:00
minor fix/update
This commit is contained in:
parent
7411052456
commit
694a65f6f1
|
@ -1829,7 +1829,7 @@ def filterControlChars(value):
|
||||||
Returns string value with control
|
Returns string value with control
|
||||||
chars being supstituted with ' '
|
chars being supstituted with ' '
|
||||||
"""
|
"""
|
||||||
return filterStringValue(output, NON_CONTROL_CHAR_REGEX, ' ')
|
return filterStringValue(value, NON_CONTROL_CHAR_REGEX, ' ')
|
||||||
|
|
||||||
def isDBMSVersionAtLeast(version):
|
def isDBMSVersionAtLeast(version):
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -16,7 +16,7 @@ class SmartHTTPBasicAuthHandler(urllib2.HTTPBasicAuthHandler):
|
||||||
"""
|
"""
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
urllib2.HTTPBasicAuthHandler.__init__(self, *args, **kwargs)
|
urllib2.HTTPBasicAuthHandler.__init__(self, *args, **kwargs)
|
||||||
self.retried_req = []
|
self.retried_req = set()
|
||||||
|
|
||||||
def reset_retry_count(self):
|
def reset_retry_count(self):
|
||||||
# Python 2.6.5 will call this on 401 or 407 errors and thus loop
|
# Python 2.6.5 will call this on 401 or 407 errors and thus loop
|
||||||
|
@ -27,7 +27,7 @@ class SmartHTTPBasicAuthHandler(urllib2.HTTPBasicAuthHandler):
|
||||||
def http_error_auth_reqed(self, auth_header, host, req, headers):
|
def http_error_auth_reqed(self, auth_header, host, req, headers):
|
||||||
# Reset the retry counter once for each request.
|
# Reset the retry counter once for each request.
|
||||||
if hash(req) not in self.retried_req:
|
if hash(req) not in self.retried_req:
|
||||||
self.retried_req.append(hash(req))
|
self.retried_req.add(hash(req))
|
||||||
self.retried = 0
|
self.retried = 0
|
||||||
return urllib2.HTTPBasicAuthHandler.http_error_auth_reqed(
|
return urllib2.HTTPBasicAuthHandler.http_error_auth_reqed(
|
||||||
self, auth_header, host, req, headers)
|
self, auth_header, host, req, headers)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user