hashcat Forum
use length from wordlist - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Support (https://hashcat.net/forum/forum-3.html)
+--- Forum: hashcat (https://hashcat.net/forum/forum-45.html)
+--- Thread: use length from wordlist (/thread-9070.html)



use length from wordlist - amdeusace - 03-26-2020

Hello everyone,

I am trying to create a mask of 15 length that comprises of 3 parts
(5 lower case ) + (5 lower case ) + (5 digits )

the lower case is english words and I would like to read them from an english dictionary file

any ideas to put me on the correct direction?

Thank you in advance.


RE: use length from wordlist - amdeusace - 03-26-2020

hashcat-5.1.0>hashcat64 -m 2500 -a 6 --session optus_session optus.hccapx 5letters.txt 5letters.txt ?d?d?d?d?d

that one tries to make 5letters.txt + numbers
but i would like to get 5letters.txt + 5letters.txt +numbers

any help?


RE: use length from wordlist - amdeusace - 03-27-2020

Hello everyone.
Just a solution.

1) use combinator to merge the list (dont forget to use > newlist.txt ). Now we got a list of 10letters comprises of 2 5letters words.

2) hashcat-5.1.0>hashcat64 -m 2500 -a 6 --session optus_session optus.hccapx newlist.txt ?d?d?d?d?d

5 letters wordlist can be downloaded from here (about 5.5k words)
https://www-cs-faculty.stanford.edu/~knuth/sgb-words.txt
the new list will be about 350MB

with RTX 2070 at 420 KH/s will take 90days to complete.
any ideas to make it faster are welcome

PS that works for Australian optus NBN with sagemcom router
the pattern is a 5 letters word + 5 letters word + 5 digits

Hope it helped somebody