From 576d81aa4955203d82ce30b40d3c61592ad28baf Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Wed, 21 Aug 2019 15:19:42 +0200 Subject: [PATCH] Minor log message update --- lib/core/settings.py | 2 +- lib/request/connect.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/core/settings.py b/lib/core/settings.py index 4233419d6..912286bd4 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -18,7 +18,7 @@ from lib.core.enums import OS from thirdparty.six import unichr as _unichr # sqlmap version (...) -VERSION = "1.3.8.16" +VERSION = "1.3.8.17" TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable" TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34} VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE) diff --git a/lib/request/connect.py b/lib/request/connect.py index 25990a18d..ff0bb17c7 100644 --- a/lib/request/connect.py +++ b/lib/request/connect.py @@ -759,8 +759,7 @@ class Connect(object): if kb.connErrorCounter >= MAX_CONSECUTIVE_CONNECTION_ERRORS and kb.connErrorChoice is None: message = "there seems to be a continuous problem with connection to the target. " - message += "Are you sure that you want to continue " - message += "with further target testing? [y/N] " + message += "Are you sure that you want to continue? [y/N] " kb.connErrorChoice = readInput(message, default='N', boolean=True)