mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
added support for proper unicode session(s) storage/retrieval
This commit is contained in:
@@ -194,10 +194,10 @@ def bisection(payload, expression, length=None, charsetType=None, firstChar=None
|
||||
minValue = charTbl[0]
|
||||
else:
|
||||
retVal = minValue + 1
|
||||
if retVal < 256:
|
||||
if retVal < 128:
|
||||
return chr(retVal)
|
||||
else:
|
||||
return unichr(retVal)
|
||||
return unichr(retVal) #test value 50089
|
||||
|
||||
def etaProgressUpdate(charTime, index):
|
||||
if len(progressTime) <= ( (length * 3) / 100 ):
|
||||
|
||||
Reference in New Issue
Block a user