Authy
This commit is contained in:
2
auth.go
2
auth.go
@ -77,7 +77,7 @@ func usePassword(user string, pass string, ip string) bool {
|
||||
tok := toks[user]
|
||||
delete(toks, user)
|
||||
if time.Since(tok.timestamp) > (time.Minute * 5) {
|
||||
log.LogWarn(fmt.Sprintf("%s attempted to use expired token.", user))
|
||||
log.LogWarn(fmt.Sprintf("%s attempted to use expired token. %+v", user, time.Since(tok.timestamp)))
|
||||
return false
|
||||
}
|
||||
if tok.ip != ip {
|
||||
|
||||
Reference in New Issue
Block a user