52896 sc low pause gate is present but no way to pause
Description
Brief/Intro
Vulnerability Details
// File: TellerWithMultiAssetSupportPredicateProxy.sol
// L78-L80
function deposit(...) ... {
if (paused()) { // <--- Check is present
revert TellerWithMultiAssetSupportPredicateProxy__Paused();
}
...
}
// L133-L135
function depositAndBridge(...) ... {
if (paused()) { // <--- Check is present
revert TellerWithMultiAssetSupportPredicateProxy__Paused();
}
...
}References
Proof of Concept
Previous52998 sc low minor delays from oracle can unfairly reset users streakNext52891 sc low staking and unstaking immediately an amount little less than the original staked amount leaves dust stake amounts in the system
Was this helpful?