![]() |
PRINCE creating dups - 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: PRINCE creating dups (/thread-3964.html) |
PRINCE creating dups - forumhero - 01-08-2015 for example i have a wordlist containing the following: Code: my but i get a lot of dups even though the wordlist itself has unique words: Code: mypasswordisthebest any way to de-dup this? RE: PRINCE creating dups - atom - 01-08-2015 It's not about prince, it's about hashcat CPU. You can post a trac ticket if you want Quote:root@ht:~/princeprocessor# ./pp64.bin < wordlist | grep mypasswordisthebest | wc -l RE: PRINCE creating dups - forumhero - 01-08-2015 does this mean it's better to use standalone prince and then pipe to hashcat vs. -a 6 mode? RE: PRINCE creating dups - undeath - 01-09-2015 Since piping is considerably slower it's probably still faster to use the integrated mode. RE: PRINCE creating dups - forumhero - 01-09-2015 Perhaps I've misunderstood the hashcat status but I thought the 113986 number is total words in the wordlist? It would appear the integrated prince produced more chains than standalone version. integrated prince = 113986 standalone prince = 5638 Code: forumhero@cpx1:~$ cat md5.test.hash RE: PRINCE creating dups - atom - 01-09-2015 It depends on some default values. The ones in standalone prince are set to a lower value than on hashcat cpu. However, it does not matter. The user is supposed to use prince with a dictionary of 100k-10m words and in this case the total number is so high that it will run forever (regardless of the speed you guess). RE: PRINCE creating dups - atom - 01-09-2015 Both problems from this thread and the memory problem from a different thread should be fixed in latest beta version RE: PRINCE creating dups - forumhero - 01-09-2015 thank you, atom |