Security Features of JBoss AS 5.1 - Part 2 - Masking Passwords in the configuration files
Nobody likes the idea of seeing passwords in the open in an xml file. In JBoss AS, we have various mechanisms by which passwords can be masked in the xml file. This article will act as a single stop reference to the various mechanisms.
In order to mask password attributes in the JBoss Microcontainer Bean definitions, see the following prototype
https://jira.jboss.org/jira/browse/JBAS-6710
... which works for JBoss AS 5.1 onwards
Steps to perform
First you need to create a keystore and generate a key (See additional information below for example).
You can use the command in the bin directory.
- Use the Password Tool (mentioned below).
- Configure the @Password annotation on the MC beans that you are interested in masking the password. Example is provided below.
Password Tool
There is a command line tool that can be used for centralized password management. The script is located in the bin directory. Remember that you can use the tool in the bin directory and the server configurations (default, all etc) can make use of the files that are generated by this tool.
=============================================
anil@localhost:~/jboss-6.0/jboss-head/build/output/jboss-6.0.0.Alpha1/bin$ ./password_tool.sh
**********************************
**** JBoss Password Tool********
**********************************
Error while trying to load data:Encrypted password file not located
Maybe it does not exist and need to be created.
0: Encrypt Keystore Password 1:Specify KeyStore 2:Create Password
3: Remove a domain 4:Enquire Domain 5:Exit
0
Enter Keystore password
testpass
Enter Salt (String should be at least 8 characters)
AnyStringThatIsLong
Enter Iterator Count (integer value)
111
Keystore Password encrypted into password/jboss_keystore_pass.dat
Loading domains [
]
0: Encrypt Keystore Password 1:Specify KeyStore 2:Create Password 3: Remove a domain
4:Enquire Domain 5:Exit
2
Enter security domain:
messaging
Enter passwd:
myPass
0: Encrypt Keystore Password 1:Specify KeyStore 2:Create Password
3: Remove a domain 4:Enquire Domain 5:Exit
5
org.jboss.security.integration.password.PasswordTool$ShutdownHook run called
Storing domains [
messaging,
]
=====================================================================
Configure the MC Beans
You will need to add an annotation to the bean definition. Lets take the example of JBoss Messaging SecurityStore MC Bean defined in deploy/messaging/messaging-jboss-beans.xml
Before your modification:
<bean name="SecurityStore"
class="org.jboss.jms.server.jbosssx.JBossASSecurityMetadataStore">
<!-- default security configuration -->
<property name="defaultSecurityConfig">
<![CDATA[
<security>
<role name="guest" read="true" write="true" create="true"/>
</security>
]]>
</property>
<property name="suckerPassword">CHANGE ME!!</property>
<property name="securityDomain">messaging</property>
<property name="securityManagement">
<inject bean="JNDIBasedSecurityManagement"/></property>
</bean>
After your modification:
<bean name="SecurityStore"
class="org.jboss.jms.server.jbosssx.JBossASSecurityMetadataStore">
<!-- default security configuration -->
<property name="defaultSecurityConfig">
<![CDATA[
<security>
<role name="guest" read="true" write="true" create="true"/>
</security>
]]>
</property>
<property name="securityDomain">messaging</property>
<property name="securityManagement">
<inject bean="JNDIBasedSecurityManagement"/></property>
<!-- Password Annotation to inject the password from the common password
utility -->
<annotation>@org.jboss.security.integration.password.Password(securityDomain=messaging,
methodName=setSuckerPassword)</annotation>
</bean>
As you can see, you have removed the attribute called as "suckerPassword" and introduced an MC annotation called as @Password whose configuration includes the security domain as well the MC bean property where the password needs to be injected.
Additional Information
The keystore can be generated as follows:
$ keytool -genkey -alias jboss -keyalg RSA -keysize 1024 -keystore server.keystore
Enter keystore password: testpass
What is your first and last name?
[Unknown]: JBoss Security
What is the name of your organizational unit?
[Unknown]: JBoss Division
What is the name of your organization?
[Unknown]: Red Hat Inc
What is the name of your City or Locality?
[Unknown]: Raleigh
What is the name of your State or Province?
[Unknown]: NC
What is the two-letter country code for this unit?
[Unknown]: US
Is CN=JBoss Security, OU=JBoss Division, O=Red Hat Inc, L=Raleigh, ST=NC, C=US correct?
[no]: yes
Enter key password for <jboss>
(RETURN if same as keystore password):
Other Masking Information
- Encrypting Data Source Passwords
- Encrypting Keystore Password in Tomcat Connector
- Encrypting Ldap Password in the LdapExtLoginModule
Background Information
This feature utlizes the Microcontainer lifecycle callbacks.
The password is set from a common utility into the MC bean during the "create" step.
Reference:
- http://www.jboss.org/community/wiki/MaskingPasswordsinJBossASXMLConfiguration
- http://server.dzone.com/articles/security-auditing-jboss
About the Author:
Anil Saldhana is the lead security architect at JBoss. He blogs at http://anil-identity.blogspot.com
| Attachment | Size |
|---|---|
| MCDeployment_compressed.png | 73.09 KB |
- Login or register to post comments
- 4517 reads
- Printer-friendly version
(Note: Opinions expressed in this article and its replies are the opinions of their respective authors and not those of DZone, Inc.)











Comments
SecurityMan replied on Tue, 2009/11/24 - 5:22pm
I've checked how password_tool encrypts/decrypts the data and found out that the same hard-coded PBE secret (78aac249a60a13d5e882927928043ebb) is used for encrypting/decrypting (see below).
Please let me know what I'm missing here or what is the point of the whole proposed solution? If my findings are correct, it will just create a false feeling of safety.
From FilePassword.java: