1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-19 00:09:16 +08:00

feat: 2FA支持前一个验证码 (#5942)

Refs #5940
This commit is contained in:
igophper 2024-07-26 11:15:53 +08:00 committed by GitHub
parent d3d018bd44
commit 3b057f2c27
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -40,7 +40,6 @@ func ValidCode(code, intervalStr, secret string) bool {
}
totp := gotp.NewTOTP(secret, 6, interval, nil)
now := time.Now().Unix()
strInt64 := strconv.FormatInt(now, 10)
id16, _ := strconv.Atoi(strInt64)
return totp.Verify(code, int64(id16))
prevTime := now - int64(interval)
return totp.Verify(code, now) || totp.Verify(code, prevTime)
}