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

Skip to content

Commit b748e6e

Browse files
committed
minor update
1 parent 73b7725 commit b748e6e

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

lib/controller/checks.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -245,13 +245,14 @@ def checkStability():
245245

246246
elif not condition:
247247
warnMsg = "url is not stable, sqlmap will base the page "
248-
warnMsg += "comparison on a sequence matcher, if no dynamic nor "
249-
warnMsg += "injectable parameters are detected, refer to user's "
248+
warnMsg += "comparison on a sequence matcher. if no dynamic nor "
249+
warnMsg += "injectable parameters are detected, or in case of junk "
250+
warnMsg += "results, refer to user's "
250251
warnMsg += "manual paragraph 'Page comparison' and provide a "
251252
warnMsg += "string or regular expression to match on"
252253
logger.warn(warnMsg)
253254

254-
message = "do you want to continue? [Y/n] "
255+
message = "do you still want to continue (possible BAD results)? [Y/n] "
255256
test = readInput(message, default="Y")
256257
if test and test[0] not in ("y", "Y"):
257258
raise sqlmapUserQuitException

0 commit comments

Comments
 (0)