Don't try to contact onion services

outbox-fts
Thomas Sileo 2022-09-29 09:16:35 +02:00
rodzic 57fc5ef913
commit 58b383ba4e
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -58,6 +58,10 @@ def is_url_valid(url: str) -> bool:
logger.warning(f"{parsed.hostname} is blocked")
return False
if parsed.hostname.endswith(".onion"):
logger.warning(f"{url} is an onion service")
return False
ip_address = _getaddrinfo(
parsed.hostname, parsed.port or (80 if parsed.scheme == "http" else 443)
)