mirror of
https://github.com/dobin/SuperMega
synced 2026-06-03 01:27:11 +00:00
feature: show iat in web ui
This commit is contained in:
@@ -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 %}
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
|
||||
<ul>
|
||||
{% for exe in exes %}
|
||||
<li><a href="/exes/{{exe}}">{{exe}}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
Reference in New Issue
Block a user