--show doesn't print duplicates when using --username
#1
Hi, I have the following problem with hashcat :
 
let say I have the following hashes:
Code:
test1:d41d8cd98f00b204e9800998ecf8427e
test2:d41d8cd98f00b204e9800998ecf8427e
test3:d41e98d1eafa6d6011d3a70f1a5b92f0
test4:d41e98d1eafa6d6011d3a70f1a5b92f0
test5:d41e98d1eafa6d6011d3a70f1a5b92f0

I run hashcat with the following command and manage to crack all hashes:
Code:
hashcat -a 0 -m 0 /tmp/test.hashes -r /usr/share/doc/hashcat/rules/best64.rule rockyou.wordlist --username

The issue is when I run this command:
Code:
hashcat -a 0 -m 0 /tmp/test.hashes --username --show

Hashcat only prints the result of test1 and test3:
Code:
test1:d41d8cd98f00b204e9800998ecf8427e:
test3:d41e98d1eafa6d6011d3a70f1a5b92f0:Passw0rd


How can I tell hashcat to print the results for every user ?
#2
Recently, a new feature was implemented to support exactly this.
See https://github.com/hashcat/hashcat/issues/963 and test the beta at https://hashcat.net/beta/
#3
Perfect thanks !