Output hash and candidate from stdout
#1
I want to print out the hash and candidate for a mask with a length of 5 in SHA256.

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?
#2
I have no idea why you'd ever want to do this (are you attempting to make a lookup table?) but hashcat is not the correct tool.
#3
What would be a tool that allows me to do this?
#4
You can use tools/test.pl in passthrough mode and pass the candidates via stdin. It's not very fast tho