Frontier's modexp
precompile uses num-bigint
crate under the hood. In the implementation, the cases for modulus being even and modulus being odd are treated separately. Odd modulus uses the fast Montgomery multiplication, and even modulus uses the slow plain power algorithm. This gas cost discrepancy was not accounted for in the modexp
precompile, leading to possible denial of service attacks.
No fixes for num-bigint
is currently available, and thus this advisory will be first fixed in the short term by raising the gas costs for even modulus, and in the long term fixing it in num-bigint
or switching to another modexp implementation.
The short-term fix for Frontier is deployed at PR 1017.
The recommendations are as follows:
None.
A similar issue was presented in Geth's implementation and the fix can be found here.
{ "nvd_published_at": "2023-03-22T21:15:00Z", "cwe_ids": [ "CWE-682" ], "severity": "HIGH", "github_reviewed": true, "github_reviewed_at": "2023-03-21T22:31:30Z" }