From c8fd536354d93352b9230cfdf9edd2611dea0541 Mon Sep 17 00:00:00 2001 From: OSINT-TECHNOLOGIES <77023667+OSINT-TECHNOLOGIES@users.noreply.github.com> Date: Wed, 11 Sep 2024 12:07:45 +0300 Subject: [PATCH] Added HTML reporting module support --- datagather_modules/crawl_processor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datagather_modules/crawl_processor.py b/datagather_modules/crawl_processor.py index e709370..1424d05 100644 --- a/datagather_modules/crawl_processor.py +++ b/datagather_modules/crawl_processor.py @@ -239,7 +239,7 @@ def domains_reverse_research(subdomains, report_file_type): if not subdomain_ip: subdomain_ip = ["No subdomains IP's were found"] - if report_file_type == 'pdf': + if report_file_type == 'pdf' or report_file_type == 'html': return subdomain_mails, sd_socials, subdomain_ip elif report_file_type == 'xlsx': return subdomain_urls, subdomain_mails, subdomain_ip, sd_socials