This commit is contained in:
Alexander Georgievskiy 2017-03-21 16:06:17 +03:00 committed by GitHub
parent a3653c3e90
commit f8398ecaa5
1 changed files with 1 additions and 1 deletions

View File

@ -514,7 +514,7 @@ class BaiduEnum(enumratorBaseThreaded):
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)