diff --git a/sublist3r.py b/sublist3r.py index 17d533b..e818716 100644 --- a/sublist3r.py +++ b/sublist3r.py @@ -514,7 +514,7 @@ def generate_query(self): class NetcraftEnum(enumratorBaseThreaded): def __init__(self, domain, subdomains=None, q=None, silent=False, verbose=True): subdomains = subdomains or [] - self.base_url = 'http://searchdns.netcraft.com/?restriction=site+ends+with&host={domain}' + self.base_url = 'https://searchdns.netcraft.com/?restriction=site+ends+with&host={domain}' self.engine_name = "Netcraft" self.lock = threading.Lock() super(NetcraftEnum, self).__init__(self.base_url, self.engine_name, domain, subdomains, q=q, silent=silent, verbose=verbose)