|
| 1 | +package com.cosium.standard_webhooks_consumer; |
| 2 | + |
| 3 | +import static java.util.Objects.requireNonNull; |
| 4 | + |
| 5 | +import java.net.http.HttpHeaders; |
| 6 | +import java.time.Clock; |
| 7 | +import java.time.Duration; |
| 8 | +import java.util.ArrayList; |
| 9 | +import java.util.List; |
| 10 | +import org.slf4j.Logger; |
| 11 | +import org.slf4j.LoggerFactory; |
| 12 | + |
| 13 | +/** |
| 14 | + * @author Réda Housni Alaoui |
| 15 | + */ |
| 16 | +public class WebhookSignatureVerifier { |
| 17 | + |
| 18 | + private static final Logger LOGGER = LoggerFactory.getLogger(WebhookSignatureVerifier.class); |
| 19 | + |
| 20 | + private static final CompositeVerificationKeyParser VERIFICATION_KEY_PARSER = |
| 21 | + new CompositeVerificationKeyParser(SecretKey::parseKey, PublicKey::parseKey); |
| 22 | + |
| 23 | + private static final String MESSAGE_ID_HEADER_NAME = "webhook-id"; |
| 24 | + private static final String MESSAGE_TIMESTAMP_HEADER_NAME = "webhook-timestamp"; |
| 25 | + |
| 26 | + private static final Duration DEFAULT_MESSAGE_TIMESTAMP_ALLOWED_SKEW = Duration.ofMinutes(5); |
| 27 | + |
| 28 | + private final List<VerificationKey> verificationKeys; |
| 29 | + private final Clock clock; |
| 30 | + private final Duration messageTimestampAllowedSkew; |
| 31 | + |
| 32 | + private WebhookSignatureVerifier(Builder builder) { |
| 33 | + |
| 34 | + verificationKeys = |
| 35 | + builder.serializedVerificationKeys.stream().map(VERIFICATION_KEY_PARSER::parse).toList(); |
| 36 | + clock = builder.clock; |
| 37 | + messageTimestampAllowedSkew = builder.messageTimestampAllowedSkew; |
| 38 | + } |
| 39 | + |
| 40 | + /** |
| 41 | + * @param serializedVerificationKey e.g. "v1,K5oZfzN95Z9UVu1EsfQmfVNQhnkZ2pj9o9NDN/H/pI4=" |
| 42 | + */ |
| 43 | + public static Builder builder(String serializedVerificationKey) { |
| 44 | + return new Builder(serializedVerificationKey); |
| 45 | + } |
| 46 | + |
| 47 | + public void verify(HttpHeaders headers, String payload) |
| 48 | + throws WebhookSignatureVerificationException { |
| 49 | + |
| 50 | + String messageId = headers.firstValue(MESSAGE_ID_HEADER_NAME).orElse(null); |
| 51 | + if (messageId == null || messageId.isBlank()) { |
| 52 | + throw new WebhookSignatureVerificationException( |
| 53 | + "No value found for header <%s>".formatted(MESSAGE_ID_HEADER_NAME)); |
| 54 | + } |
| 55 | + |
| 56 | + String messageTimestampAsString = |
| 57 | + headers.firstValue(MESSAGE_TIMESTAMP_HEADER_NAME).orElse(null); |
| 58 | + if (messageTimestampAsString == null || messageTimestampAsString.isBlank()) { |
| 59 | + throw new WebhookSignatureVerificationException( |
| 60 | + "No value found for header <%s>".formatted(MESSAGE_TIMESTAMP_HEADER_NAME)); |
| 61 | + } |
| 62 | + |
| 63 | + long timestamp = verifyTimestamp(messageTimestampAsString); |
| 64 | + |
| 65 | + List<WebhookSignatureVerificationException> verificationExceptions = new ArrayList<>(); |
| 66 | + |
| 67 | + List<IdentifiedSignature> signatures = IdentifiedSignature.parseAtLeastOne(headers); |
| 68 | + for (IdentifiedSignature signature : signatures) { |
| 69 | + for (VerificationKey verificationKey : verificationKeys) { |
| 70 | + SignatureSchemeId signatureSchemeId = signature.schemeId(); |
| 71 | + if (!verificationKey.supports(signatureSchemeId)) { |
| 72 | + LOGGER.debug("{} does not support {}", verificationKey, signatureSchemeId); |
| 73 | + continue; |
| 74 | + } |
| 75 | + try { |
| 76 | + verificationKey.verify(messageId, timestamp, payload, signature.content()); |
| 77 | + } catch (WebhookSignatureVerificationException e) { |
| 78 | + verificationExceptions.add(e); |
| 79 | + continue; |
| 80 | + } |
| 81 | + return; |
| 82 | + } |
| 83 | + } |
| 84 | + |
| 85 | + if (verificationExceptions.isEmpty()) { |
| 86 | + throw new WebhookSignatureVerificationException( |
| 87 | + "No supporting verification key found for any signature among %s".formatted(signatures)); |
| 88 | + } |
| 89 | + |
| 90 | + WebhookSignatureVerificationException collectingException = |
| 91 | + new WebhookSignatureVerificationException( |
| 92 | + "No signature among %s is valid".formatted(signatures)); |
| 93 | + verificationExceptions.forEach(collectingException::addSuppressed); |
| 94 | + throw collectingException; |
| 95 | + } |
| 96 | + |
| 97 | + private long verifyTimestamp(String messageTimestamp) |
| 98 | + throws WebhookSignatureVerificationException { |
| 99 | + long nowInSeconds = Duration.ofMillis(clock.millis()).toSeconds(); |
| 100 | + |
| 101 | + long timestamp; |
| 102 | + try { |
| 103 | + timestamp = Long.parseLong(messageTimestamp); |
| 104 | + } catch (NumberFormatException e) { |
| 105 | + throw new WebhookSignatureVerificationException( |
| 106 | + "Cannot parse timestamp <%s>".formatted(messageTimestamp)); |
| 107 | + } |
| 108 | + |
| 109 | + if (timestamp < (nowInSeconds - messageTimestampAllowedSkew.toSeconds())) { |
| 110 | + throw new WebhookSignatureVerificationException( |
| 111 | + "Message timestamp <%s seconds> is too old compared to the current timestamp <%s seconds>" |
| 112 | + .formatted(timestamp, nowInSeconds)); |
| 113 | + } |
| 114 | + if (timestamp > (nowInSeconds + messageTimestampAllowedSkew.toSeconds())) { |
| 115 | + throw new WebhookSignatureVerificationException( |
| 116 | + "Message timestamp <%s seconds> is too new compared to the current timestamp <%s seconds>" |
| 117 | + .formatted(timestamp, nowInSeconds)); |
| 118 | + } |
| 119 | + return timestamp; |
| 120 | + } |
| 121 | + |
| 122 | + public static class Builder { |
| 123 | + private final List<String> serializedVerificationKeys = new ArrayList<>(); |
| 124 | + private Duration messageTimestampAllowedSkew = DEFAULT_MESSAGE_TIMESTAMP_ALLOWED_SKEW; |
| 125 | + private Clock clock = Clock.systemDefaultZone(); |
| 126 | + |
| 127 | + private Builder(String serializedVerificationKey) { |
| 128 | + serializedVerificationKeys.add(requireNonNull(serializedVerificationKey)); |
| 129 | + } |
| 130 | + |
| 131 | + /** |
| 132 | + * @param serializedVerificationKey e.g. "v1,K5oZfzN95Z9UVu1EsfQmfVNQhnkZ2pj9o9NDN/H/pI4=" |
| 133 | + */ |
| 134 | + public Builder addSerializedVerificationKey(String serializedVerificationKey) { |
| 135 | + serializedVerificationKeys.add(requireNonNull(serializedVerificationKey)); |
| 136 | + return this; |
| 137 | + } |
| 138 | + |
| 139 | + /** |
| 140 | + * @param messageTimestampAllowedSkew Allowable tolerance of the current timestamp to prevent |
| 141 | + * replay attacks. |
| 142 | + */ |
| 143 | + public Builder messageTimestampAllowedSkew(Duration messageTimestampAllowedSkew) { |
| 144 | + this.messageTimestampAllowedSkew = requireNonNull(messageTimestampAllowedSkew); |
| 145 | + return this; |
| 146 | + } |
| 147 | + |
| 148 | + public Builder clock(Clock clock) { |
| 149 | + this.clock = requireNonNull(clock); |
| 150 | + return this; |
| 151 | + } |
| 152 | + |
| 153 | + public WebhookSignatureVerifier build() { |
| 154 | + return new WebhookSignatureVerifier(this); |
| 155 | + } |
| 156 | + } |
| 157 | +} |
0 commit comments