#43987 [SC-Low] Unchecked low-level ETH transfer in `Dispatcher.sol` may lead to undetected failures
Description
Brief/Intro
Vulnerability Details
} else if (command == Commands.TRANSFER_NATIVE) {
(address recipient, uint256 amount) = abi.decode(_inputs, (address, uint256));
(bool success, ) = payable(recipient).call{value: amount}("");
// success is not checked
}Impact Details
References
Proof of Concept
Proof of Concept
Previous#44035 [SC-Low] Lack of validation in native transfer allows attacker to steal user fundsNext#43528 [SC-Low] fund freeze scenario
Was this helpful?