This is a simple password cracker that uses a dictionary attack to crack a password that has been hashed using the SHA256 algorithm. The program takes in a password hash as input and outputs the password if it is found in the infamous *rockyou.txt password wordlist. The program is written in Rust.
To run the program, you must have Rust installed. You can install Rust here.
get your password hash.The password hash must be a SHA256 hash and lowercase. You can get a SHA256 hash of a password here.
Once you have your password hash and rockyou.txt, put rockyou.txt in src folder. then run the following command in the terminal:
cargo run <password hash>