Password Reset On Instance gives "ACCESS DENIED DUE TO ERROR: BR: undefined"Issue We are unable to create or update the user passwords on instances. If we select the "Password Need reset" as true and enter the password and try to submit the user form then getting the error message "ACCESS DENIED DUE TO ERROR: BR: undefined". CauseInbound Action Password Enforcement - Global uses custom script PassHistory https://<instance>.service-now.com/nav_to.do?uri=%2Fsys_script_include.do%3Fsys_id%3D458ac4790a0a3c5101354919bd6b4101%26sysparm_record_target%3Dsys_script_include%26sysparm_record_row%3D6%26sysparm_record_rows%3D21%26sysparm_record_list%3DnameCONTAINSpasshistory%255EORDERBYname which is using function encrypt with the below code to encode the password to base64Packages.sun.misc.BASE64Encoder().encode(bytes); undefined error is due to the below package used which is no longer supported by java Evaluator: org.mozilla.javascript.EcmaError: [JavaPackage sun.misc.BASE64Encoder] is not a function.Caused by error in script at line 3229:30: var bytes = GlideEncryptionUtil.generateHash("SHA-1", [salt, pwd])31:==> 32: var enStr = new Packages.sun.misc.BASE64Encoder().encode(bytes);ResolutionUSE: var enStr = GlideStringUtil.base64Encode(bytes); INSTEAD : var enStr = new Packages.sun.misc.BASE64Encoder().encode(bytes);