mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-01-24 08:14:24 +03:00
fix
This commit is contained in:
parent
887352746b
commit
f0d3e6c565
|
@ -183,12 +183,14 @@ def bisection(payload, expression, length=None, charsetType=None, firstChar=None
|
|||
if type(charTbl) != xrange:
|
||||
charTbl = charTbl[:position]
|
||||
else:
|
||||
charTbl = xrange(charTbl[0], charTbl[position] + 1)
|
||||
charTbl = xrange(charTbl[0], charTbl[position])
|
||||
|
||||
if len(charTbl) == 1:
|
||||
if maxValue == 1:
|
||||
return None
|
||||
elif minValue == maxChar:
|
||||
import pdb
|
||||
pdb.set_trace()
|
||||
charTbl = xrange( maxChar + 1, (maxChar + 1) << 8 )
|
||||
maxChar = maxValue = charTbl[-1]
|
||||
minValue = charTbl[0]
|
||||
|
|
Loading…
Reference in New Issue
Block a user