mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-08 01:13:17 +01:00
Patch for an Issue #1011
This commit is contained in:
parent
10ed97b0df
commit
763f720675
1 changed files with 2 additions and 0 deletions
|
|
@ -1263,6 +1263,8 @@ def parseTargetUrl():
|
||||||
|
|
||||||
try:
|
try:
|
||||||
_ = conf.hostname.encode("idna")
|
_ = conf.hostname.encode("idna")
|
||||||
|
except LookupError:
|
||||||
|
_ = conf.hostname
|
||||||
except UnicodeError:
|
except UnicodeError:
|
||||||
_ = None
|
_ = None
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue