mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 01:26:42 +03:00
Minor update
This commit is contained in:
parent
737c727e56
commit
9fc856b3a6
|
@ -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.11.90"
|
VERSION = "1.3.11.91"
|
||||||
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)
|
||||||
|
|
|
@ -82,7 +82,7 @@ def checkDependencies():
|
||||||
|
|
||||||
try:
|
try:
|
||||||
__import__("websocket.ABNF")
|
__import__("websocket.ABNF")
|
||||||
debugMsg = "'python websocket-client' library is found"
|
debugMsg = "'websocket-client' library is found"
|
||||||
logger.debug(debugMsg)
|
logger.debug(debugMsg)
|
||||||
except ImportError:
|
except ImportError:
|
||||||
warnMsg = "sqlmap requires 'websocket-client' third-party library "
|
warnMsg = "sqlmap requires 'websocket-client' third-party library "
|
||||||
|
@ -91,6 +91,26 @@ def checkDependencies():
|
||||||
logger.warn(warnMsg)
|
logger.warn(warnMsg)
|
||||||
missing_libraries.add('websocket-client')
|
missing_libraries.add('websocket-client')
|
||||||
|
|
||||||
|
try:
|
||||||
|
__import__("tkinter")
|
||||||
|
debugMsg = "'tkinter' library is found"
|
||||||
|
logger.debug(debugMsg)
|
||||||
|
except ImportError:
|
||||||
|
warnMsg = "sqlmap requires 'tkinter' library "
|
||||||
|
warnMsg += "if you plan to run a GUI"
|
||||||
|
logger.warn(warnMsg)
|
||||||
|
missing_libraries.add('tkinter')
|
||||||
|
|
||||||
|
try:
|
||||||
|
__import__("tkinter.ttk")
|
||||||
|
debugMsg = "'tkinter.ttk' library is found"
|
||||||
|
logger.debug(debugMsg)
|
||||||
|
except ImportError:
|
||||||
|
warnMsg = "sqlmap requires 'tkinter.ttk' library "
|
||||||
|
warnMsg += "if you plan to run a GUI"
|
||||||
|
logger.warn(warnMsg)
|
||||||
|
missing_libraries.add('tkinter.ttk')
|
||||||
|
|
||||||
if IS_WIN:
|
if IS_WIN:
|
||||||
try:
|
try:
|
||||||
__import__("pyreadline")
|
__import__("pyreadline")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user