mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-04-29 19:58:52 +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).
71 lines
1.8 KiB
JavaScript
71 lines
1.8 KiB
JavaScript
// ╔╗ ╔═╗╔╗╔╔╦╗╔═╗
|
|
// ╠╩╗║╣ ║║║ ║ ║ ║
|
|
// ╚═╝╚═╝╝╚╝ ╩ ╚═╝
|
|
// ┌─┐┌─┐┌┐┌┌─┐┬┌─┐┬ ┬┬─┐┌─┐┌┬┐┬┌─┐┌┐┌
|
|
// │ │ ││││├┤ ││ ┬│ │├┬┘├─┤ │ ││ ││││
|
|
// └─┘└─┘┘└┘└ ┴└─┘└─┘┴└─┴ ┴ ┴ ┴└─┘┘└┘
|
|
|
|
const CONFIG = {
|
|
// ┌┐ ┌─┐┌─┐┬┌─┐┌─┐
|
|
// ├┴┐├─┤└─┐││ └─┐
|
|
// └─┘┴ ┴└─┘┴└─┘└─┘
|
|
|
|
// General
|
|
imageBackground: true,
|
|
openInNewTab: true,
|
|
twelveHourFormat: false,
|
|
|
|
// Greetings
|
|
greetingMorning: 'Good morning ☕',
|
|
greetingAfternoon: 'Good afternoon 🍯',
|
|
greetingEvening: 'Good evening 😁',
|
|
greetingNight: 'Go to Sleep 🥱',
|
|
|
|
// ┬ ┬┌─┐┌┬┐┌─┐
|
|
// │ │└─┐ │ └─┐
|
|
// ┴─┘┴└─┘ ┴ └─┘
|
|
|
|
//Icons
|
|
firstListIcon: 'home',
|
|
secondListIcon: 'external-link',
|
|
|
|
// Links
|
|
lists: {
|
|
firstList: [
|
|
{
|
|
name: 'Cockpit',
|
|
link: '/cockpit.html',
|
|
},
|
|
{
|
|
name: 'Cyberchef',
|
|
link: '/cyberchef/',
|
|
},
|
|
{
|
|
name: 'Elasticvue',
|
|
link: '/elasticvue/',
|
|
},
|
|
{
|
|
name: 'Kibana',
|
|
link: '/kibana/',
|
|
},
|
|
{
|
|
name: 'Spiderfoot',
|
|
link: '/spiderfoot/',
|
|
},
|
|
],
|
|
secondList: [
|
|
{
|
|
name: 'SecurityMeter',
|
|
link: 'https://sicherheitstacho.eu',
|
|
},
|
|
{
|
|
name: 'T-Pot @ GitHub',
|
|
link: 'https://github.com/dtag-dev-sec/tpotce/',
|
|
},
|
|
{
|
|
name: 'T-Pot ReadMe',
|
|
link: 'https://github.com/telekom-security/tpotce/blob/master/README.md',
|
|
},
|
|
],
|
|
},
|
|
};
|