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

innertia - With an ERC20 token with No Revert on Failure, the token is recognized as withdrawn even though it has not been withdrawn. #53

Closed
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

innertia

medium

With an ERC20 token with No Revert on Failure, the token is recognized as withdrawn even though it has not been withdrawn.

Summary

Some tokens do not revert on failure, but instead return false (e.g. ZRX).
If the implementation does not check the return value, processing proceeds as if the transfer succeeded even though it failed.

Vulnerability Detail

In FootiumPrizeDistributor's claimERC20Prize, the token is transferred with _token.transfer(_to, value). However. This does not check the return value, so even if it fails, the process proceeds as if it had succeeded.

Impact

The user does not receive the token but is recorded as having received it. It is a substantial loss of funds.

Code Snippet

https://github.com/sherlock-audit/2023-04-footium/blob/main/footium-eth-shareable/contracts/FootiumPrizeDistributor.sol#L130

Tool used

Manual Review

Recommendation

Use safeTransfer

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