From 908d2fbc46f74f287657e0ef888095f552c3d309 Mon Sep 17 00:00:00 2001 From: OSINT-TECHNOLOGIES <77023667+OSINT-TECHNOLOGIES@users.noreply.github.com> Date: Wed, 11 Sep 2024 12:07:24 +0300 Subject: [PATCH] Added HTML reporting module support --- datagather_modules/networking_processor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datagather_modules/networking_processor.py b/datagather_modules/networking_processor.py index 21ce20e..71256cc 100644 --- a/datagather_modules/networking_processor.py +++ b/datagather_modules/networking_processor.py @@ -78,7 +78,7 @@ def query_internetdb(ip, report_file_extension): tags = ['Tags were not found'] if not vulns: vulns = ['Vulnerabilities were not found'] - if report_file_extension == 'pdf': + if report_file_extension == 'pdf' or report_file_extension == 'html': return ports, hostnames, cpes, tags, vulns elif report_file_extension == 'xlsx': return ports, hostnames, cpes, tags, vulns