Skip to content

Commit 3e5d68e

Browse files
Normalized output of InternetDB results (part of #42)
1 parent 907a623 commit 3e5d68e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

reporting_modules/xlsx_report_creation.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -235,9 +235,9 @@ def create_report(short_domain, url, case_comment, data_array, report_info_array
235235
ws['A4'] = 'CPEs'
236236
ws['I1'] = 'POTENTIAL VULNERABILITIES'
237237
ws['B1'] = ', '.join(str(item) for item in ports)
238-
ws['B2'] = str(hostnames)
239-
ws['B3'] = str(tags)
240-
ws['B4'] = str(cpes)
238+
ws['B2'] = ', '.join(str(item) for item in hostnames)
239+
ws['B3'] = ', '.join(str(item) for item in tags)
240+
ws['B4'] = ', '.join(str(item) for item in cpes)
241241
for i in range(len(vulns)):
242242
ws[f"I{i + 2}"] = str(vulns[i])
243243

0 commit comments

Comments
 (0)