Encrypt Passwords with the Cipher Tool¶
The instructions on this page explain how plain text passwords in configuration files can be encrypted using the secure vault implementation that is built into MWARE IAM.
Before you begin
- If you are using Windows, you need to have Ant (http://ant.apache.org/) installed before using the Cipher Tool.
Encrypt passwords¶
-
Open the
deployment.toml
file in the<IS_HOME>/repository/conf/
directory and add the[secrets]
configuration section at the bottom of the file as shown below. Give an alias for the password type followed by the actual password. The following example lists the most common passwords in configuration files.[secrets] admin_password = "[password_1]" keystore_password = "[password_2]" key_password = "[password_3]" truststrore_password = "[password_4]" "log4j.appender.LOGEVENT.password" = "[password_5]"
-
Navigate to the
<IS_HOME>/bin/
directory in a command prompt and execute the following command (You must first enable the Cipher tool for the product by executing the-Dconfigure
command with the cipher tool script as shown below).- On Linux:
./ciphertool.sh -Dconfigure
- On Windows:
ciphertool.bat -Dconfigure
- On Linux:
-
Go back to the
deployment.toml
file and see that the alias passwords are encrypted.[secrets] admin_password = "GeNld2aZkydnIZGtkZYOnXlVzl8WBtZzAQ8kIoR5c7aHmyUkWTag7w4dG6B3JK5GxeX9bhsmZCBFozlPdWBT6Jvy" keystore_password = "brClL1SOHdezXTvBz1/76b/DnHQgxjNGtzhaBr3DnhHw32NWY484abHLREVyMoNJkER5lQUPbqeaMpR5lQUPbqeaMp" key_password = "CFAaISaI19dHLApEM3usNSDXXdhdicHbVncrVwuLDJp6Rhp8B3Qy3PnBhcJsryTqR/EPwdLnXboNJkER" truststrore_password = "DKnecEw+mJ8JhTUrqxpTZxwXrOdtcoAl2hD3LHtH+yJXNogumdSALfaqrMaknBzJq4SF3sY0RvwkMxWhnZ+BhIsko" "log4j.appender.LOGEVENT.password" = "kydnIZGtkZYOnXlVzl8WBtZzAQ8kIoR5c7aHmyUkWTagXTvBz1/76b/DnHQgxjNhD3LHtH+yJXNowecEEC"
Use encrypted passwords¶
When you have encrypted passwords, you can refer them from the relevant configuration files - the deployment.toml
file or LOG4j properties.
Passwords in deployment.toml¶
You can add the encrypted password to the relevant sections in the deployment.toml
file by using a place holder: $secret{alias}
.
Note
You can also replace your passwords by referring values passed by environment variables and system properties. See Set Passwords using Environment Variables/System Properties
[super_admin]
username="admin"
password="$secret{admin_password}"
[keystore.tls]
password = "$secret{keystore_password}"
alias = "$secret{keystore_password}"
key_password = "$secret{key_password }"
[truststore]
password = "$secret{keystore_password}"
Passwords in LOG4j properties¶
For example, consider the 'log4j.appender.LOGEVENT.password' in the log4j2.properties
file. You can refer the encrypted password from the log4j2.properties
file as shown below.
log4j.appender.LOGEVENT.password=secretAlias:log4j.appender.LOGEVENT.password
Change encrypted passwords¶
To change any password that has been encrypted already, follow the steps given below.
- Make sure you shut down the server.
- Navigate to the
<IS_HOME>/bin/
directory in a command prompt, where the cipher tool scripts (for Windows and Linux) are stored. - Execute the following command for your OS:
- On Linux:
./ciphertool.sh -Dchange
- On Windows:
ciphertool.bat -Dchange
It will prompt for the primary keystore password. Enter the keystore password (which iswso2carbon
for the default keystore).
- On Linux:
- The alias values of all the passwords that you encrypted will now be shown in a numbered list.
- The system will then prompt you to select the alias of the password which you want to change. Enter the list number of the password alias.
- The system will then prompt you (twice) to enter the new password. Enter your new password.