mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 04:31:30 +00:00
Fixes #1726
This commit is contained in:
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
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user