Skip to content

Commit

Permalink
Added https:// to netcraft URL
Browse files Browse the repository at this point in the history
Changed http:// to https:// in searchdns.netcraft.com URL.
  • Loading branch information
aboul3la authored Mar 24, 2017
2 parents a3653c3 + f8398ec commit 879a939
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sublist3r.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 879a939

Please sign in to comment.