mirror of
https://github.com/dobin/SuperMega
synced 2026-06-02 17:27:10 +00:00
43 lines
709 B
HTML
43 lines
709 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{% include 'header.html' %}
|
|
</head>
|
|
<body>
|
|
{% include 'navigation.html' %}
|
|
|
|
<div class="indent">
|
|
|
|
|
|
<h2> Exports </h2>
|
|
|
|
<table class="table">
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Address</th>
|
|
<th>Size (Approx)</th>
|
|
</tr>
|
|
{% for export in exports %}
|
|
<tr>
|
|
<td>{{export["name"]}}</td>
|
|
<td>{{export["addr"] | hexint}}</td>
|
|
<td>{{export["size"]}}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|
|
<h2> IAT </h2>
|
|
|
|
{% for dll in iat %}
|
|
<h3>DLL: {{dll}}</h3>
|
|
<ul>
|
|
{% for entry in iat[dll] %}
|
|
<li> {{ entry.dll_name }}: {{ entry.func_name }} ({{ entry.iat_vaddr | hexint }})</li>
|
|
{% endfor%}
|
|
</ul>
|
|
{% endfor %}
|
|
|
|
|
|
</div>
|
|
</body>
|
|
</html> |