Skip to content

Commit 53bf777

Browse files
Added PageSearch status information in general report sheet (part of #43)
1 parent 525fc5a commit 53bf777

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

reporting_modules/xlsx_report_creation.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import db_processing as db
1717
import files_processing as fp
1818

19-
def create_report(short_domain, url, case_comment, data_array, report_info_array):
19+
def create_report(short_domain, url, case_comment, data_array, report_info_array, pagesearch_ui_mark):
2020
try:
2121
ip = data_array[0]
2222
res = data_array[1]
@@ -92,14 +92,16 @@ def create_report(short_domain, url, case_comment, data_array, report_info_array
9292
ws['A4'] = 'SITEMAP.XML EXTRACTED?'
9393
ws['A5'] = 'SITEMAP.XML LINKS EXTRACTED?'
9494
ws['A6'] = 'DORKING STATUS'
95-
ws['A7'] = 'REPORT CREATION TIME'
95+
ws['A7'] = 'PAGESEARCH STATUS'
96+
ws['A8'] = 'REPORT CREATION TIME'
9697
ws['B1'] = subdomains_amount
9798
ws['B2'] = total_socials
9899
ws['B3'] = robots_txt_result
99100
ws['B4'] = sitemap_xml_result
100101
ws['B5'] = sitemap_links_status
101102
ws['B6'] = dorking_status
102-
ws['B7'] = report_ctime
103+
ws['B7'] = pagesearch_ui_mark
104+
ws['B8'] = report_ctime
103105

104106
ws = wb['WHOIS']
105107
for col in ['1', '2', '3', '4', '5', '6', '7', '8']:

0 commit comments

Comments
 (0)