mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Minor update
This commit is contained in:
parent
61d327aae1
commit
48b915b5ee
3 changed files with 5 additions and 5 deletions
|
|
@ -20,7 +20,7 @@ from lib.core.enums import OS
|
|||
from thirdparty import six
|
||||
|
||||
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
||||
VERSION = "1.10.6.104"
|
||||
VERSION = "1.10.6.105"
|
||||
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)
|
||||
|
|
|
|||
|
|
@ -246,7 +246,7 @@ def smokeTest():
|
|||
count, length = 0, 0
|
||||
|
||||
for root, _, files in os.walk(paths.SQLMAP_ROOT_PATH):
|
||||
if any(_ in root for _ in ("thirdparty", "extra", "interbase")):
|
||||
if any(_ in root for _ in ("thirdparty", "extra", "interbase", "tests")):
|
||||
continue
|
||||
|
||||
for filename in files:
|
||||
|
|
@ -254,7 +254,7 @@ def smokeTest():
|
|||
length += 1
|
||||
|
||||
for root, _, files in os.walk(paths.SQLMAP_ROOT_PATH):
|
||||
if any(_ in root for _ in ("thirdparty", "extra", "interbase")):
|
||||
if any(_ in root for _ in ("thirdparty", "extra", "interbase", "tests")):
|
||||
continue
|
||||
|
||||
for filename in files:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue