mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
Patch for an Issue #203
This commit is contained in:
parent
e440b096c5
commit
9aba690a60
|
@ -1962,7 +1962,7 @@ def extractErrorMessage(page):
|
|||
|
||||
return retVal
|
||||
|
||||
def urldecode(value, encoding=None):
|
||||
def urldecode(value, encoding=None, onlyPrintable=True):
|
||||
result = None
|
||||
|
||||
if value:
|
||||
|
@ -1972,6 +1972,12 @@ def urldecode(value, encoding=None):
|
|||
except ValueError:
|
||||
pass
|
||||
finally:
|
||||
if onlyPrintable:
|
||||
def _(match):
|
||||
char = chr(ord(match.group(1).decode("hex")))
|
||||
return char if char in string.printable.replace("&", "") else match.group(0)
|
||||
result = re.sub("%([0-9a-fA-F]{2})", _, value)
|
||||
else:
|
||||
result = urllib.unquote_plus(value)
|
||||
|
||||
if isinstance(result, str):
|
||||
|
|
|
@ -1339,10 +1339,10 @@ def __cleanupOptions():
|
|||
if re.search(r'%[0-9a-f]{2}', conf.data, re.I):
|
||||
original = conf.data
|
||||
class _(unicode): pass
|
||||
conf.data = _(urldecode(conf.data) if conf.data and urlencode(DEFAULT_GET_POST_DELIMITER, None) not in conf.data else conf.data)
|
||||
conf.data = _(urldecode(conf.data))
|
||||
setattr(conf.data, UNENCODED_ORIGINAL_VALUE, original)
|
||||
else:
|
||||
conf.data = urldecode(conf.data) if conf.data and urlencode(DEFAULT_GET_POST_DELIMITER, None) not in conf.data else conf.data
|
||||
conf.data = urldecode(conf.data)
|
||||
|
||||
if conf.os:
|
||||
conf.os = conf.os.capitalize()
|
||||
|
|
Loading…
Reference in New Issue
Block a user