code-423n4 / 2024-06-renzo-mitigation-findings

0 stars 0 forks source link

H-01 MitigationConfirmed #17

Open c4-bot-1 opened 1 month ago

c4-bot-1 commented 1 month ago

Lines of code

Vulnerability details

See:

Finding Mitigation
H-01: Withdrawals can be locked forever if recipient is a contract Pull Request

Navigating to H-01 from the previous contest we can see that there was a vulnerability in the WithdrawQueue.sol contract that allows users' funds to become permanently locked if they withdraw ezETH to a contract address (like a multisig wallet) that requires more than 2300 gas to process the receiving transaction.

This issue was caused by the previous use of payable(msg.sender).transfer(_withdrawRequest.amountToRedeem); to send the tokens. Now this issue has been sufficiently mitigated by using the call() function instead of transfer() when sending ETH during the claim process, as shown in the pull request used to solve this, i.e:


         // send selected redeem asset to user
         if (_withdrawRequest.collateralToken == IS_NATIVE) {
-            payable(msg.sender).transfer(_withdrawRequest.amountToRedeem);
+             (bool success, ) = payable(msg.sender).call{ value: _withdrawRequest.amountToRedeem }(
+                 ""
+             );
+             if (!success) revert TransferFailed();
         } else {
             IERC20(_withdrawRequest.collateralToken).transfer(
                 msg.sender,
c4-judge commented 4 weeks ago

alcueca marked the issue as satisfactory