mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Fixes #2031
This commit is contained in:
parent
3e22cbfed7
commit
1ca633ae64
3 changed files with 4 additions and 4 deletions
2
thirdparty/clientform/clientform.py
vendored
2
thirdparty/clientform/clientform.py
vendored
|
|
@ -1142,7 +1142,7 @@ def _ParseFileEx(file, base_uri,
|
|||
try:
|
||||
form.fixup()
|
||||
except AttributeError, ex:
|
||||
if "item is disabled" not in str(ex):
|
||||
if not any(_ in str(ex) for _ in ("item is disabled", "is readonly")):
|
||||
raise
|
||||
return forms
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue