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++; diff --git a/web/static/custom/custom.js b/web/static/custom/custom.js index 4cb332a04..1ca19be0e 100644 --- a/web/static/custom/custom.js +++ b/web/static/custom/custom.js @@ -1279,7 +1279,7 @@ function render_directories_in_xl_modal(directory_count, subdomain_name, result) var dir = result[dir_obj]; $('#directory_tbody').append(` - ${dir.name} + ${atob(dir.name)} ${get_http_status_badge(dir.http_status)} ${dir.length} ${dir.lines} @@ -2542,7 +2542,7 @@ function get_most_vulnerable_target(slug=null, scan_id=null, target_id=null, ign - + ² `);