Skip to content

Commit

Permalink
Added support of multiple PDF report templates
Browse files Browse the repository at this point in the history
  • Loading branch information
OSINT-TECHNOLOGIES authored Aug 25, 2024
1 parent 51a9c43 commit 056ee93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pagesearch/pagesearch_parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,9 +280,9 @@ def subdomains_parser(subdomains_list, report_folder, keywords, keywords_flag):

if keywords_flag == 0:
print(Fore.GREEN + "[+] Keywords were not gathered because of None user input")
return ps_emails_return
return ps_emails_return, accessible_subdomains, len(ps_emails_return), files_counter, cookies_counter, api_keys_counter, website_elements_counter, exposed_passwords_counter
else:
print(Fore.GREEN + f"[+] Total {pdf_with_keywords} keywords were found in PDF files")
return ps_emails_return
return ps_emails_return, accessible_subdomains, len(ps_emails_return), files_counter, cookies_counter, api_keys_counter, website_elements_counter, exposed_passwords_counter


0 comments on commit 056ee93

Please sign in to comment.