Ethernaut Level 08 - Vault
Objectives
Our objective is to unlock the vault to pass the level, i.e., set the locked to false. Let's dive in.
Analysis
function unlock(bytes32 _password) public {
if (password == _password) {
locked = false;
}
}
The unlock() fun...
blog.dixitaditya.com3 min read