Added https:// to netcraft URL

Changed http:// to https:// in searchdns.netcraft.com URL.
This commit is contained in:
Ahmed Aboul-Ela 2017-03-24 09:14:10 +04:00 committed by GitHub
commit 879a939d40
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)