The Ethernaut CTF Solutions | 14 - Gate Keeper Two
Goals
Same principles as the Gate Keeper One, but with different modifiers.
The contract
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract GatekeeperTwo {
address public entrant;
modifier gateOne() {
require(msg.send...
blog.pedrojok.com3 min read