mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-01-24 08:14:24 +03:00
some renaming
This commit is contained in:
parent
838762fb00
commit
655bd79fc4
|
@ -144,13 +144,13 @@ def bisection(payload, expression, length=None, charsetType=None, firstChar=None
|
||||||
|
|
||||||
return None
|
return None
|
||||||
|
|
||||||
def getChar(idx, charTbl=asciiTbl, sequentialOrder=True):
|
def getChar(idx, charTbl=asciiTbl, continuousOrder=True):
|
||||||
result = tryHint(idx)
|
result = tryHint(idx)
|
||||||
|
|
||||||
if result:
|
if result:
|
||||||
return result
|
return result
|
||||||
|
|
||||||
if not sequentialOrder:
|
if not continuousOrder:
|
||||||
originalTbl = list(charTbl)
|
originalTbl = list(charTbl)
|
||||||
|
|
||||||
if len(charTbl) == 1:
|
if len(charTbl) == 1:
|
||||||
|
@ -201,7 +201,7 @@ def bisection(payload, expression, length=None, charsetType=None, firstChar=None
|
||||||
charTbl = xrange(charTbl[0], charTbl[position])
|
charTbl = xrange(charTbl[0], charTbl[position])
|
||||||
|
|
||||||
if len(charTbl) == 1:
|
if len(charTbl) == 1:
|
||||||
if sequentialOrder:
|
if continuousOrder:
|
||||||
if maxValue == 1:
|
if maxValue == 1:
|
||||||
return None
|
return None
|
||||||
elif minValue == maxChar:
|
elif minValue == maxChar:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user