My friend wanted to learn how to hack , so he asked me to create an application that generates random passwords and convert it into a hash. Our problem is : How do we brute force a console input screen?
Any help is greatly appreciated Thank you
My friend wanted to learn how to hack , so he asked me to create an application that generates random passwords and convert it into a hash. Our problem is : How do we brute force a console input screen?
Any help is greatly appreciated Thank you
You should figure out your end goal. If it's to 'crack' a pre-known password that's of a small finite length, and restricted character-set, then brute force works. But, in real world situation passwords, of lengths now a-days 10 characters, it will take a lifetime to brute-force the password. Doing enough combinations up to 10 characters, and including the entire type-able characterset, is simply too many computations.
But, as for coming up with a password and hashing it, there's free libraries you can google for, for that. Just figure out the hash type you need first, as there are lots of types.
To brute force, you need a characterset, a cut-off length, and a lot of computing power.
Hope this helps a little. You probably are going to refine your end goal I'm guessing.