ui: show some more important information and checks

This commit is contained in:
Dobin
2024-05-01 22:30:53 +01:00
parent 3e6c1e06cf
commit c372d348ce
6 changed files with 52 additions and 10 deletions
+9 -2
View File
@@ -86,10 +86,18 @@
<!-- Row 3: exe and shellcode info -->
<div class="col-2">
x64: {{ is_64 }} / Dotnet: {{ is_dotnet}} <br>
{% if is_64 %}
x64: {{ is_64 }}
{% else %}
<span class="text-danger">x64: {{ is_64 }}</span>
{% endif %}
/ Dotnet: {{ is_dotnet}} <br>
.text: {{ code_sect_size}} <br>
.rodata: {{ data_sect_size}}
(max: {{ data_sect_largest_gap_size}}) <br>
{% if not has_rodata_section %}
<span class="text-danger">No .rodata section</span> <br>
{% endif %}
{% if unresolved_dlls|length > 0 %}
<br>
@@ -129,7 +137,6 @@
</select>
</div>
</div>
</form>