From 291a0d772a70cf5b5065b0b16779216c85992644 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Thu, 27 Feb 2014 14:23:14 +0100 Subject: [PATCH] Update for an Issue #615 --- lib/core/common.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/lib/core/common.py b/lib/core/common.py index bfd0e2713..ebdb5e165 100755 --- a/lib/core/common.py +++ b/lib/core/common.py @@ -295,10 +295,14 @@ class Backend: # Little precaution, in theory this condition should always be false elif kb.dbms is not None and kb.dbms != dbms: - msg = "sqlmap previously fingerprinted back-end DBMS " + warnMsg = "there seems to be a high probability that " + warnMsg += "this could be a false positive case" + logger.warn(warnMsg) + + msg = "sqlmap previously fingerprinted back-end DBMS as " msg += "%s. However now it has been fingerprinted " % kb.dbms - msg += "to be %s. " % dbms - msg += "Please, specify which DBMS is " + msg += "as %s. " % dbms + msg += "Please, specify which DBMS should be " msg += "correct [%s (default)/%s] " % (kb.dbms, dbms) while True: