Skip to content
This repository has been archived by the owner on Nov 26, 2023. It is now read-only.

0xAsen - Unsafe ERC20.transfer() - unchecked return values #149

Closed
sherlock-admin opened this issue May 5, 2023 · 0 comments
Closed

0xAsen - Unsafe ERC20.transfer() - unchecked return values #149

sherlock-admin opened this issue May 5, 2023 · 0 comments
Labels
Duplicate A valid issue that is a duplicate of an issue with `Has Duplicates` label Medium A valid Medium severity issue Reward A payout will be made for this issue

Comments

@sherlock-admin
Copy link
Contributor

sherlock-admin commented May 5, 2023

0xAsen

medium

Unsafe ERC20.transfer() - unchecked return values

Summary

The ERC20.transfer() and ERC20.transferFrom() functions return a boolean value indicating success. This parameter needs to be checked for success.

Some tokens do not revert if the transfer failed but return false instead. (e.g. ZRX)

Vulnerability Detail

The unsafe .transfer() function is used in the claimERC20Prize function in the FootiumPrizeDistributor.sol contract.

    function claimERC20Prize(/*parameters*/) 
external whenNotPaused nonReentrant {
     //validations
        
        uint256 value = _amount - totalERC20Claimed[_token][_to];

        if (value > 0) {
            totalERC20Claimed[_token][_to] += value;
            _token.transfer(_to, value);
        }

        emit ClaimERC20(_token, _to, value);
    }

Implemented that way, there's a risk of a silent transfer failure which would lead to the internal balance of totalERC20Claimed being updated as the user supposedly received his tokens while in fact, he didn't receive anything.

This will lead to his tokens being stuck in the contract.

Impact

Could lead to stuck user funds in the contract, if a reward token that doesn't revert on failure but returns false instead is used.

Code Snippet

https://github.com/sherlock-audit/2023-04-footium/blob/11736f3f7f7efa88cb99ee98b04b85a46621347c/footium-eth-shareable/contracts/FootiumPrizeDistributor.sol#L106

https://github.com/sherlock-audit/2023-04-footium/blob/11736f3f7f7efa88cb99ee98b04b85a46621347c/footium-eth-shareable/contracts/FootiumEscrow.sol#L110

Tool used

Manual Review

Recommendation

Recommend using OpenZeppelin's SafeERC20 versions with the safeTransfer and safeTransferFrom functions that handle the return value check as well as non-standard-compliant tokens.

Duplicate of #86

@github-actions github-actions bot added Medium A valid Medium severity issue Duplicate A valid issue that is a duplicate of an issue with `Has Duplicates` label labels May 10, 2023
@sherlock-admin sherlock-admin added the Reward A payout will be made for this issue label May 22, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Duplicate A valid issue that is a duplicate of an issue with `Has Duplicates` label Medium A valid Medium severity issue Reward A payout will be made for this issue
Projects
None yet
Development

No branches or pull requests

1 participant