Security Analysis of DKG Threshold Raising Vulnerability
02/21/2024
Last updated
02/21/2024
Last updated
By Max
Trail of Bits recently disclosed a vulnerability in the MPC threshold signature scheme that affects the DKG (Distributed Key Generation) protocol. “The vulnerability allows a single malicious participant to surreptitiously raise the threshold required to reconstruct the shared key, which could cause signatures generated using the shared key to be invalid”, according to Trail of Bits [11]. In extreme cases, it may even result in the private key being unable to be reconstructed.
For example, suppose the expected outcome of the DKG protocol is , generating three shards in total, with any two parties capable of executing MPC signature or private key reconstruction. However, exploiting this vulnerability could result in shards, where three shards are generated, but any two parties cannot execute MPC signature or private key reconstruction, requiring the participation of all three parties. In the worst case, if the DKG protocol implementation lacks comprehensive checks, it could even generate shards. Since only three shards are actually saved, MPC signature or private key reconstruction can never be executed, leading directly to asset loss.
On January 3, 2024, Trail of Bits disclosed a security vulnerability to Safeheron via email. After analysis and research, Safeheron patched the vulnerability on January 4, 2024, and publicly released a fix patch (see the "Remediation" section of this article). With permission from Trail of Bits, Safeheron also promptly informed security partners and other vendors about this vulnerability.
Safeheron's SaaS product is not affected by this vulnerability.
In Secure Multi-Party Computation, there is no trusted third-party dealer, and multiple parties jointly generate the secret. At no time and no place does the complete secret appear.
To achieve this goal, in 1991, a distributed key generation (DKG) protocol was proposed [5], an extension based on Shamir's secret sharing scheme [1] [2] [3] [4]. The protocol achieves the following objective:
Participants jointly generate a set of key shards under a threshold scheme, where any fewer thantparticipants have no knowledge of the actual private key.
Typical MPC multisignature protocols, such as GG18[6], GG20[7], CMP[8] based on threshold schemes, Frost[10], and DMZ21[9] all define the distributed key generation (DKG, Distributed Key Generation) sub-protocol. The shard generation principles of those protocols are similar. Now, let's introduce the core idea.
Given an elliptic curve group , each participant executes the following algorithm:
randomly generates a key ;
randomly selects a polynomial of degree ;
Choose random numbers ;
Construct the polynomial , noting that is the secret value.
Calculate the commitment of VSSS (Verifiable Secret Sharing Scheme):
distributes shards to participants , and broadcasts
, upon receiving from others,
Verifies the validity of the shard; if the following equation holds, the shard is valid; otherwise, it is invalid:
Calculates their own shard:
Taking as an example, execute the DKG protocol and generate their respective shards , as shown in the following diagram:
The private key (the actual private key) can be recovered with a threshold of 2, satisfying not only
but also the following equations, meaning any two key shards can reconstruct the private key:
Here, each denotes a Lagrange interpolation coefficient, which is public as it can be calculated from the publicly known index data, as follows:
,,
, ,
, ,
, ,
Note that for typical MPC multisignature protocols, like GG18 and GG20, the threshold for MPC multi-signature and private key reconstruction is the same. For better understanding, only private key reconstruction is mentioned here.
Generally, MPC multisignature can be completed only if the private key can be reconstructed or vice versa. It's worth emphasizing again that the private key will never be reconstructed during MPC multisignature, nor will it reveal any information about each other's private key shard.
In the specific implementation of the DKG protocol, and other MPC signature protocols, if the verification of the commitment for VSSS only verifies the correctness of the shard but not the degree of the random polynomial, the following attack method can be used:
A single malicious participant (), to modify the final shard threshold from to , where , executes the following malicious protocol:
randomly generates a key ;
randomly selects a polynomial of degree , noting that this is different from the expected , ;
Choose random numbers ;
Construct the polynomial , noting that u_i is the secret value.
Calculate the commitment of VSSS (Verifiable Secret Sharing Scheme):
distributes shards to participants , and broadcasts to everyone.
, upon receiving from others,
Verifies the legitimacy of the shard; if the following equation holds, the shard is valid; otherwise, it is invalid:
Calculates their own shard:
As a result, when the DKG protocol ends, the final shards have the threshold modified to the malicious participant's , higher than the expected thresholdt. Taking as an example, if is the malicious party, and execute the DKG protocol, they generate their respective shards , as shown in the following diagram:
Note that the threshold of is maliciously modified to 3, not the expected 2. This means that cannot be reconstructed with a threshold of 2, and the attack is successful. The following equations do not hold:
Using the above attack method, a single malicious attacker can potentially raise the final threshold of shards. The DKG protocols in typical MPC multisignature protocols, such as GG18[6], GG20[7], CMP[8] based on threshold schemes, Frost[10], and DMZ21[9] are all affected.
Specifically, if the DKG protocol's expected threshold is , meaning any parties can recover the private key/signature, then a single malicious attacker can potentially modify the threshold to .
Scenario 1: . Simply elevate the threshold for recovering the private key/signature. For instance, if three shards are generated with an expected threshold of 2, and it's maliciously modified to 3, all three shards must participate to successfully recover the private key/MPC signature.
Scenario 2: . There are 2 cases:
If the DKG protocol includes comprehensive checks, such as private key recoverability verification (refer to Safeheron implementation), then the DKG protocol will not complete successfully, and no further problems will occur.
If there are no additional checks in the DKG protocol, then the DKG protocol will complete normally, but the final shards generated will never be able to recover the private key or signature, leading directly to asset loss. It's worth noting that some open-source algorithm libraries lack such checks, leading to serious consequences.
Note: There is a special case where if (e.g., shard modes like , , , etc.) and necessary private key recoverability checks are in place, this scenario is not affected by the vulnerability.
To fix the vulnerability, it is necessary to check the length of the commitment in the Feldman VSSS algorithm to ensure it matches the threshold.
Specifically: , upon receiving from others,
Verifies the validity of the shard:
Validate the equation. If the following equation does not hold, the shard is invalid.
Validate the equation. If the following equation does not hold, the shard is invalid.
Calculate their own shard:
The essence of the remediation is to constrain the degree of the random polynomial to lock the shard threshold.
For specific fixes, refer to:
After understanding the vulneribility and its exploitation method, it is clear that this is a vulnerability at the protocol implementation level. The damage caused by exploiting this vulnerability varies depending on the situation and can lead to extremely serious consequences in extreme cases. Safeheron's SaaS products, using a threshold scheme and having necessary recoverability checks (based on zero-knowledge proof), is not affected by this vulnerability.
Achieving trustworthy security requires persistent meticulous refinement. "Rome wasn't built in a day." Stay humble, stay grounded, and let security truly serve the industry.
The responsible security disclosure by the Trail of Bits team demonstrates the openness and collaboration in the security industry. Safeheron also actively engages in communication with more security partners, and we are pleased to be part of this remediation and disclosure process.
Creating a secure industry environment requires dialogue with vendors, security practitioners, and users. Through collective dedication and effort from all sides, security can empower the industry.
[1] Secret sharing
[4] A Practical Scheme for Non-interactive Verifiable Secret Sharing
[5] Non-Interactive and Information-Theoretic Secure Verifiable Secret Sharing
[6] GG18: Fast Multiparty Threshold ECDSA with Fast Trustless Setup
[7] GG20: One Round Threshold ECDSA with Identifiable Abort
[8] CMP: UC Non-Interactive, Proactive, Threshold ECDSA with Identifiable Aborts
[10] FROST: Flexible Round-Optimized Schnorr Threshold Signatures