DeFiFoundry
50,000 USDC
View results
Submission Details
Severity: low
Invalid

ReentrancyGuardUpgradeable Not Initialized

Summary:

The 'KeeperProxy.sol' is using ReentrancyGuardUpgradeable, which is a safeguard against reentrancy attacks. However, the initialize function does not call __ReentrancyGuard_init() to properly initialize the ReentrancyGuardUpgradeable component.

Tools Used:

Manual review

Recommendations:

In the initialize function, ensure __ReentrancyGuard_init() is called to correctly initialize reentrancy protection.

It could look something like this:

function initialize() external initializer {
__Ownable2Step_init();
__ReentrancyGuard_init();
sequencerUptimeFeed = AggregatorV2V3Interface(0xFdB631F5EE196F0ed6FAa767959853A9F217697D);
}
Updates

Lead Judging Commences

n0kto Lead Judge 5 months ago
Submission Judgement Published
Invalidated
Reason: Non-acceptable severity
Assigned finding tags:

Informational or Gas

Please read the CodeHawks documentation to know which submissions are valid. If you disagree, provide a coded PoC and explain the real likelihood and the detailed impact on the mainnet without any supposition (if, it could, etc) to prove your point.

n0kto Lead Judge 5 months ago
Submission Judgement Published
Invalidated
Reason: Non-acceptable severity
Assigned finding tags:

Informational or Gas

Please read the CodeHawks documentation to know which submissions are valid. If you disagree, provide a coded PoC and explain the real likelihood and the detailed impact on the mainnet without any supposition (if, it could, etc) to prove your point.

Support

FAQs

Can't find an answer? Chat with us on Discord, Twitter or Linkedin.