for example: we will configure Databse password at iiq.properties file using above syntax.
What is you application access URL?
did you configure secure port at server.xml
Access URL:
Always access your IdentityIQ instance using https://hostname/identityiq/. If you’re using http://, the browser will send the password in plain text.
Hi @pattabhi I’m using self signed certificate at port 8443 during login still the password is showing as plain text in the payload, my requirement is to encrypt the password.
If you’re using TLS, your payload is encrypted inside of the TLS session. You’re looking at local data. Your computer knows the password because you typed the password. Can you see the password if you capture the network traffic? You shouldn’t be able to unless you have the private key that decrypts the TLS session.
The problem with this is that if HTTPS ever gets downgraded to HTTP through a configuration error or exploit or someone gains access to your private key, they can see all of this traffic in plain text.
The best way to fix this is to implement SSO and remove passwords from the equation entirely.