R12.1.1 Decrypt Oracle Apps Password
Here's the code to decrypt the oracle apps password in R12.1.1 (note, it's different to 11i).
CREATE OR REPLACE PACKAGE get_pwd AS FUNCTION decrypt ( KEY IN VARCHAR2 ,VALUE IN VARCHAR2 ) RETURN VARCHAR2; END get_pwd; / CREATE OR REPLACE PACKAGE BODY get_pwd AS FUNCTION decrypt ( KEY IN VARCHAR2 ,VALUE IN VARCHAR2 ) RETURN VARCHAR2 AS LANGUAGE JAVA NAME 'oracle.apps.fnd.security.WebSessionManagerProc.decrypt (java.lang.String,java.lang.String) return java.lang.String'; END get_pwd; /
SELECT (SELECT get_pwd.decrypt(FND_WEB_SEC.GET_GUEST_USERNAME_PWD, usertable.encrypted_foundation_password)FROM DUAL) AS apps_password FROM fnd_user usertable WHERE usertable.user_name = (SELECT substr(FND_WEB_SEC.GET_GUEST_USERNAME_PWD, 1,instr(FND_WEB_SEC.GET_GUEST_USERNAME_PWD,'/')-1) from dual)
»
3 comments:
Hello Prasanth,
This script is used for only guest user password, how we can change it to get password for any other user?
Many Thanks,
Usman.
Hi Prasanth,
Is there any way to get the back end password from the URL ?
or if you dont have the back end access at all.
Thanks,
Soumya
where can i download Oracle Apps R12 for FREE?
Post a Comment