Combination of numbers
#1
I know the password is made up of 6 numbers (12 digits in total):

11
12
13
14
15
16

So the password could be 111213141516 or a combination similar to that.
What is the easiest way to calculate this password from the above 6 numbers? TIA.
Reply
#2
So the first digit is always 1, right ?
And the second digit is 1, 2, 3 ,4 , 5 or 6, right ?

Try this:
-1 123456 1?11?11?11?11?11?1
Reply
#3
(05-15-2021, 01:33 PM)Karamba Wrote: So the first digit is always 1, right ?
And the second digit is 1, 2, 3 ,4 , 5 or 6, right ?

Try this:
-1 123456 1?11?11?11?11?11?1

Thank you for the response.

No, that was actually just a combination I gave as an example, not the actual numbers that I am working with.
Reply
#4
(05-15-2021, 11:18 AM)mad_hashcatter Wrote: I know the password is made up of 6 numbers (12 digits in total):

11
12
13
14
15
16

So the password could be 111213141516 or a combination similar to that.
What is the easiest way to calculate this password from the above 6 numbers? TIA.


Have a look at comboleetor.pl.  It can do what you want.

https://www.jimby.name/techbits/recent/comboleetor/

Code:
echo 'NNNNNN' | perl comboleetor.pl  2> /dev/null

11
1111
111111
11111111
1111111111
111111111111
111111111112
111111111113
111111111114
111111111115
111111111116
1111111112
111111111211
111111111212
111111111213
111111111214
111111111215
111111111311
111111111312
111111111313
111111111314
111111111315
111111111316
1111111114
111111111411
.  .  .
161616161216
1616161613
161616161311
161616161312
161616161313
161616161314
161616161315
161616161316
1616161614
161616161411
161616161412
161616161413
161616161414
161616161415
161616161416
1616161615
161616161511
161616161512
161616161513
161616161514
161616161515
161616161516
1616161616
161616161611
161616161612
161616161613
161616161614
161616161615
161616161616

comboleetor.pl creates all possible variations according to your input specification.  You can output to a file and post-process to remove the lines you don't want or you can dump the whole file into hashcat.

Your example input above produced  55986 lines, and included your example password 111213141516.

See the training pdf at https://www.jimby.name/techbits/recent/c...tation.pdf  for more info.

Enjoy!
Reply