mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Fixes #3286
This commit is contained in:
parent
880d438418
commit
6af127cb64
4 changed files with 12 additions and 12 deletions
|
|
@ -92,7 +92,7 @@ def exceptionHandledFunction(threadFunction, silent=False):
|
|||
kb.threadException = True
|
||||
raise
|
||||
except Exception, ex:
|
||||
if not silent:
|
||||
if not silent and kb.get("threadContinue"):
|
||||
logger.error("thread %s: %s" % (threading.currentThread().getName(), ex.message))
|
||||
|
||||
if conf.get("verbose") > 1:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue