mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
bug fix
This commit is contained in:
parent
d6062e8fc9
commit
e8ac7414f2
1 changed files with 1 additions and 1 deletions
|
|
@ -96,7 +96,7 @@ class Crawler:
|
|||
logger.info("searching for links with depth %d" % (i + 1))
|
||||
runThreads(numThreads, crawlThread)
|
||||
clearConsoleLine(True)
|
||||
threadData.shared.unprocessed = threadData.shared.deeper
|
||||
threadData.shared.unprocessed = set(threadData.shared.deeper)
|
||||
|
||||
except KeyboardInterrupt:
|
||||
warnMsg = "user aborted during crawling. sqlmap "
|
||||
|
|
|
|||
Loading…
Reference in a new issue