mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-29 13:03:50 +03:00
quick (probably not final) fix for unicode inference (not yet tested)
This commit is contained in:
parent
03fb84e29f
commit
7dc1bf0324
|
@ -147,8 +147,8 @@ def bisection(payload, expression, length=None, charsetType=None, firstChar=None
|
||||||
if result:
|
if result:
|
||||||
return result
|
return result
|
||||||
|
|
||||||
maxValue = asciiTbl[len(asciiTbl)-1]
|
maxChar = maxValue = asciiTbl[-1]
|
||||||
minValue = 0
|
minValue = asciiTbl[0]
|
||||||
|
|
||||||
while len(asciiTbl) != 1:
|
while len(asciiTbl) != 1:
|
||||||
queriesCount[0] += 1
|
queriesCount[0] += 1
|
||||||
|
@ -179,8 +179,16 @@ def bisection(payload, expression, length=None, charsetType=None, firstChar=None
|
||||||
if len(asciiTbl) == 1:
|
if len(asciiTbl) == 1:
|
||||||
if maxValue == 1:
|
if maxValue == 1:
|
||||||
return None
|
return None
|
||||||
|
elif minValue == maxChar:
|
||||||
|
asciiTbl = range( maxChar + 1, (maxChar + 1) * 8 )
|
||||||
|
maxChar = maxValue = asciiTbl[-1]
|
||||||
|
minValue = asciiTbl[0]
|
||||||
else:
|
else:
|
||||||
return chr(minValue + 1)
|
retVal = minValue + 1
|
||||||
|
if retVal < 256:
|
||||||
|
return chr(retVal)
|
||||||
|
else:
|
||||||
|
return unichr(retVal)
|
||||||
|
|
||||||
def etaProgressUpdate(charTime, index):
|
def etaProgressUpdate(charTime, index):
|
||||||
if len(progressTime) <= ( (length * 3) / 100 ):
|
if len(progressTime) <= ( (length * 3) / 100 ):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user