File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2895,7 +2895,7 @@ def _(match):
28952895 if spaceplus :
28962896 result = result .replace ('+' , ' ' ) # plus sign has a special meaning in URL encoded data (hence the usage of _urllib.parse.unquote_plus in convall case)
28972897
2898- result = re .sub (r"%([0-9a-fA-F]{2})" , _ , result )
2898+ result = re .sub (r"%([0-9a-fA-F]{2})" , _ , result or "" )
28992899
29002900 result = getUnicode (result , encoding or UNICODE_ENCODING )
29012901
Original file line number Diff line number Diff line change 2020from thirdparty .six import unichr as _unichr
2121
2222# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23- VERSION = "1.5.10.14 "
23+ VERSION = "1.5.10.15 "
2424TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
2525TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
2626VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
You can’t perform that action at this time.
0 commit comments