diff --git a/discovery/virustotal.py b/discovery/virustotal.py index d5063ac4..832d7362 100644 --- a/discovery/virustotal.py +++ b/discovery/virustotal.py @@ -3,7 +3,7 @@ import requests -class search_virustotal: +class SearchVirustotal: def __init__(self, word): self.word = word.replace(' ', '%20') diff --git a/theHarvester.py b/theHarvester.py index 0dd134dc..0cfb21e5 100755 --- a/theHarvester.py +++ b/theHarvester.py @@ -382,7 +382,7 @@ def start(): elif engineitem == 'virustotal': print('\033[94m[*] Searching VirusTotal. \033[0m') - search = virustotal.search_virustotal(word) + search = virustotal.SearchVirustotal(word) search.process() hosts = filter(search.get_hostnames()) all_hosts.extend(hosts) @@ -678,7 +678,7 @@ def start(): vhost = sorted(set(vhost)) print('\033[94m[*] Searching VirusTotal. \033[0m') - search = virustotal.search_virustotal(word) + search = virustotal.SearchVirustotal(word) search.process() hosts = filter(search.get_hostnames()) all_hosts.extend(hosts)