|
98 | 98 | from lib.core.settings import FORCE_COOKIE_EXPIRATION_TIME |
99 | 99 | from lib.core.settings import FORM_SEARCH_REGEX |
100 | 100 | from lib.core.settings import GENERIC_DOC_ROOT_DIRECTORY_NAMES |
| 101 | +from lib.core.settings import GIT_PAGE |
101 | 102 | from lib.core.settings import GOOGLE_ANALYTICS_COOKIE_PREFIX |
102 | 103 | from lib.core.settings import HASHDB_MILESTONE_VALUE |
103 | 104 | from lib.core.settings import HOST_ALIASES |
@@ -2828,13 +2829,14 @@ def unhandledExceptionMessage(): |
2828 | 2829 | Returns detailed message about occurred unhandled exception |
2829 | 2830 | """ |
2830 | 2831 |
|
2831 | | - errMsg = "unhandled exception in %s, retry your " % VERSION_STRING |
2832 | | - errMsg += "run with the latest development version from the GitHub " |
2833 | | - errMsg += "repository. If the exception persists, please send by e-mail " |
2834 | | - errMsg += "to '%s' or open a new issue at '%s' with the following text " % (ML, ISSUES_PAGE) |
2835 | | - errMsg += "and any information required to reproduce the bug. The " |
| 2832 | + errMsg = "unhandled exception occurred in %s. It is recommended to retry your " % VERSION_STRING |
| 2833 | + errMsg += "run with the latest development version from official GitHub " |
| 2834 | + errMsg += "repository at '%s'. If the exception persists, please open a new issue " % GIT_PAGE |
| 2835 | + errMsg += "at '%s' (or less preferably send by e-mail to '%s') " % (ISSUES_PAGE, ML) |
| 2836 | + errMsg += "with the following text and any other information required to " |
| 2837 | + errMsg += "reproduce the bug. The " |
2836 | 2838 | errMsg += "developers will try to reproduce the bug, fix it accordingly " |
2837 | | - errMsg += "and get back to you.\n" |
| 2839 | + errMsg += "and get back to you\n" |
2838 | 2840 | errMsg += "sqlmap version: %s%s\n" % (VERSION, "-%s" % REVISION if REVISION else "") |
2839 | 2841 | errMsg += "Python version: %s\n" % PYVERSION |
2840 | 2842 | errMsg += "Operating system: %s\n" % PLATFORM |
|
0 commit comments