aboutsummaryrefslogtreecommitdiffstats
path: root/src/routes/canaries/canaries.ts
diff options
context:
space:
mode:
authorLibravatarLarge Libravatar memdmp <memdmpmemewarenet>2025-01-11 20:20:16 +0100
committerLibravatarLarge Libravatar memdmp <memdmpmemewarenet>2025-01-11 20:20:16 +0100
commitd57a5985982ed2ba386eb4c0b4ca05ab3498238a (patch)
treeca3a20c0fa14646d0f87902541a32df9060df3c7 /src/routes/canaries/canaries.ts
downloadmem-estrogen-zone-d57a5985982ed2ba386eb4c0b4ca05ab3498238a.tar.gz
mem-estrogen-zone-d57a5985982ed2ba386eb4c0b4ca05ab3498238a.tar.bz2
mem-estrogen-zone-d57a5985982ed2ba386eb4c0b4ca05ab3498238a.tar.lz
mem-estrogen-zone-d57a5985982ed2ba386eb4c0b4ca05ab3498238a.zip

feat: initial commit

Diffstat (limited to 'src/routes/canaries/canaries.ts')
-rw-r--r--src/routes/canaries/canaries.ts25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/routes/canaries/canaries.ts b/src/routes/canaries/canaries.ts
new file mode 100644
index 0000000..de5c44f
--- /dev/null
+++ b/src/routes/canaries/canaries.ts
@@ -0,0 +1,25 @@
+export const canaries: Canary[] = [];
+export class Canary {
+ public constructor(
+ public name: string,
+ public description: string,
+ public url: string,
+ public keyIdentifier: string,
+ ) {
+ canaries.push(this);
+ }
+}
+new Canary(
+ 'estrogen.zone, memdmp',
+ 'This canary is responsible for services hosted around estrogen.zone and yuridick.gay',
+ '/canaries/memdmp:estrogen.zone',
+ 'memdmp',
+);
+
+new Canary(
+ 'kyun.host',
+ 'This canary is responsible for the VPS provider "kyun.host"',
+ // '/canaries/napatha:kyun.host',
+ 'https://files.kyun.host/canary.txt',
+ 'napatha',
+);