mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Implements #1215
This commit is contained in:
parent
26bec7219d
commit
1e7f2d6da2
5 changed files with 23 additions and 1 deletions
|
|
@ -48,6 +48,10 @@ def crawl(target):
|
|||
current = threadData.shared.unprocessed.pop()
|
||||
if current in visited:
|
||||
continue
|
||||
elif conf.crawlExclude and re.search(conf.crawlExclude, current):
|
||||
dbgMsg = "skipping '%s'" % current
|
||||
logger.debug(dbgMsg)
|
||||
continue
|
||||
else:
|
||||
visited.add(current)
|
||||
else:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue