Ethernaut Level 14: GatekeeperTwo
Solidity Code
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
contract GatekeeperTwo {
address public entrant;
modifier gateOne() {
require(msg.sender != tx.origin);
_;
}
modifier gateTwo() {
uint x;
assembly { x :...
baguioni.hashnode.dev2 min read