Added verbosity and made it so things are properly sorted and unique.

This commit is contained in:
NotoriousRebel 2018-12-23 21:50:25 -05:00
parent dcb849de59
commit d0b49f87e2

View file

@ -596,8 +596,8 @@ def start(argv):
print("\033[1;33;40m \n[+] IP addresses found in search engines:") print("\033[1;33;40m \n[+] IP addresses found in search engines:")
print("------------------------------------") print("------------------------------------")
print("Total IP addresses: " + str(len(all_ip)) + "\n") print("Total IP addresses: " + str(len(all_ip)) + "\n")
for i in all_ip: for ip in sorted(list(set(all_ip))):
print(i) print(ip)
print("\n\n[+] Emails found:") print("\n\n[+] Emails found:")
print("------------------") print("------------------")
@ -626,7 +626,7 @@ def start(argv):
else: else:
total = len(all_hosts) total = len(all_hosts)
print(("\nTotal hosts: " + str(total) + "\n")) print(("\nTotal hosts: " + str(total) + "\n"))
all_hosts = sorted(set(all_hosts)) all_hosts = sorted(list(set(all_hosts)))
for host in all_hosts: for host in all_hosts:
print(host) print(host)
print("\033[94m[-] Resolving hostnames IPs...\033[1;33;40m \n ") print("\033[94m[-] Resolving hostnames IPs...\033[1;33;40m \n ")