Skip to content

Commit 45de220

Browse files
Fixed xlsx report filling issue (#49)
1 parent 6bf06d3 commit 45de220

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datagather_modules/data_assembler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def data_gathering(self, short_domain, url, report_file_type, pagesearch_flag, k
6161
print(Fore.GREEN + 'Processing SSL certificate gathering' + Style.RESET_ALL)
6262
issuer, subject, notBefore, notAfter, commonName, serialNumber = np.get_ssl_certificate(short_domain)
6363
print(Fore.GREEN + 'Processing MX records gathering' + Style.RESET_ALL)
64-
mx_records = np.get_dns_info(short_domain)
64+
mx_records = np.get_dns_info(short_domain, report_file_type)
6565
print(Fore.GREEN + 'Extracting robots.txt and sitemap.xml' + Style.RESET_ALL)
6666
robots_txt_result = np.get_robots_txt(short_domain, robots_filepath)
6767
sitemap_xml_result = np.get_sitemap_xml(short_domain, sitemap_filepath)

0 commit comments

Comments
 (0)