fix: Constant time comparison for webhook authentication

This commit is contained in:
jamesread 2026-01-06 22:11:41 +00:00
parent f22b3953b1
commit 0b072db36d
2 changed files with 11 additions and 9 deletions

View File

@ -2,6 +2,7 @@ package webhooks
import (
"crypto/hmac"
"crypto/subtle"
"crypto/sha1"
"crypto/sha256"
"encoding/hex"
@ -105,7 +106,9 @@ func (v *AuthVerifier) verifyBearer(r *http.Request) bool {
}
token := strings.TrimPrefix(authHeader, "Bearer ")
return token == v.config.Secret
tokenBytes := []byte(token)
secretBytes := []byte(v.config.Secret)
return len(tokenBytes) == len(secretBytes) && subtle.ConstantTimeCompare(tokenBytes, secretBytes) == 1
}
func (v *AuthVerifier) verifyBasic(r *http.Request) bool {

View File

@ -12,7 +12,6 @@ import (
type WebhookMatcher struct {
config config.WebhookConfig
req *http.Request
body interface{}
bodyBytes []byte
}
@ -50,9 +49,9 @@ func (m *WebhookMatcher) matchHeaders() bool {
actualValue := m.req.Header.Get(key)
if !m.compareValues(actualValue, expectedValue) {
log.WithFields(log.Fields{
"header": key,
"expected": expectedValue,
"actual": actualValue,
"header": key,
"expected": expectedValue,
"actual": actualValue,
}).Debugf("Header mismatch")
return false
}
@ -70,9 +69,9 @@ func (m *WebhookMatcher) matchQuery() bool {
actualValue := query.Get(key)
if !m.compareValues(actualValue, expectedValue) {
log.WithFields(log.Fields{
"query": key,
"expected": expectedValue,
"actual": actualValue,
"query": key,
"expected": expectedValue,
"actual": actualValue,
}).Debugf("Query parameter mismatch")
return false
}
@ -144,7 +143,7 @@ func (m *WebhookMatcher) ExtractArguments() (map[string]string, error) {
value, err := matcher.ExtractValue(jsonPath)
if err != nil {
log.WithFields(log.Fields{
"argName": argName,
"argName": argName,
"jsonPath": jsonPath,
"error": err,
}).Debugf("Failed to extract value")