Open hats-bug-reporter[bot] opened 1 month ago
Thank you for your report on a potential logical flaw in the isPermittedFlow function. After careful review, we've determined that this is not a valid issue.
The function's logic is correct as implemented. If the code reaches the final return statement, it means that the previous condition was not met. Specifically, it indicates that the _from address has enabled the consented flow, which is the intended behavior.
We appreciate your thorough examination of our contract logic. While in this case the function is working as designed, your attention to detail in reviewing our code contributes to the overall security and robustness of our platform. Thank you for your efforts in helping ensure the integrity of our system.
Github username: -- Twitter username: -- Submission hash (on-chain): 0xdc1041f4ca92cb170b5d63c6a73346ea7b6fd114d22adda1c64e0544b3dd40f0 Severity: high
Description:
Description
The
isPermittedFlow
function executes multipleif
statements, which can be broken down as follows:The first one simply returns
false
if the trust has already been expiredThe second condition returns
true
if theadvancedUsageFlags
is set but the consented flow is not enabled.The third block first checks the
expiry
of the trust marker, followed by verifying theadvancedUsageFlags
for_to
to ensure that consented flow is enabled. However, it neglects to checkadvancedUsageFlags[_from]
, incorrectly assuming that reaching this return statement means it is automatically set to true, while in reality, it could still be false.This goes against the intended logic, as per the comments:
Specifically focusing on the point, "if the sender avatar has enabled consented flow," we can see that the sender's avatar may not have consented flow enabled and can still return
true
based on the third code block.Since
isPermittedFlow
is used in critical functions like group minting and verifying the flow matrix, we deem this a high vulnerability.Fix
Make sure that the sender has consented flow enabled