From 55624ec1a2ff02a9bd6ab225e003ed37885eaed2 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Mon, 30 May 2016 14:40:22 +0200 Subject: [PATCH] Minor message update --- lib/controller/checks.py | 2 +- lib/core/settings.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/controller/checks.py b/lib/controller/checks.py index acace219a..37abd9fa8 100644 --- a/lib/controller/checks.py +++ b/lib/controller/checks.py @@ -550,7 +550,7 @@ def checkSqlInjection(place, parameter, value): warnMsg = "using unescaped version of the test " warnMsg += "because of zero knowledge of the " warnMsg += "back-end DBMS. You can try to " - warnMsg += "explicitly set it using option '--dbms'" + warnMsg += "explicitly set it with option '--dbms'" singleTimeWarnMessage(warnMsg) else: Backend.forceDbms(kb.heuristicDbms) diff --git a/lib/core/settings.py b/lib/core/settings.py index 7807fbe19..a506f653e 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -19,7 +19,7 @@ from lib.core.enums import OS from lib.core.revision import getRevisionNumber # sqlmap version (...) -VERSION = "1.0.5.107" +VERSION = "1.0.5.108" REVISION = getRevisionNumber() STABLE = VERSION.count('.') <= 2 VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")