mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Minor patches related to the #1206
This commit is contained in:
parent
91bc02e3ba
commit
e8f87bfa41
3 changed files with 8 additions and 6 deletions
|
|
@ -72,7 +72,7 @@ def checkDependencies():
|
|||
debugMsg = "'python-ntlm' third-party library is found"
|
||||
logger.debug(debugMsg)
|
||||
except ImportError:
|
||||
warnMsg = "sqlmap requires 'python-ntlm' third-party library for "
|
||||
warnMsg = "sqlmap requires 'python-ntlm' third-party library "
|
||||
warnMsg += "if you plan to attack a web application behind NTLM "
|
||||
warnMsg += "authentication. Download from http://code.google.com/p/python-ntlm/"
|
||||
logger.warn(warnMsg)
|
||||
|
|
@ -83,8 +83,8 @@ def checkDependencies():
|
|||
debugMsg = "'python websocket-client' library is found"
|
||||
logger.debug(debugMsg)
|
||||
except ImportError:
|
||||
warnMsg = "sqlmap requires 'python websocket-client' third-party library for "
|
||||
warnMsg += "if you plan to attack a web application behind websocket. "
|
||||
warnMsg = "sqlmap requires 'websocket-client' third-party library "
|
||||
warnMsg += "if you plan to attack a web application using WebSocket. "
|
||||
warnMsg += "Download from https://pypi.python.org/pypi/websocket-client/"
|
||||
logger.warn(warnMsg)
|
||||
missing_libraries.add('websocket-client')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue