mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Fixes #2273
This commit is contained in:
parent
d4414e6631
commit
ea961678ee
3 changed files with 8 additions and 3 deletions
|
|
@ -3786,6 +3786,11 @@ def findPageForms(content, url, raise_=False, addToTargets=False):
|
|||
item.selected = True
|
||||
break
|
||||
|
||||
if conf.crawlExclude and re.search(conf.crawlExclude, form.action or ""):
|
||||
dbgMsg = "skipping '%s'" % form.action
|
||||
logger.debug(dbgMsg)
|
||||
continue
|
||||
|
||||
request = form.click()
|
||||
except (ValueError, TypeError), ex:
|
||||
errMsg = "there has been a problem while "
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue