hashcat Forum
How to make Hashcat include dupes in outfile? - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html)
+--- Forum: Old hashcat Support (https://hashcat.net/forum/forum-20.html)
+--- Thread: How to make Hashcat include dupes in outfile? (/thread-3959.html)



How to make Hashcat include dupes in outfile? - supercasio - 01-07-2015

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:\""


RE: How to make Hashcat include dupes in outfile? - epixoip - 01-07-2015

use --show afterwards


RE: How to make Hashcat include dupes in outfile? - supercasio - 01-07-2015

(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?


RE: How to make Hashcat include dupes in outfile? - epixoip - 01-07-2015

You didn't specify a hash list.


RE: How to make Hashcat include dupes in outfile? - supercasio - 01-07-2015

(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...


RE: How to make Hashcat include dupes in outfile? - epixoip - 01-07-2015

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



RE: How to make Hashcat include dupes in outfile? - supercasio - 01-07-2015

Yes it works. After mangling with files yesterday, I mixedup them and was feeding deduped hashlist.
Problem solved. Thank you!