The Ethernaut CTF Solutions | 04 - Telephone
Goals
The Contract
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract Telephone {
address public owner;
constructor() {
owner = msg.sender;
}
function changeOwner(address _owner) public {
if (tx.origi...
blog.pedrojok.com3 min read