2022-01-29 00:00:29 +00:00
|
|
|
// ╔╗ ╔═╗╔╗╔╔╦╗╔═╗
|
|
|
|
// ╠╩╗║╣ ║║║ ║ ║ ║
|
|
|
|
// ╚═╝╚═╝╝╚╝ ╩ ╚═╝
|
|
|
|
// ┌─┐┌─┐┌┐┌┌─┐┬┌─┐┬ ┬┬─┐┌─┐┌┬┐┬┌─┐┌┐┌
|
|
|
|
// │ │ ││││├┤ ││ ┬│ │├┬┘├─┤ │ ││ ││││
|
|
|
|
// └─┘└─┘┘└┘└ ┴└─┘└─┘┴└─┴ ┴ ┴ ┴└─┘┘└┘
|
|
|
|
|
|
|
|
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: [
|
2023-04-25 13:03:26 +00:00
|
|
|
{
|
|
|
|
name: 'Attack Map',
|
|
|
|
link: '/map/',
|
|
|
|
},
|
2022-01-29 00:00:29 +00:00
|
|
|
{
|
|
|
|
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',
|
2023-04-25 13:03:26 +00:00
|
|
|
link: 'https://github.com/telekom-security/tpotce/',
|
2022-01-29 00:00:29 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'T-Pot ReadMe',
|
|
|
|
link: 'https://github.com/telekom-security/tpotce/blob/master/README.md',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
};
|