Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android - Forgot keystore password. Can I decrypt keystore file? [duplicate]

Tags:

java

android

I have lost password of keystore file used to sign my apk. I cannot update my app now and I think I have to release it as new app by signing it with new keystore. Is it possible to decrypt keystore file as I have keystore file and password is present in keystore file. Or can anyone provide me with link of program that is used to brute force password. If anyone of you have been able to recover password of keystore file please share your method. Thanks in advance.

like image 627
anujprashar Avatar asked Jan 17 '12 12:01

anujprashar


People also ask

What do I do if I forgot my keystore password?

It's unfortunate, but when you lose your keystore, or the password to your keystore, your application is orphaned. The only thing you can do is resubmit your app to the market under a new key.

How one can recover a Java keystore if the keystore password is forgotten?

Resolution. The only way to recover is then to create a duplicate keystore with a new store password. All of the certs from the original trustore can be copied as-is into the new keystore. We will use /opt/CA/jre/lib/security/cacerts as the example but this will work with any Java Keystore (jks).

What is the difference between keystore password and key password?

Keystore is a binary file that contains a set of private keys. Private key represents the entity to be identified with the app, such as a person or a company. So Keystore password is used to open a keystore and simple password is password of private entity stored in keystore file..!!


1 Answers

I use this one for bruteforce at the moment: Android keystore password recover

like image 91
Alex Kutsko Avatar answered Sep 21 '22 06:09

Alex Kutsko