mirror of
https://github.com/dobin/SuperMega
synced 2026-06-02 17:27:10 +00:00
32 lines
693 B
HTML
32 lines
693 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{% include 'header.html' %}
|
|
</head>
|
|
<body>
|
|
{% include 'navigation.html' %}
|
|
|
|
<div class="indent">
|
|
|
|
Injectables in <code>data/binary/exes</code>
|
|
|
|
{% for exe in exes %}
|
|
<h3>{{exe['name']}}</h3>
|
|
<a href="/exes/{{exe['name']}}">More details</a>
|
|
|
|
<table class="table">
|
|
<tr>
|
|
<th>name</th>
|
|
<th>raw size</th>
|
|
</tr>
|
|
{% for section in exe['sections'] %}
|
|
<tr>
|
|
<td>{{section['name']}}</td>
|
|
<td>{{section['raw_size']}}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% endfor %}
|
|
</table>
|
|
|