-
Notifications
You must be signed in to change notification settings - Fork 53
fix(webhooks): accept raw request bytes for signature verification #1578
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
nicknisi
wants to merge
9
commits into
main
Choose a base branch
from
fix/webhook-signature-raw-bytes
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
6578173
fix(webhooks): accept raw request bytes for signature verification
nicknisi d16dbdf
chore: formatting
nicknisi a20bd27
fix(webhooks): preserve BOM bytes in raw-payload decoding
nicknisi 151b99f
refactor(webhooks): extract shared payload decoder, drop | unknown
nicknisi 17ca7a9
fix(actions): parse raw-bytes payloads before deserialization
nicknisi 92b1e79
chore: formatting
nicknisi 15d6ccf
fix(webhooks): use realm-agnostic binary payload detection
devin-ai-integration[bot] f4cd637
fix(webhooks): widen WebhookPayload to accept any object type
nicknisi 84a4da8
chore: formatting
nicknisi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,27 @@ | ||
| export type WebhookPayload = string | Uint8Array | ArrayBuffer | object; | ||
|
|
||
| // Realm-agnostic check for binary payloads. `instanceof` fails when the | ||
| // value originates from a different JS realm (Workers, iframes, VM contexts). | ||
| export function isBinaryPayload(payload: WebhookPayload): boolean { | ||
| return ( | ||
| ArrayBuffer.isView(payload) || | ||
| Object.prototype.toString.call(payload) === '[object ArrayBuffer]' | ||
| ); | ||
| } | ||
|
|
||
| // Decodes raw byte payloads to a UTF-8 string without stripping a BOM prefix. | ||
| // Used by both signature verification (HMAC input) and post-verification | ||
| // parsing (JSON.parse input) to guarantee the same bytes are signed and parsed. | ||
| export function decodePayloadToString(payload: WebhookPayload): string { | ||
| if (typeof payload === 'string') { | ||
| return payload; | ||
| } | ||
| if (isBinaryPayload(payload)) { | ||
| const bytes = | ||
| Object.prototype.toString.call(payload) === '[object ArrayBuffer]' | ||
| ? new Uint8Array(payload as ArrayBuffer) | ||
| : (payload as Uint8Array); | ||
| return new TextDecoder('utf-8', { ignoreBOM: true }).decode(bytes); | ||
| } | ||
| return JSON.stringify(payload); | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.