Adding native websocket support

This commit is contained in:
Miroslav Štampar 2026-07-09 13:56:40 +02:00
parent 4c12dda2f7
commit fc1ae6950e
6 changed files with 371 additions and 27 deletions

View file

@ -83,17 +83,6 @@ def checkDependencies():
logger.warning(warnMsg)
missing_libraries.add('python-impacket')
try:
__import__("websocket._abnf")
debugMsg = "'websocket-client' library is found"
logger.debug(debugMsg)
except ImportError:
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.warning(warnMsg)
missing_libraries.add('websocket-client')
try:
__import__("tkinter")
debugMsg = "'tkinter' library is found"