DEV Community

Anuj Singh Tomar
Anuj Singh Tomar

Posted on

1

Decrypt Weblogic Console Password using wlst

If you have forgotten the console password or any other password for the domain, you can use below wlst commands to decrypt the passwords

  • 1 – Note down below two values:

Domain Location
Encrypted password which you want to decrypt

  • 2 – Invoke wlst & run below commands:
wls:/offline> domain ="/home/weblogic/Oracle/Middleware/Oracle_Home/user_projects/domains/train_domain/"
wls:/offline> service = weblogic.security.internal.SerializedSystemIni.getEncryptionService(domain)
wls:/offline> encryption = weblogic.security.internal.encryption.ClearOrEncryptedService(service)
print encryption.decrypt("{AES}CFbYgsg8ktBwkzi0llxCYrC3wLN6qDCaOJHfEyOL47w")
Enter fullscreen mode Exit fullscreen mode

PS : I had to remove a trailing “\” from the encrypted password in last

For more detailed version: Link

Top comments (0)

AWS GenAI LIVE image

How is generative AI increasing efficiency?

Join AWS GenAI LIVE! to find out how gen AI is reshaping productivity, streamlining processes, and driving innovation.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay