author | Alberto Bertogli
<albertito@blitiri.com.ar> 2024-05-10 15:47:22 UTC |
committer | Alberto Bertogli
<albertito@blitiri.com.ar> 2024-05-10 15:47:22 UTC |
parent | aae0367c60ba63f27d5c41e84c9f94c78d2e37f2 |
internal/dkim/header.go | +8 | -2 |
internal/dkim/header_test.go | +12 | -0 |
diff --git a/internal/dkim/header.go b/internal/dkim/header.go index ece056d..da3a6a6 100644 --- a/internal/dkim/header.go +++ b/internal/dkim/header.go @@ -144,6 +144,7 @@ var ( errUnsupportedHash = errors.New("unsupported hash") errUnsupportedKeyType = errors.New("unsupported key type") errMissingRequiredTag = errors.New("missing required tag") + errNegativeTimestamp = errors.New("negative timestamp") ) // String replacer that removes whitespace. @@ -257,11 +258,16 @@ func dkimSignatureFromHeader(header string) (*dkimSignature, error) { } func unixStrToTime(s string) (time.Time, error) { - ti, err := strconv.ParseUint(s, 10, 64) + // Technically the timestamp is an "unsigned decimal integer", but since + // time.Unix takes an int64, we use that and check it's positive. + ti, err := strconv.ParseInt(s, 10, 64) if err != nil { return time.Time{}, err } - return time.Unix(int64(ti), 0), nil + if ti < 0 { + return time.Time{}, errNegativeTimestamp + } + return time.Unix(ti, 0), nil } type keyType string diff --git a/internal/dkim/header_test.go b/internal/dkim/header_test.go index 5902bb1..1ebfbdf 100644 --- a/internal/dkim/header_test.go +++ b/internal/dkim/header_test.go @@ -146,6 +146,18 @@ func TestSignatureFromHeader(t *testing.T) { want: nil, err: strconv.ErrSyntax, }, + { + // Invalid t= tag. + in: "v=1; a=rsa-sha256; t=-12345", + want: nil, + err: errNegativeTimestamp, + }, + { + // Invalid x= tag. + in: "v=1; a=rsa-sha256; x=-1234", + want: nil, + err: errNegativeTimestamp, + }, { // Unknown hash algorithm. in: "v=1; a=rsa-sxa666",