SuperScriptMaterializer/SuperScriptViewer/templates/index.html

30 lines
980 B
HTML
Raw Normal View History

2020-04-03 23:57:36 +08:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Script Hierarchy</title>
</head>
<body>
<h1>Script Hierarchy</h1>
<p>Choose a script to read it.</p>
<br />
<br />
{% for key, value in scripts.items() %}
<h2>{{ key|e }}</h2>
2020-04-03 23:57:36 +08:00
<ol>
{% for i in value %}
<li><a href="{{ "./%s"|format(i.id) }}">{{ i.name }}</a></li>
{% endfor %}
2020-04-03 23:57:36 +08:00
</ol>
{% endfor %}
2020-04-13 15:36:37 +08:00
<br />
<br />
<p>Generated by <a href="https://github.com/yyc12345/SuperScriptMaterializer">SuperScriptMaterializer</a>. All codes are under GPLv3.<br />
Powered by <a href="https://github.com/pallets/flask">Flask</a>.<br />
Ancestor projects: <a href="https://github.com/BearKidsTeam/VirtoolsScriptDeobfuscation">BearKidsTeam/VirtoolsScriptDeobfuscation</a> and <a href="https://github.com/BearKidsTeam/Script-Materializer">BearKidsTeam/Script-Materializer</a>.<br />
Thank <a href="https://github.com/chirs241097">chirs241097</a> and <a href="https://github.com/instr3">2jjy</a>.</p>
2020-04-03 23:57:36 +08:00
</body>
</html>