This commit is contained in:
Sivert V. Sæther
2025-09-26 15:54:44 +02:00
commit ef77991a1f
9 changed files with 126 additions and 0 deletions

16
templates/index.j2 Normal file
View File

@@ -0,0 +1,16 @@
{% extends "base.j2" %}
{% block title %}Home{% endblock %}
{% block head %}
{% endblock %}
{% block body %}
<h1>C2py</h1>
<p class="important">
Welcome to my awesome command and control admin panel!
</p>
<h3>Active bots;</h3>
{% for bot in bots %}
<a href='/shell/{{ bot }}' target='_blank'><p>{{ bot }}</p></a>
{% else %}
<p>None</p>
{% endfor %}
{% endblock %}