Skip to content

Commit

Permalink
Merge pull request #993 from psyray/fix-dirfuzz-base64-name-display-v2
Browse files Browse the repository at this point in the history
Fix dirfuzz base64 name display
  • Loading branch information
yogeshojha authored Oct 24, 2023
2 parents 1f9fd9d + fcfc4b7 commit 59c3e90
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion web/startScan/templates/startScan/detail_scan.html
Original file line number Diff line number Diff line change
Expand Up @@ -1963,7 +1963,7 @@ <h4 class="header-title mb-0"><span id="endpoint_change_count"><span class="spin
if (lines_word_content.length > 1) {
lines_word_badge = `<span class="badge badge-soft-secondary" data-toggle="tooltip" data-placement="top" title="Response Content Status">${lines_word_content}</span>`;
}
html_treeview += `<li class="mt-1"><a href="` + htmlEncode(http_url) + `" target="_blank">` + htmlEncode(file.name) + ` (` + file.length / 100 + ` Kb) <span class="badge badge-soft-primary" data-toggle="tooltip" data-placement="top" title="Content Type">(` + htmlEncode(file.content_type) + `)</span> ${http_status_badge}</a>${interesting_badge} ${lines_word_badge}</li>`;
html_treeview += `<li class="mt-1"><a href="` + htmlEncode(http_url) + `" target="_blank">` + htmlEncode(atob(file.name)) + ` (` + file.length / 100 + ` Kb) <span class="badge badge-soft-primary" data-toggle="tooltip" data-placement="top" title="Content Type">(` + htmlEncode(file.content_type) + `)</span> ${http_status_badge}</a>${interesting_badge} ${lines_word_badge}</li>`;
});
}
item_pos++;
Expand Down
4 changes: 2 additions & 2 deletions web/static/custom/custom.js
Original file line number Diff line number Diff line change
Expand Up @@ -1279,7 +1279,7 @@ function render_directories_in_xl_modal(directory_count, subdomain_name, result)
var dir = result[dir_obj];
$('#directory_tbody').append(`
<tr>
<td><a href="${dir.url}" target="_blank">${dir.name}</a></td>
<td><a href="${dir.url}" target="_blank">${atob(dir.name)}</a></td>
<td class="text-center">${get_http_status_badge(dir.http_status)}</td>
<td>${dir.length}</td>
<td>${dir.lines}</td>
Expand Down Expand Up @@ -2542,7 +2542,7 @@ function get_most_vulnerable_target(slug=null, scan_id=null, target_id=null, ign
</tr>
</thead>
<tbody id="most_vulnerable_target_tbody">
</tbody>
</tbody>²
</table>
`);

Expand Down

0 comments on commit 59c3e90

Please sign in to comment.