mirror of
https://github.com/laramies/theHarvester.git
synced 2025-02-24 22:42:56 +08:00
Fix search_engine copy paste error
This commit is contained in:
parent
5fa55a8c91
commit
feca9e79c9
1 changed files with 2 additions and 2 deletions
|
@ -103,7 +103,7 @@ def store(search_engine: Any, source: str, process_param: Any = None, store_host
|
||||||
all_ip.extend(ips_list)
|
all_ip.extend(ips_list)
|
||||||
db_stash.store_all(word, ips, 'ip', source)
|
db_stash.store_all(word, ips, 'ip', source)
|
||||||
if store_data:
|
if store_data:
|
||||||
data = filter(crtsh_search.get_data())
|
data = filter(search_engine.get_data())
|
||||||
all_hosts.extend(data)
|
all_hosts.extend(data)
|
||||||
db.store_all(word, all_hosts, 'host', source)
|
db.store_all(word, all_hosts, 'host', source)
|
||||||
if store_results:
|
if store_results:
|
||||||
|
@ -125,7 +125,7 @@ def store(search_engine: Any, source: str, process_param: Any = None, store_host
|
||||||
for usr in sorted(list(set(people_list))):
|
for usr in sorted(list(set(people_list))):
|
||||||
print(usr)
|
print(usr)
|
||||||
if store_links:
|
if store_links:
|
||||||
links = linkedin_links_search.get_links()
|
links = search_engine.get_links()
|
||||||
db.store_all(word, links, 'name', 'linkedin')
|
db.store_all(word, links, 'name', 'linkedin')
|
||||||
if len(links) == 0:
|
if len(links) == 0:
|
||||||
print('\n[*] No links found Linkedin.\n\n')
|
print('\n[*] No links found Linkedin.\n\n')
|
||||||
|
|
Loading…
Reference in a new issue