dictionary / rules ethereum
#6
Hashcat will probably not have something that works out of the box. I was hoping Memorize could be used but that option only seemed to be available in legacy versions. Not sure it would have worked anyway.

So I will focus on creating one smaller dictionary to start with. Eliminating words with characters I am (pretty) sure I've not used. Then limit the word length with  grep -x '.\{8,63\}' megawordlist > megawordlist2 
Current list contains 400000 words and a lot of them I am positive I haven't used.

That should become the masterfile that will be used to append and combine.
append:
awk '$NF=$NF "123"' OFS="123 " list > new_file
combine:
cat wordlist1.txt wordlist2.txt > combined-wordlist.txt should do the trick. 

https://adaywithtape.blogspot.com/2011/0...sited.html


Maybe maskprocessor can do the something similar, but I didn't find examples that were similar to mine so will try above first. 

Hashcat itself seems to be working fine, did some tests and running through one wordlist of 400000 words would take less than two days. Not bad.
Reply


Messages In This Thread
dictionary / rules ethereum - by B_Kchurc - 05-22-2021, 04:34 PM
RE: dictionary / rules ethereum - by Snoopy - 05-22-2021, 10:43 PM
RE: dictionary / rules ethereum - by B_Kchurc - 05-23-2021, 10:37 AM
RE: dictionary / rules ethereum - by Snoopy - 05-23-2021, 12:40 PM
RE: dictionary / rules ethereum - by B_Kchurc - 05-23-2021, 02:31 PM
RE: dictionary / rules ethereum - by B_Kchurc - 05-23-2021, 05:33 PM
RE: dictionary / rules ethereum - by Snoopy - 05-23-2021, 07:56 PM
RE: dictionary / rules ethereum - by B_Kchurc - 05-24-2021, 12:23 AM
RE: dictionary / rules ethereum - by jimby - 05-24-2021, 07:13 PM