mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-25 19:13:48 +03:00
operator fix
This commit is contained in:
parent
7dc1bf0324
commit
2c2d6d3623
|
@ -180,7 +180,7 @@ def bisection(payload, expression, length=None, charsetType=None, firstChar=None
|
|||
if maxValue == 1:
|
||||
return None
|
||||
elif minValue == maxChar:
|
||||
asciiTbl = range( maxChar + 1, (maxChar + 1) * 8 )
|
||||
asciiTbl = range( maxChar + 1, (maxChar + 1) << 8 )
|
||||
maxChar = maxValue = asciiTbl[-1]
|
||||
minValue = asciiTbl[0]
|
||||
else:
|
||||
|
|
Loading…
Reference in New Issue
Block a user