#43712 [SC-Low] Silent ETH transfer failure in `TRANSFER_NATIVE` command leads to permament locking of user funds
Description
Brief/Intro
Vulnerability Details
} else if (command == Commands.TRANSFER_NATIVE) {
(address recipient, uint256 amount) = abi.decode(_inputs, (address, uint256));
(bool success, ) = payable(recipient).call{value: amount}("");
// success is not checked
}Impact Details
References
Proof of Concept
Proof of Concept
Previous#43981 [SC-Low] Silent ETH transfer failure in `TRANSFER_NATIVE` command can permanently lock user fundsNext#44081 [SC-Low] Users ETH could be stuck forever without a way to recover it
Was this helpful?