diff --git a/pagesearch/pagesearch_main.py b/pagesearch/pagesearch_main.py index 1eda05f..cf0f00a 100644 --- a/pagesearch/pagesearch_main.py +++ b/pagesearch/pagesearch_main.py @@ -4,8 +4,8 @@ def normal_search(to_search_array, report_folder, keywords, keywords_flag): print(Fore.GREEN + "Conducting PageSearch. Please, be patient, it may take a long time\n" + Style.RESET_ALL) - ps_emails_return, accessible_subdomains, emails_amount, files_counter, cookies_counter, api_keys_counter, website_elements_counter, exposed_passwords_counter = subdomains_parser(to_search_array[0], report_folder, keywords, keywords_flag) - return ps_emails_return, accessible_subdomains, emails_amount, files_counter, cookies_counter, api_keys_counter, website_elements_counter, exposed_passwords_counter + ps_emails_return, accessible_subdomains, emails_amount, files_counter, cookies_counter, api_keys_counter, website_elements_counter, exposed_passwords_counter, keywords_messages_list = subdomains_parser(to_search_array[0], report_folder, keywords, keywords_flag) + return ps_emails_return, accessible_subdomains, emails_amount, files_counter, cookies_counter, api_keys_counter, website_elements_counter, exposed_passwords_counter, keywords_messages_list def sitemap_inspection_search(report_folder): print(Fore.GREEN + "Conducting PageSearch in Sitemap Inspection mode. Please, be patient, it will take a long time\n" + Style.RESET_ALL)