Duplicated hashes
#1
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
#2
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
Hashcat --show -m 0 hash_brute.txt

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_aske...ilpassword
#3
Thanks for the help.