mirror of
https://github.com/laramies/theHarvester.git
synced 2025-02-25 06:53:05 +08:00
Removed improper filtering of trello urls.
This commit is contained in:
parent
2391da0777
commit
9cb517b676
1 changed files with 2 additions and 2 deletions
|
@ -387,7 +387,7 @@ def start(argv):
|
|||
all_emails.extend(emails)
|
||||
info = search.get_urls()
|
||||
hosts = filter(info[0])
|
||||
trello_info = (filter(info[1]), True)
|
||||
trello_info = (info[1], True)
|
||||
all_hosts.extend(hosts)
|
||||
db = stash.stash_manager()
|
||||
db.store_all(word, hosts, 'host', 'trello')
|
||||
|
@ -570,7 +570,7 @@ def start(argv):
|
|||
all_emails.extend(emails)
|
||||
info = search.get_urls()
|
||||
hosts = filter(info[0])
|
||||
trello_info = (filter(info[1]), True)
|
||||
trello_info = (info[1], True)
|
||||
all_hosts.extend(hosts)
|
||||
db = stash.stash_manager()
|
||||
db.store_all(word, hosts, 'host', 'trello')
|
||||
|
|
Loading…
Reference in a new issue