From a78502c5ec19703d3e390a0456c217c40477c9d7 Mon Sep 17 00:00:00 2001 From: Bobbi Webber-Manners Date: Fri, 19 Jun 2020 01:19:27 -0400 Subject: [PATCH] Added gs and click TLDs --- dehttps-proxy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dehttps-proxy.py b/dehttps-proxy.py index 205c85a..ee4defc 100755 --- a/dehttps-proxy.py +++ b/dehttps-proxy.py @@ -16,10 +16,10 @@ import requests, sys baseurl = '' -PORT = 8001 +PORT = 80 def isFullyQualified(name): - tlds = [ '.com', '.org', '.net', '.gov', '.ca', '.io', '.uk'] + tlds = [ '.com', '.org', '.net', '.gov', '.ca', '.uk', '.io', '.gs', '.click' ] for t in tlds: if name.endswith(t): return True