Skip to content

Latest commit

 

History

History
50 lines (42 loc) · 1.37 KB

Sherlock.md

File metadata and controls

50 lines (42 loc) · 1.37 KB

Find My Pass

Network: Rinkeby
Address: 0x3a6CAE3af284C82934174F693151842Bc71b02b2

Contract

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]................... 
}

Writeup

Official Writeup