I want to print out the hash and candidate for a mask with a length of 5 in SHA256.
I currently have this but it only prints out the candidates
I want something like this
There isn't a specific hash I want to crack, I just want to have a file with the password and their respective hashes.
Any pointers?
Code:
hashcat64.exe -a 3 -m 1400 -1 ?l?u?d ?d?1?1?1?1 --stdout -o outfile.txt --outfile-format=3
I currently have this but it only prints out the candidates
Code:
1abcd
I want something like this
Code:
1abcd:dfd07794efd5dd62dbd75e29471040774cb05882192d5d194714ee13239ec2db
There isn't a specific hash I want to crack, I just want to have a file with the password and their respective hashes.
Any pointers?