The Ethernaut CTF Solutions | 08 - Vault
Goals
Fairly straightforward here... Let's check the contract.
The Contract
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract Vault {
bool public locked;
bytes32 private password;
constructor(bytes32 _password) {
...
blog.pedrojok.com2 min read