How to make Hashcat include dupes in outfile?
#1
Hi, I run hashcat on hashlist & and I need output with all words for statistics. There is duplicates in hashlist but hashcat doesn't output same word twice. "--disable-potfile" option didn't help to make hashcat work on dupe hashes. I'm a bit lost here, so any help is welcome.


I'm using this command(paths removed):
"hashcat-cli64.exe -a 0 -m 0 -p : -o "E:\" --outfile-format=2 --disable-potfile -n 4 -c 64 "E:\" "E:\""
#2
use --show afterwards
#3
(01-07-2015, 03:15 AM)epixoip Wrote: use --show afterwards
I did: "hashcat-cli64.exe --show"
Got response: "All hashes have been recovered"

How this will help me?
#4
You didn't specify a hash list.
#5
(01-07-2015, 03:57 AM)epixoip Wrote: You didn't specify a hash list.
hashcat-cli64.exe --show list.txt
It did output to screen "hash:pass". Adding ">>output.txt" got it in file. No dupes there!!!
Same thing I could get with "--outfile-format=6" option...
#6
Cannot reproduce.

Code:
epixoip@token:~/hashcat-0.48$ cat hashcat.pot
098f6bcd4621d373cade4e832627b4f6:test

epixoip@token:~/hashcat-0.48$ cat test.list
098f6bcd4621d373cade4e832627b4f6
098f6bcd4621d373cade4e832627b4f6
098f6bcd4621d373cade4e832627b4f6
098f6bcd4621d373cade4e832627b4f6
098f6bcd4621d373cade4e832627b4f6

epixoip@token:~/hashcat-0.48$ ./hashcat-cli64.bin --show test.list
098f6bcd4621d373cade4e832627b4f6:test
098f6bcd4621d373cade4e832627b4f6:test
098f6bcd4621d373cade4e832627b4f6:test
098f6bcd4621d373cade4e832627b4f6:test
098f6bcd4621d373cade4e832627b4f6:test
#7
Yes it works. After mangling with files yesterday, I mixedup them and was feeding deduped hashlist.
Problem solved. Thank you!