Fixes #178 and #179 - proper handling of custom redirects

This commit is contained in:
Bernardo Damele
2010-03-16 14:30:57 +00:00
parent 3b3353e05b
commit 466df89c4a
4 changed files with 28 additions and 17 deletions

View File

@@ -237,7 +237,6 @@ def start():
else:
raise sqlmapNotVulnerableException, "all parameters are not injectable"
return
if injDataSelected == "Quit":
return
@@ -246,7 +245,7 @@ def start():
kb.injPlace, kb.injParameter, kb.injType = injDataSelected
setInjection()
elif kb.injPlace and kb.injParameter and kb.injType:
if kb.injPlace and kb.injParameter and kb.injType:
if conf.multipleTargets:
message = "do you want to exploit this SQL injection? [Y/n] "
exploit = readInput(message, default="Y")