mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-07-01 02:13:14 +03:00
Fixes #1726
This commit is contained in:
parent
c99e974be2
commit
256b1988b9
6
thirdparty/clientform/clientform.py
vendored
6
thirdparty/clientform/clientform.py
vendored
|
@ -1139,7 +1139,11 @@ def _ParseFileEx(file, base_uri,
|
||||||
type, name, attrs, select_default=select_default, index=ii*10)
|
type, name, attrs, select_default=select_default, index=ii*10)
|
||||||
forms.append(form)
|
forms.append(form)
|
||||||
for form in forms:
|
for form in forms:
|
||||||
form.fixup()
|
try:
|
||||||
|
form.fixup()
|
||||||
|
except AttributeError, ex:
|
||||||
|
if "item is disabled" not in str(ex):
|
||||||
|
raise
|
||||||
return forms
|
return forms
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user