feature: better exe view

This commit is contained in:
Dobin Rutishauser
2025-06-20 10:17:56 +02:00
parent 7eefe7c444
commit 7f48b293da
6 changed files with 38 additions and 45 deletions
+15 -9
View File
@@ -9,18 +9,25 @@
<div class="indent">
<div class="row">
<h2>Sections</h2>
<h1>Injectable: {{superpe.filepath}}</h1>
<div class="col-6">
{% if iat|length > 0 %}
<h2> IAT Imports DLLs</h2>
<ul>
{% for dll_resolve in resolved_dlls %}
<li> {{ dll_resolve.dllname }}: {{ dll_resolve.cdll_res }} : {{ dll_resolve.path_res }}</li>
{% endfor%}
</ul>
<table>
<tr>
<th>Import</th>
<th>available</th>
<th>location</th>
</tr>
{% for dll_resolve in resolved_dlls %}
<tr>
<td>{{dll_resolve.dllname}}</td>
<td>{{dll_resolve.cdll_res}}</td>
<td>{{dll_resolve.path_res}}</td>
</tr>
{% endfor %}
</table>
<h2> IAT Imports functions</h2>
{% for dll in iat %}
@@ -30,7 +37,6 @@
{% endfor%}
</ul>
{% endfor %}
{% endif %}
</div>