acl: use constant time comparing to check token (#6943)
This commit is contained in:
parent
26d8dd8aac
commit
ae23376218
|
@ -2,6 +2,8 @@ package token
|
|||
|
||||
import (
|
||||
"sync"
|
||||
|
||||
"crypto/subtle"
|
||||
)
|
||||
|
||||
type TokenSource bool
|
||||
|
@ -166,5 +168,5 @@ func (t *Store) IsAgentMasterToken(token string) bool {
|
|||
t.l.RLock()
|
||||
defer t.l.RUnlock()
|
||||
|
||||
return (token != "") && (token == t.agentMasterToken)
|
||||
return (token != "") && (subtle.ConstantTimeCompare([]byte(token), []byte(t.agentMasterToken)) == 1)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue