diff --git a/lib/controller/checks.py b/lib/controller/checks.py index 7145b2f2e..06a07917d 100644 --- a/lib/controller/checks.py +++ b/lib/controller/checks.py @@ -1000,7 +1000,7 @@ def checkConnection(suppressOutput=False): errMsg = "unable to retrieve page content" raise sqlmapConnectionException, errMsg elif wasLastRequestDBMSError(): - warnMsg = "there is a DBMS error found in the HTTP response body" + warnMsg = "there is a DBMS error found in the HTTP response body " warnMsg += "which could interfere with the results of the tests" logger.warn(warnMsg) elif wasLastRequestHTTPError(): diff --git a/lib/takeover/abstraction.py b/lib/takeover/abstraction.py index cabef6928..28478c24b 100644 --- a/lib/takeover/abstraction.py +++ b/lib/takeover/abstraction.py @@ -187,7 +187,7 @@ class Abstraction(Web, UDF, xp_cmdshell): warnMsg += "the curent session user is not a database administrator" if not conf.dCred and Backend.getIdentifiedDbms() in ( DBMS.MSSQL, DBMS.PGSQL ): - warnMsg += ". You can try to to use option '--dbms-cred' " + warnMsg += ". You can try to use option '--dbms-cred' " warnMsg += "to execute statements as a DBA user if you " warnMsg += "were able to extract and crack a DBA " warnMsg += "password by any mean"