In one of my previous articles (here) I explained that the SerializedSystemIni.dat file in WebLogic contains the key used to encrypt and decrypt passwords. If you're not currently keeping this file secure I suggest you do, as with it someone can (to name a few things):
- Decrypt the WebLogic admin username and password from boot.properties.
- Recover database passwords, if JDBC Connection pools are configured, from config.xml.
- Recover the keystore passwords from config.xml and obtain SSL certificates stored in the jks keystores.
Essentially, they can do whatever they want, so if you don't know who can read your SerializedSystemIni.dat files, look... now.
In this article I will show how easy it is for this file to be used to recover lost passwords via a simple WLST script.
The Script
The script I use to decrypt passwords is incredibly short, and it works with WebLogic 8, 9 and 10 (probably for version 7 too). To use it, just create a new file called decryptpwd.py and paste the following code into it:
from weblogic.security.internal import *
from weblogic.security.internal.encryption import *
# Remind user about how to use
raw_input("Please ensure SerializedSystemIni.dat is in the current directory now, and press ENTER to continue.")
# Get encryption service
encryptionService = SerializedSystemIni.getEncryptionService(".")
clearOrEncryptService = ClearOrEncryptedService(encryptionService)
# Get user to enter password
pwd = raw_input("Enter encrypted password (Eg. {3DES}Y1fA34S...): ")
# Remove unnecessary escape characters
preppwd = pwd.replace("\\", "")
# Decrypt the password
print "Recovered password is: " + clearOrEncryptService.decrypt(preppwd)
You can download the script (decryptpwd.py) here.
Running the Script
To run this script, execute the WLST environment and provide it with the script to run. If you're using a version of WebLogic older than 8.1.6 you'll need to install a newer version which has WLST.
Use the following command (replace %WL_HOME% with the correct directory) to run the script.
%WL_HOME%\common\bin\wlst.cmd decryptpwd.py
Once the WLST environment has started up, the script will remind you to copy the SerializedSystemIni.dat file into the current directory. Press enter and paste your encrypted password string. That's it. It will spit out the password in plain-text.
Understanding the Script
The script is so short and simple it is barely worth explaining, but here are a few things worth mentioning.
You'll notice that the first two lines import weblogic.security packages. These are largely undocumented, so don't expect to find much information on them.
The next significant piece of code instantiates a ClearOrEncryptedService object which will use the SerializedSystemIni.dat file located in the current directory (".").
The final line of code decrypts the password and prints it in plain text.
it is nice code to decript the password.
ReplyDeleteThanks...
Cool script
ReplyDeleteSuperb dude
ReplyDeleteYou are awesome :)
ReplyDeleteThanks! It works great!
ReplyDeleteExcellent posting.
ReplyDeleteperfect...
ReplyDeleteIt worked.
ReplyDeleteIt is not specified that where to keep this script file. Let's say your WL installation home is "C:\bea\" then your should keep this script in "C:\bea\user_projects\domains\%YOUR_DOMAIN%\security" folder
Thanks a lot.
It worked and like last comment mentioned - PY script needs to be in same folder as "SerializedSystemIni.dat" (that is, under '"%WL_HOME%\user_projects\domains\\security') folder
ReplyDeleteHi, where can I find the encrypted keystore password for weblogic 9.2?
ReplyDeleteThanks a lot Dear..It helped a lot.
ReplyDeleteCheers !!!
Its awsome!!!! its helped a lot. Thanks you very much!
ReplyDeleteboy...... u r a genius thnks a lot.... i mean it
ReplyDeletei wasted a whole day to find the script. googled it,
many scripts came but without details where to place the script and from where to run .Finally i found ur site. thanks a lot.
Cheers!!!!!!!!
You saved me after the consultant left. Even he didn't remember the password.
ReplyDeleteYou're the best, this article is awesome !
ReplyDelete
ReplyDeleteThis is realy a Nice blog post read on of my blogs Recover Password on Pinterest.