Sherlock
Difficulty
Can You Find My Password Hash?
Author: Razzor
Network: Goerli
Address: 0x3CC1c78A9d2Fe45489eA108FBF19328Fe2409f7f
Contract Code
pragma solidity ^0.8.0;
contract sherlock{
uint256 public var256_1 = 1337;
bool public bool_1 = false;
bool public bool_2 = false;
bool public bool_3 = true;
uint16 public var16_1 = 32;
uint16 private var16_2 = 64;
address public contractAdd = address(this);
uint256 private var256_2 = 3445;
uint256 private var256_3 = 6677;
bytes32 private iGotThePassword;
bytes32 private actuallPass;
bytes32 private definitelyThePass;
uint256 public var256_4 = 7788;
uint16 public var16_3 = 69;
uint16 private var16_4 = 7;
bool private _Pass = true;
bool private _The = true;
bool private _Password = false;
address private owner;
uint16 private counter;
bytes32 public constant thePassword = ...................[REDACTED]...................
bytes32 private constant ohNoNoNoNoNo = .................[REDACTED]...................
bytes32[4] private passHashes;
struct Passwords {
bytes32 name;
uint256 secretKey;
bytes32 password;
}
Passwords[] private passwords;
mapping (uint256 => Passwords) private destiny;
...................[REDACTED]...................
}