mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-03-23 19:34:13 +03:00
Trivial removal of leftover
This commit is contained in:
parent
a42a7c88bd
commit
1824e5b094
|
@ -4881,7 +4881,6 @@ def zeroDepthSearch(expression, value):
|
||||||
elif expression[index] == ')':
|
elif expression[index] == ')':
|
||||||
depth -= 1
|
depth -= 1
|
||||||
elif depth == 0:
|
elif depth == 0:
|
||||||
found = False
|
|
||||||
if value.startswith('[') and value.endswith(']'):
|
if value.startswith('[') and value.endswith(']'):
|
||||||
if re.search(value, expression[index:index + 1]):
|
if re.search(value, expression[index:index + 1]):
|
||||||
retVal.append(index)
|
retVal.append(index)
|
||||||
|
|
|
@ -18,7 +18,7 @@ from lib.core.enums import OS
|
||||||
from thirdparty.six import unichr as _unichr
|
from thirdparty.six import unichr as _unichr
|
||||||
|
|
||||||
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
||||||
VERSION = "1.3.8.2"
|
VERSION = "1.3.8.3"
|
||||||
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
|
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
|
||||||
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
|
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)
|
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user