mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-08 05:31:32 +00:00
Fixes #1497
This commit is contained in:
@@ -3561,7 +3561,7 @@ def findPageForms(content, url, raise_=False, addToTargets=False):
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
forms = ParseResponse(response, backwards_compat=False)
|
forms = ParseResponse(response, backwards_compat=False)
|
||||||
except UnicodeError:
|
except (UnicodeError, ValueError):
|
||||||
pass
|
pass
|
||||||
except ParseError:
|
except ParseError:
|
||||||
if "<html" in (content or ""):
|
if "<html" in (content or ""):
|
||||||
|
|||||||
Reference in New Issue
Block a user