Duplicated hashes - 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: Duplicated hashes (/thread-5472.html) |
Duplicated hashes - makary - 05-23-2016 Hello, i have a file with 10k MD5 hashes. In this file are 2k of duplicated hashes so oclhashcat is trying to crack only 8k of unicate hashes and in output file is only one hash of this duplicated hashes but in input file is this hash duplicated maybe 10 times. I want to my output file anyways include this cracked hash 10 times just like in input file. How can i do this? Is there any command for this? So i want to disable passing through duplicated hashes. My current command: Code: Hashcat -m 0 -a 3 -1 mask.hcchr hash_brute.txt -o cracked_brute.txt --increment "?1?1?1?1?1?1?1?1" --potfile-disable --outfile-autohex-disable RE: Duplicated hashes - philsmd - 05-23-2016 Just use the --show option *after* you cracked the hashes. Since you used the --potfile-disable switch, you need to (temporarily) have a .pot file or with *newest beta* version (of hashcat 3.00) use --potfile-path Code: cp cracked_brute.txt oclHashcat.pot # or cudaHashcat.pot if on NVidia BTW: this is also very well explained in the documentation and in dozens of forum posts, for instance see this: https://hashcat.net/wiki/frequently_asked_questions#how_can_i_show_previously_cracked_passwords_and_output_them_in_a_specific_format_eg_emailpassword RE: Duplicated hashes - makary - 05-24-2016 Thanks for the help. |