mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
Fixes #1497
This commit is contained in:
parent
0b64cf803c
commit
04aaa5985b
1 changed files with 1 additions and 1 deletions
|
|
@ -3561,7 +3561,7 @@ def findPageForms(content, url, raise_=False, addToTargets=False):
|
|||
|
||||
try:
|
||||
forms = ParseResponse(response, backwards_compat=False)
|
||||
except UnicodeError:
|
||||
except (UnicodeError, ValueError):
|
||||
pass
|
||||
except ParseError:
|
||||
if "<html" in (content or ""):
|
||||
|
|
|
|||
Loading…
Reference in a new issue