
Esqueci a senha do wasadmin.Portanto, não consigo entrar no painel de administração.Quero recuperar a senha.Onde está localizada a senha codificada?Como posso decodificá-la?Estou usando a mesma senha em muitos outros lugares, então quero recuperar a senha em vez de redefinir a senha.
Responder1
http://robertmaldon.blogspot.com/2006/07/recovering-passwords-from-websphere.html
Este link pode te ajudar...
Responder2
Recuperar senha no Websphere
Step 1: Open up your console and navigate to the folder that contains "ws_runtime.jar". Use a search tool to find it.
Step 2: java -cp ws_runtime.jar com.ibm.ws.security.util.PasswordEncoder "password"
Example:
Input
java -cp ws_runtime.jar com.ibm.ws.security.util.PasswordEncoder "password"
Output
decoded password == "password", encoded password == "{xor}Lz4sLCgwLTs="
Decodifique sua senha no Websphere
Step 1: Location and open "security.xml". It will be folder with a similar path like so "runtime\..?..\PROFILE_ACCOUNT\...?..\workspace\..?..\". Use a search tool to find it.
Step 2: In "security.xml", find the "authDataEntries" tag and then get the password attribute.
Step 3: Open up your console and navigate to the folder that contains "ws_runtime.jar". Use a search tool to find it.
Step 4: java -cp ws_runtime.jar com.ibm.ws.security.util.PasswordDecoder PASSWORD_ATTIBUTE
Example:
Input
java -cp ws_runtime.jar com.ibm.ws.security.util.PasswordDecoder {xor}Lz4sLCgwLTs=
Output
encoded password == "{xor}Lz4sLCgwLTs=", decoded password == "password"
Isso pode ajudar...