aboutsummaryrefslogtreecommitdiffstats
path: root/src/routes/canaries/canaries.ts
diff options
context:
space:
mode:
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',
+);