mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 20:51:31 +00:00
operator fix
This commit is contained in:
@@ -180,7 +180,7 @@ def bisection(payload, expression, length=None, charsetType=None, firstChar=None
|
|||||||
if maxValue == 1:
|
if maxValue == 1:
|
||||||
return None
|
return None
|
||||||
elif minValue == maxChar:
|
elif minValue == maxChar:
|
||||||
asciiTbl = range( maxChar + 1, (maxChar + 1) * 8 )
|
asciiTbl = range( maxChar + 1, (maxChar + 1) << 8 )
|
||||||
maxChar = maxValue = asciiTbl[-1]
|
maxChar = maxValue = asciiTbl[-1]
|
||||||
minValue = asciiTbl[0]
|
minValue = asciiTbl[0]
|
||||||
else:
|
else:
|
||||||
|
|||||||
Reference in New Issue
Block a user