diff --git a/web/startScan/templates/startScan/detail_scan.html b/web/startScan/templates/startScan/detail_scan.html index 5d12d153..7da30388 100644 --- a/web/startScan/templates/startScan/detail_scan.html +++ b/web/startScan/templates/startScan/detail_scan.html @@ -1963,7 +1963,7 @@ $(document).ready(function() { if (lines_word_content.length > 1) { lines_word_badge = `${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++;