From d57a5985982ed2ba386eb4c0b4ca05ab3498238a Mon Sep 17 00:00:00 2001 From: memdmp Date: Sat, 11 Jan 2025 20:20:16 +0100 Subject: feat: initial commit --- src/routes/canaries/canaries.ts | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/routes/canaries/canaries.ts (limited to 'src/routes/canaries/canaries.ts') 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', +); -- cgit v1.2.3