Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix dirfuzz base64 name display #993

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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