固定性解码构造函数
我玩Ethernaut 8级。目标是访问专用密码状态变量并解锁合同。
我知道一个人可以使用等待合同。 在这里是合同。
我尝试了等待合同。
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
contract Vault {
bool public locked;
bytes32 private password;
constructor(bytes32 _password) public {
locked = true;
password = _password;
}
function unlock(bytes32 _password) public {
if (password == _password) {
locked = false;
}
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果验证了合同,则可以转到合同创建代码中,并读取最后32个字节(字节码的64个字符),在这种情况下为
0x4120766572792792074726F672072073656565657265742657420706170617373776F772642642642642629
求解挑战类型:
If the contract is verified, it is possible to go to the contract section, scroll down to Contract Creation Code and read the last 32 bytes (64 characters of the bytecode) which in this case is
0x412076657279207374726f6e67207365637265742070617373776f7264203a29
.To solve the challenge type: