I’m new to jmeter and would appreciate if someone could help me out on this.
I recorded a script in jmeter from Login to Logout using firefox as my browser. When I checked the input parameters, it is sending out username, password and an encrypted password (AES) before it can log in into the site.
In Welcome.do page it has the code for password encryption (AES/256). In the loginaction.do it returns the parameters along with the masked and encrypted pw (e.g username = testuser1, password = ******, encrypted_password = uicbaicbqibvie20910).
I already tried the boundary expression and it is able to take the encrypted_pw from welcome.do but I noticed that it’s not the same as the encrypted_pw(returned from server) when user clicks on Sign In button.
How do I masked the pw so that the real pw will not be logged in server.log?
How will I get the returned encrypted_pw from server?
When I checked the server.log, I also noticed that it seems like jmeter is not able to connect to jboss web server for pw authentication. Is there a configuration that I need to add in order to make the needed connection?
Since it is unable to successfully pass the authentication stage, it is returning a Session Timeout Error and user is unable to login.
So, I try logging in from the website itself and it is able to successfully authenticate my test user account.
What approach should I do in order to resolve this issue?Â
Thank you for replying.