This commit is contained in:
L1ghtn1ng 2019-02-09 23:41:42 +00:00
parent 4c2054a8d8
commit 9cad6a5392
2 changed files with 3 additions and 3 deletions

View file

@ -3,7 +3,7 @@
import requests
class search_virustotal:
class SearchVirustotal:
def __init__(self, word):
self.word = word.replace(' ', '%20')

View file

@ -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)