Skip to content

Commit

Permalink
Added part of report with found keywords in PDFs
Browse files Browse the repository at this point in the history
  • Loading branch information
OSINT-TECHNOLOGIES committed Sep 5, 2024
1 parent 9bee78a commit 798c266
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions datagather_modules/data_assembler.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def data_gathering(self, short_domain, url, report_file_type, pagesearch_flag, k
if subdomains[0] != 'No subdomains were found':
to_search_array = [subdomains, social_medias, sd_socials]
print(Fore.LIGHTMAGENTA_EX + "\n[EXTENDED SCAN START: PAGESEARCH]\n" + Style.RESET_ALL)
ps_emails_return, accessible_subdomains, emails_amount, files_counter, cookies_counter, api_keys_counter, website_elements_counter, exposed_passwords_counter = normal_search(to_search_array, report_folder, keywords, keywords_flag)
ps_emails_return, accessible_subdomains, emails_amount, files_counter, cookies_counter, api_keys_counter, website_elements_counter, exposed_passwords_counter, keywords_messages_list = normal_search(to_search_array, report_folder, keywords, keywords_flag)
total_links_counter = accessed_links_counter = 0
print(Fore.LIGHTMAGENTA_EX + "\n[EXTENDED SCAN END: PAGESEARCH]\n" + Style.RESET_ALL)
else:
Expand All @@ -119,7 +119,7 @@ def data_gathering(self, short_domain, url, report_file_type, pagesearch_flag, k
web_servers, cms, programming_languages, web_frameworks, analytics, javascript_frameworks, ports,
hostnames, cpes, tags, vulns, dorking_status, common_socials, total_socials, ps_emails_return,
accessible_subdomains, emails_amount, files_counter, cookies_counter, api_keys_counter,
website_elements_counter, exposed_passwords_counter, total_links_counter, accessed_links_counter]
website_elements_counter, exposed_passwords_counter, total_links_counter, accessed_links_counter, keywords_messages_list]

elif report_file_type == 'xlsx':
if pagesearch_flag.lower() == 'y':
Expand Down

0 comments on commit 798c266

Please sign in to comment.