msg.sender in the Function
Found in src/InheritanceManager.sol Line: 236
Introduce a check for msg.sender to ensure only authorized users can execute the function.
require(isAuthorized(msg.sender), "Unauthorized access"); ensures only authorized users can call the function.
isAuthorized should be implemented to verify whether msg.sender is allowed to withdraw funds.
This fix helps prevent unauthorized access and strengthens the security of the contract.
The contest is live. Earn rewards by submitting a finding.
This is your time to appeal against judgements on your submissions.
Appeals are being carefully reviewed by our judges.