--show doesn't print duplicates when using --username - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Developer (https://hashcat.net/forum/forum-39.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-40.html) +--- Thread: --show doesn't print duplicates when using --username (/thread-6254.html) |
--show doesn't print duplicates when using --username - hegusung - 02-02-2017 Hi, I have the following problem with hashcat : let say I have the following hashes: Code: test1:d41d8cd98f00b204e9800998ecf8427e 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: How can I tell hashcat to print the results for every user ? RE: --show doesn't print duplicates when using --username - philsmd - 02-02-2017 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/ RE: --show doesn't print duplicates when using --username - hegusung - 02-02-2017 Perfect thanks ! |