Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Recover Password of my keystore

I lost my keystore's password. I downloaded a jar library fallowing address. http://code.google.com/p/android-keystore-password-recover/wiki/HowTo

But this application search every target. I know, my password is 13 character and i didn't use special character.

Is there any way to find it?

like image 893
BeyazBaron Avatar asked Dec 31 '12 13:12

BeyazBaron


1 Answers

As stated in the comments of your original question, it's probably going to take a while.

I have also made a keystore bruteforce program, with which you can configure what characters you want to use to search.

You can get the source from here and modify as you like: https://github.com/bes/KeystoreBrute

Change the constructor of this file for limiting the characters used in your search https://github.com/bes/KeystoreBrute/blob/master/src/se/bes/br/Breaker.java

The less characters you use, the faster it's going to go.

I would also suggest that you use a startdepth of 13, since you know how long the password is.

Happy hunting!

like image 192
Erik Zivkovic Avatar answered Oct 04 '22 02:10

Erik Zivkovic