mirror of
https://github.com/laramies/theHarvester.git
synced 2024-11-10 17:13:07 +08:00
Update discovery/huntersearch.py
This commit is contained in:
parent
a2c97e9fc4
commit
d26ce55733
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ def __init__(self, word, limit, start):
|
|||
self.results = ""
|
||||
self.totalresults = ""
|
||||
self.counter = start
|
||||
self.database = "https://api.hunter.io/v2/domain-search?domain=" + word + "&api_key=" + self.key +"&limit="+self.limit
|
||||
self.database = "https://api.hunter.io/v2/domain-search?domain=" + word + "&api_key=" + self.key +"&limit=" + str(self.limit)
|
||||
|
||||
def do_search(self):
|
||||
try:
|
||||
|
|
Loading…
Reference in a new issue