Combination of numbers - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Misc (https://hashcat.net/forum/forum-15.html) +--- Forum: General Talk (https://hashcat.net/forum/forum-33.html) +--- Thread: Combination of numbers (/thread-10106.html) |
Combination of numbers - mad_hashcatter - 05-15-2021 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. RE: Combination of numbers - Banaanhangwagen - 05-15-2021 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 RE: Combination of numbers - mad_hashcatter - 05-15-2021 (05-15-2021, 01:33 PM)Karamba Wrote: So the first digit is always 1, right ? 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. RE: Combination of numbers - jimby - 05-16-2021 (05-15-2021, 11:18 AM)mad_hashcatter Wrote: I know the password is made up of 6 numbers (12 digits in total): 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 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/comboleetor/comboleetor_presentation.pdf for more info. Enjoy! |