diff --git a/lib/controller/checks.py b/lib/controller/checks.py index 8c4761d1d..9cd6f2816 100644 --- a/lib/controller/checks.py +++ b/lib/controller/checks.py @@ -594,7 +594,10 @@ def checkStability(): logger.warn(warnMsg) message = "how do you want to proceed? [C(ontinue)/s(tring)/r(egex)/q(uit)] " - test = readInput(message, default="C") + if not conf.scriptKiddie: + test = readInput(message, default="C") + else: + test = None if test and test[0] in ("q", "Q"): raise sqlmapUserQuitException diff --git a/lib/controller/controller.py b/lib/controller/controller.py index e837e40e5..6f7b5e81d 100644 --- a/lib/controller/controller.py +++ b/lib/controller/controller.py @@ -226,7 +226,7 @@ def start(): elif test[0] in ("q", "Q"): break - else: + elif not conf.scriptKiddie: message += "\ndo you want to test this url? [Y/n/q]" test = readInput(message, default="Y")