mirror of https://github.com/CIRCL/lookyloo
Merge branch 'master' of github.com:CIRCL/lookyloo
commit
99a97d4d56
|
@ -191,7 +191,11 @@ class Lookyloo():
|
||||||
splitted_url = urlsplit(url)
|
splitted_url = urlsplit(url)
|
||||||
if splitted_url.netloc:
|
if splitted_url.netloc:
|
||||||
if splitted_url.hostname:
|
if splitted_url.hostname:
|
||||||
ip = socket.gethostbyname(splitted_url.hostname)
|
try:
|
||||||
|
ip = socket.gethostbyname(splitted_url.hostname)
|
||||||
|
except socket.gaierror:
|
||||||
|
self.logger.info(f'Name or service not known')
|
||||||
|
return False
|
||||||
if not ipaddress.ip_address(ip).is_global:
|
if not ipaddress.ip_address(ip).is_global:
|
||||||
return False
|
return False
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue