From 4f57fa4d0e5f90b49828c8c233799f38ea283661 Mon Sep 17 00:00:00 2001 From: Minecon724 Date: Fri, 21 Mar 2025 08:06:58 +0100 Subject: [PATCH] Tweak captcha length From 6 to 4-5 (random) chars Signed-off-by: Minecon724 --- services/context/captcha.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/services/context/captcha.go b/services/context/captcha.go index da837acb00..58c9205d54 100644 --- a/services/context/captcha.go +++ b/services/context/captcha.go @@ -5,6 +5,7 @@ package context import ( "fmt" + "math/rand" "sync" "code.gitea.io/gitea/modules/base" @@ -55,7 +56,9 @@ func GetImageCaptcha() string { imageCaptchaOnce.Do(func() { captcha.SetCustomStore(&imageCaptchaStore{c: cache.GetCache()}) }) - return captcha.New() + + length := 4 + rand.Intn(2) // 4 or 5 chars + return captcha.NewLen(length) } // SetCaptchaData sets common captcha data