From 7314de349088ac3498ee29ea29c92a58e4bf6e14 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Tue, 15 Nov 2011 11:17:39 +0000 Subject: [PATCH] language update --- lib/controller/controller.py | 2 +- lib/core/option.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/controller/controller.py b/lib/controller/controller.py index b7b492ad4..1b2c0c422 100644 --- a/lib/controller/controller.py +++ b/lib/controller/controller.py @@ -491,7 +491,7 @@ def start(): if len(kb.injections) == 0 or (len(kb.injections) == 1 and kb.injections[0].place is None): if kb.vainRun and not conf.multipleTargets: - errMsg = "no testable parameter(s) found in the provided data " + errMsg = "no parameter(s) found for testing in the provided data " errMsg += "(e.g. GET parameter 'id' in 'www.site.com/index.php?id=1')" raise sqlmapNoneDataException, errMsg elif not conf.realTest: diff --git a/lib/core/option.py b/lib/core/option.py index cf23ad1e8..6a0ff5b39 100644 --- a/lib/core/option.py +++ b/lib/core/option.py @@ -1502,7 +1502,7 @@ def __useWizardInterface(): if filter(lambda x: '=' in str(x), [conf.url, conf.data]) or '*' in conf.url: break else: - warnMsg = "no testable GET and/or POST parameter(s) found " + warnMsg = "no GET and/or POST parameter(s) found for testing " warnMsg += "(e.g. GET parameter 'id' in 'www.site.com/index.php?id=1')" logger.critical(warnMsg)