mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-03 13:14:13 +03:00
Trivial polishing
This commit is contained in:
parent
57dbbefd92
commit
769d0eb9bd
|
@ -18,7 +18,7 @@ from lib.core.enums import OS
|
|||
from thirdparty import six
|
||||
|
||||
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
||||
VERSION = "1.3.5.72"
|
||||
VERSION = "1.3.5.73"
|
||||
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
|
||||
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
|
||||
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
|
||||
|
|
|
@ -379,7 +379,7 @@ def bisection(payload, expression, length=None, charsetType=None, firstChar=None
|
|||
charTbl = xrange(maxChar + 1, (maxChar + 1) << shiftTable.pop())
|
||||
originalTbl = xrange(charTbl)
|
||||
maxChar = maxValue = charTbl[-1]
|
||||
minChar = minValue = charTbl[0]
|
||||
minValue = charTbl[0]
|
||||
else:
|
||||
return None
|
||||
else:
|
||||
|
|
|
@ -15,7 +15,6 @@ import string
|
|||
from lib.core.common import getSafeExString
|
||||
from lib.core.compat import xrange
|
||||
from lib.core.data import logger
|
||||
from thirdparty import six
|
||||
|
||||
def purge(directory):
|
||||
"""
|
||||
|
|
Loading…
Reference in New Issue
Block a user