mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
Minor fix
This commit is contained in:
parent
a585aa4bff
commit
4f58e0af0c
|
@ -3277,7 +3277,7 @@ def findPageForms(content, url, raise_=False, addToTargets=False):
|
|||
for form in forms:
|
||||
try:
|
||||
for control in form.controls:
|
||||
if hasattr(control, "items"):
|
||||
if hasattr(control, "items") and not control.disabled:
|
||||
# if control has selectable items select first non-disabled
|
||||
for item in control.items:
|
||||
if not item.disabled:
|
||||
|
|
Loading…
Reference in New Issue
Block a user