mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-07-15 02:32:31 +03:00
minor change in workflow
This commit is contained in:
parent
96f589fc89
commit
2604e73d88
|
@ -472,10 +472,10 @@ def start():
|
||||||
break
|
break
|
||||||
|
|
||||||
msg = "%s parameter '%s' " % (injection.place, injection.parameter)
|
msg = "%s parameter '%s' " % (injection.place, injection.parameter)
|
||||||
msg += "is vulnerable. Do you want to keep testing the others (if any)? [Y/n] "
|
msg += "is vulnerable. Do you want to keep testing the others (if any)? [y/N] "
|
||||||
test = readInput(msg, default="Y")
|
test = readInput(msg, default="N")
|
||||||
|
|
||||||
if test[0] in ("n", "N"):
|
if test[0] not in ("y", "Y"):
|
||||||
proceed = False
|
proceed = False
|
||||||
paramKey = (conf.hostname, conf.path, None, None)
|
paramKey = (conf.hostname, conf.path, None, None)
|
||||||
kb.testedParams.add(paramKey)
|
kb.testedParams.add(paramKey)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user