From b748e6ea44d71a1792684cdca8d90e07b0930d7a Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Tue, 12 Oct 2010 12:52:06 +0000 Subject: [PATCH] minor update --- lib/controller/checks.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/controller/checks.py b/lib/controller/checks.py index 4a720ed5c..8f2beee05 100644 --- a/lib/controller/checks.py +++ b/lib/controller/checks.py @@ -245,13 +245,14 @@ def checkStability(): elif not condition: warnMsg = "url is not stable, sqlmap will base the page " - warnMsg += "comparison on a sequence matcher, if no dynamic nor " - warnMsg += "injectable parameters are detected, refer to user's " + warnMsg += "comparison on a sequence matcher. if no dynamic nor " + warnMsg += "injectable parameters are detected, or in case of junk " + warnMsg += "results, refer to user's " warnMsg += "manual paragraph 'Page comparison' and provide a " warnMsg += "string or regular expression to match on" logger.warn(warnMsg) - message = "do you want to continue? [Y/n] " + message = "do you still want to continue (possible BAD results)? [Y/n] " test = readInput(message, default="Y") if test and test[0] not in ("y", "Y"): raise sqlmapUserQuitException