Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 769d0eb

Browse files
committed
Trivial polishing
1 parent 57dbbef commit 769d0eb

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from thirdparty import six
1919

2020
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
21-
VERSION = "1.3.5.72"
21+
VERSION = "1.3.5.73"
2222
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2323
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2424
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

lib/techniques/blind/inference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ def getChar(idx, charTbl=None, continuousOrder=True, expand=charsetType is None,
379379
charTbl = xrange(maxChar + 1, (maxChar + 1) << shiftTable.pop())
380380
originalTbl = xrange(charTbl)
381381
maxChar = maxValue = charTbl[-1]
382-
minChar = minValue = charTbl[0]
382+
minValue = charTbl[0]
383383
else:
384384
return None
385385
else:

lib/utils/purge.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
from lib.core.common import getSafeExString
1616
from lib.core.compat import xrange
1717
from lib.core.data import logger
18-
from thirdparty import six
1918

2019
def purge(directory):
2120
"""

0 commit comments

Comments
 (0)