-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from flanksource/add-webhook-verification
feat: add webhook verification
- Loading branch information
Showing
5 changed files
with
177 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,151 @@ | ||
package tenant | ||
|
||
import ( | ||
"crypto/hmac" | ||
"crypto/sha256" | ||
"encoding/base64" | ||
"fmt" | ||
"net/http" | ||
"strconv" | ||
"strings" | ||
"time" | ||
) | ||
|
||
var base64enc = base64.StdEncoding | ||
|
||
type Webhook struct { | ||
key []byte | ||
} | ||
|
||
const webhookSecretPrefix = "whsec_" | ||
|
||
var tolerance time.Duration = 5 * time.Minute | ||
|
||
var ( | ||
errRequiredHeaders = fmt.Errorf("Missing Required Headers") | ||
errInvalidHeaders = fmt.Errorf("Invalid Signature Headers") | ||
errNoMatchingSignature = fmt.Errorf("No matching signature found") | ||
errMessageTooOld = fmt.Errorf("Message timestamp too old") | ||
errMessageTooNew = fmt.Errorf("Message timestamp too new") | ||
) | ||
|
||
func NewWebhook(secret string) (*Webhook, error) { | ||
key, err := base64enc.DecodeString(strings.TrimPrefix(secret, webhookSecretPrefix)) | ||
if err != nil { | ||
return nil, err | ||
} | ||
return &Webhook{ | ||
key: key, | ||
}, nil | ||
} | ||
|
||
func NewWebhookRaw(secret []byte) (*Webhook, error) { | ||
return &Webhook{ | ||
key: secret, | ||
}, nil | ||
} | ||
|
||
// Verify validates the payload against the svix signature headers | ||
// using the webhooks signing secret. | ||
// | ||
// Returns an error if the body or headers are missing/unreadable | ||
// or if the signature doesn't match. | ||
func (wh *Webhook) Verify(payload []byte, headers http.Header) error { | ||
return wh.verify(payload, headers, true) | ||
} | ||
|
||
// VerifyIgnoringTimestamp validates the payload against the svix signature headers | ||
// using the webhooks signing secret. | ||
// | ||
// Returns an error if the body or headers are missing/unreadable | ||
// or if the signature doesn't match. | ||
// | ||
// WARNING: This function does not check the signature's timestamp. | ||
// We recommend using the `Verify` function instead. | ||
func (wh *Webhook) VerifyIgnoringTimestamp(payload []byte, headers http.Header) error { | ||
return wh.verify(payload, headers, false) | ||
} | ||
|
||
func (wh *Webhook) verify(payload []byte, headers http.Header, enforceTolerance bool) error { | ||
msgId := headers.Get("svix-id") | ||
msgSignature := headers.Get("svix-signature") | ||
msgTimestamp := headers.Get("svix-timestamp") | ||
|
||
if msgId == "" || msgSignature == "" || msgTimestamp == "" { | ||
msgId = headers.Get("webhook-id") | ||
msgSignature = headers.Get("webhook-signature") | ||
msgTimestamp = headers.Get("webhook-timestamp") | ||
if msgId == "" || msgSignature == "" || msgTimestamp == "" { | ||
return errRequiredHeaders | ||
} | ||
} | ||
|
||
timestamp, err := parseTimestampHeader(msgTimestamp) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
if enforceTolerance { | ||
if err := verifyTimestamp(timestamp); err != nil { | ||
return err | ||
} | ||
} | ||
|
||
computedSignature, err := wh.Sign(msgId, timestamp, payload) | ||
if err != nil { | ||
return err | ||
} | ||
expectedSignature := []byte(strings.Split(computedSignature, ",")[1]) | ||
|
||
passedSignatures := strings.Split(msgSignature, " ") | ||
for _, versionedSignature := range passedSignatures { | ||
sigParts := strings.Split(versionedSignature, ",") | ||
if len(sigParts) < 2 { | ||
continue | ||
} | ||
version := sigParts[0] | ||
signature := []byte(sigParts[1]) | ||
|
||
if version != "v1" { | ||
continue | ||
} | ||
|
||
if hmac.Equal(signature, expectedSignature) { | ||
return nil | ||
} | ||
} | ||
return errNoMatchingSignature | ||
} | ||
|
||
func (wh *Webhook) Sign(msgId string, timestamp time.Time, payload []byte) (string, error) { | ||
toSign := fmt.Sprintf("%s.%d.%s", msgId, timestamp.Unix(), payload) | ||
|
||
h := hmac.New(sha256.New, wh.key) | ||
h.Write([]byte(toSign)) | ||
sig := make([]byte, base64enc.EncodedLen(h.Size())) | ||
base64enc.Encode(sig, h.Sum(nil)) | ||
return fmt.Sprintf("v1,%s", sig), nil | ||
|
||
} | ||
|
||
func parseTimestampHeader(timestampHeader string) (time.Time, error) { | ||
timeInt, err := strconv.ParseInt(timestampHeader, 10, 64) | ||
if err != nil { | ||
return time.Time{}, errInvalidHeaders | ||
} | ||
timestamp := time.Unix(timeInt, 0) | ||
return timestamp, nil | ||
} | ||
|
||
func verifyTimestamp(timestamp time.Time) error { | ||
now := time.Now() | ||
|
||
if now.Sub(timestamp) > tolerance { | ||
return errMessageTooOld | ||
} | ||
if timestamp.Unix() > now.Add(tolerance).Unix() { | ||
return errMessageTooNew | ||
} | ||
|
||
return nil | ||
} |