feature: resolve dll imports

This commit is contained in:
Dobin
2024-04-21 15:22:47 +01:00
parent 1f768f0f15
commit e6f3de18b4
6 changed files with 109 additions and 4 deletions
+10 -3
View File
@@ -14,17 +14,24 @@
<div class="col-6">
{% if iat|length > 0 %}
<h2> Imports - IAT </h2>
<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>
<h2> IAT Imports functions</h2>
{% for dll in iat %}
<ul>
{% for entry in iat[dll] %}
<li> {{ entry.dll_name }}: {{ entry.func_name }} ({{ entry.iat_vaddr | hexint }})</li>
<li> {{ entry.dll_name }}: {{ entry.func_name }} </li>
{% endfor%}
</ul>
{% endfor %}
{% endif %}
</div>
<div class="col-6">