Merge branch 'master' of github.com:CIRCL/lookyloo

pull/69/head
Raphaël Vinot 2020-03-18 00:01:07 +01:00
commit 99a97d4d56
1 changed files with 5 additions and 1 deletions

View File

@ -191,7 +191,11 @@ class Lookyloo():
splitted_url = urlsplit(url)
if splitted_url.netloc:
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:
return False
else: