diff --git a/lib/controller/action.py b/lib/controller/action.py index 151086737..2bf8c57c2 100644 --- a/lib/controller/action.py +++ b/lib/controller/action.py @@ -46,8 +46,8 @@ def action(): errMsg += ". Do not specify the back-end DBMS manually, " errMsg += "sqlmap will fingerprint the DBMS for you" else: - errMsg += ". Support for this DBMS will be implemented if " - errMsg += "you ask, just drop us an email" + errMsg += ". Support for this DBMS will be implemented at " + errMsg += "some point" raise sqlmapUnsupportedDBMSException, errMsg diff --git a/lib/core/exception.py b/lib/core/exception.py index 0b93ab4d9..1d31d2df7 100644 --- a/lib/core/exception.py +++ b/lib/core/exception.py @@ -68,10 +68,14 @@ class sqlmapValueException(Exception): pass def unhandledException(): - errMsg = "unhandled exception in %s, please copy " % VERSION_STRING - errMsg += "the command line and the following text and send by e-mail " - errMsg += "to sqlmap-users@lists.sourceforge.net. The developers will " - errMsg += "fix it as soon as possible:\nsqlmap version: %s\n" % VERSION + errMsg = "unhandled exception in %s, retry your " % VERSION_STRING + errMsg += "run with the latest development version from the Subversion " + errMsg += "repository. If the exception persists, please send by e-mail " + errMsg += "to sqlmap-users@lists.sourceforge.net the command line, the " + errMsg += "following text and any information needed to reproduce the " + errMsg += "bug. The developers will try to reproduce the bug, fix it " + errMsg += "accordingly and get back to you.\n" + errMsg += "sqlmap version: %s\n" % VERSION errMsg += "Python version: %s\n" % PYVERSION errMsg += "Operating system: %s" % PLATFORM return errMsg