You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
print(Fore.GREEN+f"\nDuring subdomains analysis:\n[+] Total {len(subdomains_list)} subdomains were checked")
95
-
print(Fore.GREEN+f"[+] Among them, {accessible_subdomains} subdomains were accessible")
96
-
print(Fore.GREEN+f"[+] In result, {len(ps_emails_return)} unique e-mail addresses were found")
97
-
print(Fore.GREEN+f"[+] Also, {files_counter} files were extracted")
98
-
print(Fore.GREEN+f"[+] Found {cookies_counter} cookies with values")
99
-
print(Fore.GREEN+f"[+] Found {api_keys_counter} API keys")
100
-
print(Fore.GREEN+f"[+] Found {website_elements_counter} different web page elements")
101
-
print(Fore.GREEN+f"[+] Found {exposed_passwords_counter} exposed passwords")
94
+
iflen(subdomains_list) ==0:
95
+
print(Fore.GREEN+"\nDuring subdomains analysis:\n[+] Total "+Fore.LIGHTRED_EX+Style.BRIGHT+f"{len(subdomains_list)}"+Style.RESET_ALL+Fore.GREEN+" subdomains were checked"+Style.RESET_ALL)
96
+
else:
97
+
print(Fore.GREEN+"\nDuring subdomains analysis:\n[+] Total "+Fore.LIGHTCYAN_EX+Style.BRIGHT+f"{len(subdomains_list)}"+Style.RESET_ALL+Fore.GREEN+" subdomains were checked"+Style.RESET_ALL)
98
+
ifaccessible_subdomains==0:
99
+
print(Fore.GREEN+"[+] Among them "+Fore.LIGHTRED_EX+Style.BRIGHT+f"{accessible_subdomains}"+Style.RESET_ALL+Fore.GREEN+" subdomains were accessible"+Style.RESET_ALL)
100
+
else:
101
+
print(Fore.GREEN+"[+] Among them "+Fore.LIGHTCYAN_EX+Style.BRIGHT+f"{accessible_subdomains}"+Style.RESET_ALL+Fore.GREEN+" subdomains were accessible"+Style.RESET_ALL)
102
+
iflen(ps_emails_return) ==0:
103
+
print(Fore.GREEN+"[+] In result, "+Fore.LIGHTRED_EX+Style.BRIGHT+f"{len(ps_emails_return)}"+Style.RESET_ALL+Fore.GREEN+" unique e-mail addresses were found"+Style.RESET_ALL)
104
+
else:
105
+
print(Fore.GREEN+"[+] In result, "+Fore.LIGHTCYAN_EX+Style.BRIGHT+f"{len(ps_emails_return)}"+Style.RESET_ALL+Fore.GREEN+" unique e-mail addresses were found"+Style.RESET_ALL)
106
+
iffiles_counter==0:
107
+
print(Fore.GREEN+"[+] Also, "+Fore.LIGHTRED_EX+Style.BRIGHT+f"{files_counter}"+Style.RESET_ALL+Fore.GREEN+" files were extracted"+Style.RESET_ALL)
108
+
else:
109
+
print(Fore.GREEN+"[+] Also, "+Fore.LIGHTCYAN_EX+Style.BRIGHT+f"{files_counter}"+Style.RESET_ALL+Fore.GREEN+" files were extracted"+Style.RESET_ALL)
110
+
ifcookies_counter==0:
111
+
print(Fore.GREEN+"[+] Found "+Fore.LIGHTRED_EX+Style.BRIGHT+f"{cookies_counter}"+Style.RESET_ALL+Fore.GREEN+" cookies with values"+Style.RESET_ALL)
112
+
else:
113
+
print(Fore.GREEN+"[+] Found "+Fore.LIGHTCYAN_EX+Style.BRIGHT+f"{cookies_counter}"+Style.RESET_ALL+Fore.GREEN+" cookies with values"+Style.RESET_ALL)
114
+
ifapi_keys_counter==0:
115
+
print(Fore.GREEN+"[+] Found "+Fore.LIGHTRED_EX+Style.BRIGHT+f"{api_keys_counter}"+Style.RESET_ALL+Fore.GREEN+" API keys"+Style.RESET_ALL)
116
+
else:
117
+
print(Fore.GREEN+"[+] Found "+Fore.LIGHTCYAN_EX+Style.BRIGHT+f"{api_keys_counter}"+Style.RESET_ALL+Fore.GREEN+" API keys"+Style.RESET_ALL)
118
+
ifwebsite_elements_counter==0:
119
+
print(Fore.GREEN+"[+] Found "+Fore.LIGHTRED_EX+Style.BRIGHT+f"{website_elements_counter}"+Style.RESET_ALL+Fore.GREEN+" different web page elements"+Style.RESET_ALL)
120
+
else:
121
+
print(Fore.GREEN+"[+] Found "+Fore.LIGHTCYAN_EX+Style.BRIGHT+f"{website_elements_counter}"+Style.RESET_ALL+Fore.GREEN+" different web page elements"+Style.RESET_ALL)
122
+
ifexposed_passwords_counter==0:
123
+
print(Fore.GREEN+"[+] Found "+Fore.LIGHTRED_EX+Style.BRIGHT+f"{exposed_passwords_counter}"+Style.RESET_ALL+Fore.GREEN+" exposed passwords"+Style.RESET_ALL)
124
+
else:
125
+
print(Fore.GREEN+"[+] Found "+Fore.LIGHTCYAN_EX+Style.BRIGHT+f"{exposed_passwords_counter}"+Style.RESET_ALL+Fore.GREEN+" exposed passwords"+Style.RESET_ALL)
0 commit comments