From ed22579bed956d6ca7783694a74f9b46b0556674 Mon Sep 17 00:00:00 2001 From: fen Date: Thu, 17 Sep 2026 10:31:06 -0500 Subject: [PATCH] #243 pentest follow-up: reserve mine/unlock/guess/f custom slugs --- internal/store/customslug.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/store/customslug.go b/internal/store/customslug.go index 75013f6..65f0ae4 100644 --- a/internal/store/customslug.go +++ b/internal/store/customslug.go @@ -13,6 +13,7 @@ var reservedSlugs = map[string]bool{ "api": true, "raw": true, "can": true, "cans": true, "public": true, "history": true, "static": true, "assets": true, "favicon.ico": true, "new": true, "login": true, "logout": true, "admin": true, "settings": true, + "mine": true, "unlock": true, "guess": true, "f": true, } var ErrInvalidSlug = errors.New("custom slug must be 1-64 chars: letters, digits, dash, underscore; must start with letter or digit")