How To Recover Custom Identity And Custom Trust Keystore Password
==> Password information are stored in security data file SerializedSystemIni.dat which cannot be readable like text files. ==> Encrypted passwords are stored in config.xml, boot.properties And DataSource-jdbc.xml file can be visible to user. ==> Using Encrypted password and SerializedSystemIni.dat file we can recover passwords ==> Using this method one can recover password for weblogic Admin Console KeyStore password Data source Password 1) Create a file DecryptTest.py with below content in $DOMAIN_HOME/security directory from weblogic.security.internal import * from weblogic.security.internal.encryption import * #This will prompt you to make sure you have SerializedSystemIni.dat file under #current directory from where you are running command raw_input("Please make sure you have SerializedSystemIni.dat inside the current directory, if yes press ENTER to continue.") # Encryption service encryptionService = Seri...
Comments
Post a Comment