We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ABONDToken::transferFrom()
Proud Taffy Kestrel
Medium
The ABONDToken::transferFrom() function debits sender's balance, but changed user state assigns to the spender, instead of sender.
In ABONDToken::transferFrom() debited user state assigns to the msg.sender, so ABONDToken.userStates becomes out of sync with users token balances.
msg.sender
ABONDToken.userStates
ABONDToken
No response
ABONDToken.transferFrom()
from
State
userStates
ABONDToken.userStates becomes out of sync with users ABONDToken balances
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Proud Taffy Kestrel
Medium
ABONDToken::transferFrom()
updates spender user state instead of sender's oneSummary
The
ABONDToken::transferFrom()
function debits sender's balance, but changed user state assigns to the spender, instead of sender.Root Cause
In ABONDToken::transferFrom() debited user state assigns to the
msg.sender
, soABONDToken.userStates
becomes out of sync with users token balances.Internal pre-conditions
ABONDToken
to the spenderExternal pre-conditions
No response
Attack Path
ABONDToken
to the spenderABONDToken.transferFrom()
with user's address asfrom
paramState
in theuserStates
mappingImpact
ABONDToken.userStates
becomes out of sync with users ABONDToken balancesPoC
No response
Mitigation
No response
The text was updated successfully, but these errors were encountered: