@@ -25,7 +25,7 @@ def checkDependencies():
2525 if not hasattr (pymssql , "__version__" ) or pymssql .__version__ < "1.0.2" :
2626 warnMsg = "'%s' third-party library must be " % data [1 ]
2727 warnMsg += "version >= 1.0.2 to work properly. "
28- warnMsg += "Download from %s " % data [2 ]
28+ warnMsg += "Download from '%s' " % data [2 ]
2929 logger .warn (warnMsg )
3030 elif dbmsName == DBMS .MYSQL :
3131 __import__ ("pymysql" )
@@ -49,7 +49,7 @@ def checkDependencies():
4949 except :
5050 warnMsg = "sqlmap requires '%s' third-party library " % data [1 ]
5151 warnMsg += "in order to directly connect to the DBMS "
52- warnMsg += "'%s'. Download from %s " % (dbmsName , data [2 ])
52+ warnMsg += "'%s'. Download from '%s' " % (dbmsName , data [2 ])
5353 logger .warn (warnMsg )
5454 missing_libraries .add (data [1 ])
5555
@@ -65,7 +65,7 @@ def checkDependencies():
6565 except ImportError :
6666 warnMsg = "sqlmap requires 'python-impacket' third-party library for "
6767 warnMsg += "out-of-band takeover feature. Download from "
68- warnMsg += "http://code.google.com/p/impacket/"
68+ warnMsg += "' http://code.google.com/p/impacket/' "
6969 logger .warn (warnMsg )
7070 missing_libraries .add ('python-impacket' )
7171
@@ -76,7 +76,7 @@ def checkDependencies():
7676 except ImportError :
7777 warnMsg = "sqlmap requires 'python-ntlm' third-party library "
7878 warnMsg += "if you plan to attack a web application behind NTLM "
79- warnMsg += "authentication. Download from http://code.google.com/p/python-ntlm/"
79+ warnMsg += "authentication. Download from ' http://code.google.com/p/python-ntlm/' "
8080 logger .warn (warnMsg )
8181 missing_libraries .add ('python-ntlm' )
8282
@@ -87,7 +87,7 @@ def checkDependencies():
8787 except ImportError :
8888 warnMsg = "sqlmap requires 'websocket-client' third-party library "
8989 warnMsg += "if you plan to attack a web application using WebSocket. "
90- warnMsg += "Download from https://pypi.python.org/pypi/websocket-client/"
90+ warnMsg += "Download from ' https://pypi.python.org/pypi/websocket-client/' "
9191 logger .warn (warnMsg )
9292 missing_libraries .add ('websocket-client' )
9393
@@ -101,7 +101,7 @@ def checkDependencies():
101101 warnMsg += "be able to take advantage of the sqlmap TAB "
102102 warnMsg += "completion and history support features in the SQL "
103103 warnMsg += "shell and OS shell. Download from "
104- warnMsg += "http://ipython.scipy.org/moin/PyReadline/Intro"
104+ warnMsg += "' http://ipython.scipy.org/moin/PyReadline/Intro' "
105105 logger .warn (warnMsg )
106106 missing_libraries .add ('python-pyreadline' )
107107
0 commit comments