30 lines
980 B
HTML
30 lines
980 B
HTML
<!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>
|
|
<ol>
|
|
{% for i in value %}
|
|
<li><a href="{{ "./%s"|format(i.id) }}">{{ i.name }}</a></li>
|
|
{% endfor %}
|
|
</ol>
|
|
{% endfor %}
|
|
<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>
|
|
</body>
|
|
|
|
</html> |