mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-12-01 22:13:53 +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:
|
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:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user