mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-01-24 08:14:24 +03:00
minor fix
This commit is contained in:
parent
44435adc4a
commit
9bc9302e58
|
@ -303,6 +303,7 @@ def start():
|
||||||
raise
|
raise
|
||||||
|
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
|
if conf.multipleTargets:
|
||||||
warnMsg = "Ctrl+C detected"
|
warnMsg = "Ctrl+C detected"
|
||||||
logger.warn(warnMsg)
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
|
@ -315,6 +316,8 @@ def start():
|
||||||
return False
|
return False
|
||||||
elif test[0] in ("q", "Q"):
|
elif test[0] in ("q", "Q"):
|
||||||
raise sqlmapUserQuitException
|
raise sqlmapUserQuitException
|
||||||
|
else:
|
||||||
|
raise
|
||||||
|
|
||||||
except sqlmapUserQuitException:
|
except sqlmapUserQuitException:
|
||||||
raise
|
raise
|
||||||
|
|
Loading…
Reference in New Issue
Block a user