A vulnerability in the add_share function of the Rewards pallet (part of the ORML repository) can lead to an uncaught Rust panic when handling user-provided input exceeding the u128 range.
rewards/src/lib.rs)add_share accepting unvalidated large u128 inputsadd_share performs arithmetic on user-supplied values (add_amount) of type T::Share (mapped to u128 in Acala).add_amount is large enough (e.g., i128::MAX), the intermediate result may overflow and panic on the cast to u128.A malicious user submitting a specially crafted extrinsic can cause a panic in the runtime:
This issue is exploitable in production if there exists at least one rewards pool where reward tokens exceed twice the collateral tokens, allowing sufficiently large multiplication to exceed u128 bounds.
The patch have been backported to following release branches:
A 1.0.1 patch release is made with this fix.
{
"cwe_ids": [
"CWE-248"
],
"github_reviewed": true,
"github_reviewed_at": "2025-02-14T17:26:08Z",
"nvd_published_at": null,
"severity": "HIGH"
}