diff --git a/theHarvester.py b/theHarvester.py index 5bb2e9a2..1aa9cb57 100755 --- a/theHarvester.py +++ b/theHarvester.py @@ -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')