mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 01:26:42 +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)
|
||||
forms.append(form)
|
||||
for form in forms:
|
||||
form.fixup()
|
||||
try:
|
||||
form.fixup()
|
||||
except AttributeError, ex:
|
||||
if "item is disabled" not in str(ex):
|
||||
raise
|
||||
return forms
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user