Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7314de3

Browse files
committed
language update
1 parent ad27621 commit 7314de3

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/controller/controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ def start():
491491

492492
if len(kb.injections) == 0 or (len(kb.injections) == 1 and kb.injections[0].place is None):
493493
if kb.vainRun and not conf.multipleTargets:
494-
errMsg = "no testable parameter(s) found in the provided data "
494+
errMsg = "no parameter(s) found for testing in the provided data "
495495
errMsg += "(e.g. GET parameter 'id' in 'www.site.com/index.php?id=1')"
496496
raise sqlmapNoneDataException, errMsg
497497
elif not conf.realTest:

lib/core/option.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1502,7 +1502,7 @@ def __useWizardInterface():
15021502
if filter(lambda x: '=' in str(x), [conf.url, conf.data]) or '*' in conf.url:
15031503
break
15041504
else:
1505-
warnMsg = "no testable GET and/or POST parameter(s) found "
1505+
warnMsg = "no GET and/or POST parameter(s) found for testing "
15061506
warnMsg += "(e.g. GET parameter 'id' in 'www.site.com/index.php?id=1')"
15071507
logger.critical(warnMsg)
15081508

0 commit comments

Comments
 (0)