05-18-2021, 07:43 PM
(05-05-2021, 07:46 PM)3nt3mp Wrote: Hi,
For the hashmode 10700, I have a password format of
[english word][number 1-100][english word][number 1-100].
Wanted to know how to configure this.
Thank you for the help.
comboleetor.pl can do what you want. https://jimby.name/techbits/recent/comboleetor/
Put your words in 'blocks.txt'.
Put the following in 'numbers.txt'
%d
1-100
This will generate numbers as
1
2
3
. . .
97
98
99
100
in the numbers hash. If you want zero filled use this in numbers.txt
%03.3d
1-100
Then run as follows:
echo 'BNBN' | perl comboleetor.pl 2> /dev/null
Note that this can generate a lot of output.
HTH