mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-03-03 19:55:47 +03:00
minor update
This commit is contained in:
parent
73b77255e3
commit
b748e6ea44
|
@ -245,13 +245,14 @@ def checkStability():
|
||||||
|
|
||||||
elif not condition:
|
elif not condition:
|
||||||
warnMsg = "url is not stable, sqlmap will base the page "
|
warnMsg = "url is not stable, sqlmap will base the page "
|
||||||
warnMsg += "comparison on a sequence matcher, if no dynamic nor "
|
warnMsg += "comparison on a sequence matcher. if no dynamic nor "
|
||||||
warnMsg += "injectable parameters are detected, refer to user's "
|
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 += "manual paragraph 'Page comparison' and provide a "
|
||||||
warnMsg += "string or regular expression to match on"
|
warnMsg += "string or regular expression to match on"
|
||||||
logger.warn(warnMsg)
|
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")
|
test = readInput(message, default="Y")
|
||||||
if test and test[0] not in ("y", "Y"):
|
if test and test[0] not in ("y", "Y"):
|
||||||
raise sqlmapUserQuitException
|
raise sqlmapUserQuitException
|
||||||
|
|
Loading…
Reference in New Issue
Block a user