mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-04-20 06:02:24 +00:00

Finalize qhoneypots config, thanks to @giga-a for native JSON logging! Completely rework T-Pot Landing Page based on Bento (https://github.com/migueravila/Bento). New NGINX image is down by 100MB and only uses 3.3 MB of RAM at runtime. Keep legacy Sensor option (without logstash).
61 lines
1.5 KiB
HTML
61 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>T-Pot</title>
|
|
<link
|
|
rel=" shortcut icon"
|
|
type="image/png"
|
|
href="assets/icons/favicon.png"
|
|
/>
|
|
<link rel="stylesheet" href="app.css" />
|
|
<script src="https://unpkg.com/lucide@latest"></script>
|
|
</head>
|
|
|
|
<!--
|
|
╔╗ ╔═╗╔╗╔╔╦╗╔═╗
|
|
╠╩╗║╣ ║║║ ║ ║ ║
|
|
╚═╝╚═╝╝╚╝ ╩ ╚═╝
|
|
-->
|
|
|
|
<body class="">
|
|
<div class="container">
|
|
<!-- Clock and Greetings -->
|
|
|
|
<div class="timeBlock">
|
|
<div class="clock">
|
|
<div id="hour" class=""></div>
|
|
<div id="separator" class=""></div>
|
|
<div id="minutes" class=""></div>
|
|
</div>
|
|
<div id="greetings"></div>
|
|
</div>
|
|
|
|
<!--
|
|
┬ ┬┌─┐┌┬┐┌─┐
|
|
│ │└─┐ │ └─┐
|
|
┴─┘┴└─┘ ┴ └─┘
|
|
-->
|
|
|
|
<div class="card list list__1" id="list_1"></div>
|
|
|
|
<div class="card list list__2" id="list_2"></div>
|
|
</div>
|
|
|
|
<!-- Config -->
|
|
<script src="config.js"></script>
|
|
|
|
<!-- Scripts -->
|
|
<script src="assets/js/time.js"></script>
|
|
<script src="assets/js/theme.js"></script>
|
|
<script src="assets/js/greeting.js"></script>
|
|
<script src="assets/js/cards.js"></script>
|
|
<script src="assets/js/lists.js"></script>
|
|
<script>
|
|
lucide.createIcons();
|
|
</script>
|
|
</body>
|
|
|
|
<!-- Developed and designed by Miguel R. Ávila: -->
|
|
<!-- https://github.com/migueravila -->
|
|
</html>
|