We can recover keystore password by doing a bruteforce by the tool https://code.google.com/p/android-keystore-password-recover/
Thats understandable, but how to recover the alias name and alias password? The alias password is also needed to proceed with updates and new versions of the application.
If you cracked the container password you can simply read the alias with the jarsigner tool. The next step would be to crack the password of the private key which should work like the container password.
Related
I have JKS keystore and I remember the password but not alias.
It's said 'No key found with the alias'.
please help.
If you are using Android Studio, then you can find the key alias like this if you know the password,
Enter your keystore path and password, and tap on the folder icon at key alias section,
You will get the key alias list in new window like this,
You can use existing key, or if you want, you can create new one.
can anyone clarify me that is it possible to recover keystore alias key?
i am in big trouble my app is already on playstore and update is ready,and stuck at this point
Here is link bruteforce
using from last two days,nothing works for me..
You can try and find the password in one of the gradle files if you still have the source code and were using Android Studio to develop the app. Try looking for:
..Project\.gradle\2.4\taskArtifacts\taskArtifacts.bin
Alternatively, you can create new keystore and set new password for it with the keytool command below. You don't need original keystore password for it:
keytool -importkeystore -srckeystore path/to/keystore/with/forgotten/pw \
-destkeystore path/to/my/new.keystore
When prompted, create password for your new.keystore and for source keystore password (which you lost) just hit Enter.
You will get warning about integrity not checked, and you will get your new.keystore identical to original with newly set password.
The reason this works is keystore password is only used to provide integrity of the keystore, it does not encrypt data with it, in contrast to private key password, which actually keeps your private key encrypted.
I want sign an APK with a keystore but I dont remember the key password
I have the keystore file
I have the keystore password
I have the alias name
I DONT have the key password (alias one)
Its possible get the alias password without bruteforce?
Thanks in advance,
Yes - you can restore your 'passwords.txt' from backup and look for the password there.
Seriously, the hypothetical possibility to restore the passowrd without long and expensive bruteforce - will brake the cryptography completely.
Format My computer I copy my work space backup after I put my work space in my c/user/pcname/ past here
"i upgrade my application and export my password is not incorrect that give me message keystore was tampered with or password was incorrect?" what to do ? give me full description step by step i am new in android.
The password you are entering is wrong. Please check it again.
I did not properly create the keys, where he is now?
I created the keys, where I create the application
where keys is now? (there is only one file LM.apk, but he did not keys)
You're are misundersting the keystore :
The keystore is a file which identify you (to securize your release), don't name it *.apk, it's not your application build
You can store as many key in your keystore, one for each application you want to sign with
So you just have to create a first key on your keystore by providing an alias and a password
Then you'll have 1 password for opening your keystore and one for signing with the desired key (alias)