hashcat Forum
Output hash and candidate from stdout - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Support (https://hashcat.net/forum/forum-3.html)
+--- Forum: hashcat (https://hashcat.net/forum/forum-45.html)
+--- Thread: Output hash and candidate from stdout (/thread-5992.html)



Output hash and candidate from stdout - Celare - 10-28-2016

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?


RE: Output hash and candidate from stdout - epixoip - 10-29-2016

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.


RE: Output hash and candidate from stdout - Celare - 10-29-2016

What would be a tool that allows me to do this?


RE: Output hash and candidate from stdout - atom - 10-30-2016

You can use tools/test.pl in passthrough mode and pass the candidates via stdin. It's not very fast tho