Search code examples
androidpasswordskeystore

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?


Solution

  • 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!