Merge pull request #201 from FafnerKeyZee/patch-4

solving tor proxy for only_global_lookups
pull/203/head
Raphaël Vinot 2021-05-05 10:50:29 +02:00 committed by GitHub
commit 318cc7cf9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 7 deletions

View File

@ -777,13 +777,14 @@ 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:
try: if splitted_url.hostname.split('.')[-1] != 'onion':
ip = socket.gethostbyname(splitted_url.hostname) try:
except socket.gaierror: ip = socket.gethostbyname(splitted_url.hostname)
self.logger.info('Name or service not known') except socket.gaierror:
return False self.logger.info('Name or service not known')
if not ipaddress.ip_address(ip).is_global: return False
return False if not ipaddress.ip_address(ip).is_global:
return False
else: else:
return False return False