mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-07-11 19:13:12 +00:00
bug fix (reported by ToR)
This commit is contained in:
parent
f3fe19c4e5
commit
96d88877ba
3 changed files with 13 additions and 10 deletions
|
|
@ -308,9 +308,6 @@ def start():
|
|||
checkForParenthesis()
|
||||
action()
|
||||
|
||||
except sqlmapSilentQuitException:
|
||||
raise
|
||||
|
||||
except KeyboardInterrupt:
|
||||
if conf.multipleTargets:
|
||||
warnMsg = "Ctrl+C detected in multiple target mode"
|
||||
|
|
@ -331,6 +328,9 @@ def start():
|
|||
except sqlmapUserQuitException:
|
||||
raise
|
||||
|
||||
except sqlmapSilentQuitException:
|
||||
raise
|
||||
|
||||
except exceptionsTuple, e:
|
||||
e = getUnicode(e)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue