From fcfc4b7e4e752f6fbdbd007081a4e7f55ae17f84 Mon Sep 17 00:00:00 2001 From: Raynald Date: Tue, 17 Oct 2023 12:18:03 +0200 Subject: [PATCH] Fix dir fuzz base64 name in scanner list --- web/startScan/templates/startScan/detail_scan.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/startScan/templates/startScan/detail_scan.html b/web/startScan/templates/startScan/detail_scan.html index 5d12d153f..7da30388e 100644 --- a/web/startScan/templates/startScan/detail_scan.html +++ b/web/startScan/templates/startScan/detail_scan.html @@ -1963,7 +1963,7 @@

${lines_word_content}`; } - html_treeview += `
  • ` + htmlEncode(file.name) + ` (` + file.length / 100 + ` Kb) (` + htmlEncode(file.content_type) + `) ${http_status_badge}${interesting_badge} ${lines_word_badge}
  • `; + html_treeview += `
  • ` + htmlEncode(atob(file.name)) + ` (` + file.length / 100 + ` Kb) (` + htmlEncode(file.content_type) + `) ${http_status_badge}${interesting_badge} ${lines_word_badge}
  • `; }); } item_pos++;