hashcat Forum
hashcat generated dictionary - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Deprecated; Ancient Versions (https://hashcat.net/forum/forum-46.html)
+--- Forum: Very old oclHashcat-plus Support (https://hashcat.net/forum/forum-23.html)
+--- Thread: hashcat generated dictionary (/thread-525.html)



hashcat generated dictionary - fast_checkmate - 09-29-2011


first of all.. great great tool Smile


I'm trying to audit a network and i presume the password of the wpa is created with just a few letters and : a,s,f,h,l,p,r,s,t and numbers (0,1,2,3,4,5,6,7,8,9)

i've tried to create a dictionary with the word "asfhlprst0123456789" and i'm running hashcat with "-a 4" option (permutate)

yet, it says my dictionary doesnt contain any words and also it doesn't generate all the combinations with those letters / numbers

Thanks in advance


RE: hashcat generated dictionary - atom - 09-29-2011

i think you have a wrong understanding of ahow the permutation attack works.

this is a permutation:

Quote:ABC
ACB
BCA
BAC
CBA
CAB

what you want it to do a bruteforce with the charset asfhlprst0123456789. whats missing is the length. in case you know it you an use maskprocessor and then pipe its output into oclHashcat-plus.



RE: hashcat generated dictionary - fast_checkmate - 09-29-2011

Thanks man!