fix(sdk-lib-mpc): authenticate signatureR in DKLS DSG round 4 messages#8470
Draft
mrdanish26 wants to merge 1 commit intomasterfrom
Draft
fix(sdk-lib-mpc): authenticate signatureR in DKLS DSG round 4 messages#8470mrdanish26 wants to merge 1 commit intomasterfrom
mrdanish26 wants to merge 1 commit intomasterfrom
Conversation
signatureR was wrapped with signature: "" (hardcoded empty string) in encryptAndAuthOutgoingMessages(), leaving the ECDSA nonce commitment R unauthenticated. A MITM could substitute a crafted R value and have it used by combinePartialSignatures() to produce an attacker-controlled signature component. Fix: - Sign signatureR bytes with the party GPG key via detachSignData in encryptAndAuthOutgoingMessages() - Verify signatureR in decryptAndVerifyIncomingMessages() and return it in the result so callers can use the authenticated value - Transmit signatureRSignature in getSignatureShareRoundThree() so the server can authenticate signatureR before combining - Update signBitgoMPCv2Round3 (server simulation) to pass signatureR to decryptAndVerifyIncomingMessages for end-to-end verification - Add unit tests covering sign, verify, tamper detection, and wrong-key rejection for signatureR Ticket: WAL-376 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
signatureRbytes with the party GPG key inencryptAndAuthOutgoingMessages()— previously hardcodedsignature: ""left the ECDSA nonce commitment R unauthenticated (F-04, severity: HIGH)signatureRindecryptAndVerifyIncomingMessages()before returning it to callerssignatureRSignatureingetSignatureShareRoundThree()so the server can authenticate R before passing it tocombinePartialSignatures()Test plan
sdk-lib-mpcunit tests passsdk-coreunit tests passTicket: WAL-376
🤖 Generated with Claude Code