mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
Fixes #177 - Don't exit at exception if in "multiple targets" mode (-l or -g)
This commit is contained in:
@@ -72,11 +72,10 @@ def main():
|
||||
|
||||
try:
|
||||
init(cmdLineOptions)
|
||||
|
||||
if conf.start:
|
||||
start()
|
||||
start()
|
||||
|
||||
except exceptionsTuple, e:
|
||||
e = str(e)
|
||||
logger.error(e)
|
||||
|
||||
except KeyboardInterrupt:
|
||||
@@ -90,6 +89,7 @@ def main():
|
||||
logger.error(errMsg)
|
||||
|
||||
except:
|
||||
print
|
||||
errMsg = unhandledException()
|
||||
logger.error(errMsg)
|
||||
traceback.print_exc()
|
||||
|
||||
Reference in New Issue
Block a user