mirror of
https://github.com/dobin/SuperMega
synced 2026-06-03 01:27:11 +00:00
ui: more information
This commit is contained in:
+24
-11
@@ -7,10 +7,30 @@
|
||||
{% include 'navigation.html' %}
|
||||
|
||||
<div class="indent">
|
||||
<div class="row">
|
||||
|
||||
<h2>Sections</h2>
|
||||
|
||||
|
||||
<h2> Exports </h2>
|
||||
<div class="col-6">
|
||||
{% if iat|length > 0 %}
|
||||
<h2> Imports - IAT </h2>
|
||||
{% for dll in iat %}
|
||||
<ul>
|
||||
{% for entry in iat[dll] %}
|
||||
<li> {{ entry.dll_name }}: {{ entry.func_name }} ({{ entry.iat_vaddr | hexint }})</li>
|
||||
{% endfor%}
|
||||
</ul>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="col-6">
|
||||
|
||||
{% if exports|length > 0 %}
|
||||
<h2> DLL Exports </h2>
|
||||
<table class="table">
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
@@ -25,19 +45,12 @@
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
{% endif %}
|
||||
|
||||
<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>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
+15
-11
@@ -10,7 +10,6 @@
|
||||
|
||||
<h2> {{project_name}} </h2>
|
||||
|
||||
|
||||
<div class="row">
|
||||
<!-- Row 1: Buttons -->
|
||||
<div class="col-3">
|
||||
@@ -72,7 +71,7 @@
|
||||
<option value="{{exe}}"
|
||||
{% if exe in project.settings.inject_exe_in %} selected {% endif %}
|
||||
>
|
||||
{{exe}}</option>
|
||||
{{exe | basename}}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
|
||||
@@ -84,11 +83,10 @@
|
||||
>
|
||||
{{export['name']}} ({{export['size']}})</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
</select>
|
||||
<a href="/exes/{{project.settings.inject_exe_in | basename}}">INFO</a>
|
||||
{% endif %}
|
||||
|
||||
Is x64: {{ is_64}} <br>
|
||||
Is Dotnet: {{ is_dotnet}}
|
||||
|
||||
</div>
|
||||
|
||||
<!-- Row 3: settings -->
|
||||
@@ -109,10 +107,6 @@
|
||||
{% endfor %}
|
||||
</select>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- Row 4: more settings -->
|
||||
<div class="col-3">
|
||||
<select class="form-select" name="decoder_style" aria-label="DECODERESTYLE" onchange="this.form.submit()">
|
||||
{% for name, value in decoderstyles %}
|
||||
<option value="{{name}}"
|
||||
@@ -121,12 +115,22 @@
|
||||
{% endfor %}
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<!-- Row 4: more settings -->
|
||||
<div class="col-3">
|
||||
EXE/DLL Is: <br>
|
||||
Is x64: {{ is_64}} <br>
|
||||
Is Dotnet: {{ is_dotnet}} <br>
|
||||
Code Section size: {{ code_sect_size}} <br>
|
||||
Data Section size: {{ data_sect_size}} <br>
|
||||
Data Section largest: {{ data_sect_largest_gap_size}} <br>
|
||||
{{ project_dir }} <br>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
{{ project_dir }}
|
||||
<div class="custom-line"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user