feature: show iat in web ui

This commit is contained in:
Dobin
2024-04-03 19:22:48 +01:00
parent 7bc03fa6c2
commit de73d5452e
3 changed files with 35 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
<h1> IAT </h1>
{% for dll in iat %}
<h2>DLL: {{dll}}</h2>
<ul>
{% for entry in iat[dll] %}
<li> {{ entry.dll_name }}: {{ entry.func_name }} ({{ entry.iat_vaddr }})</li>
{% endfor%}
</ul>
{% endfor %}
+6
View File
@@ -0,0 +1,6 @@
<ul>
{% for exe in exes %}
<li><a href="/exes/{{exe}}">{{exe}}</a></li>
{% endfor %}
</ul>