Jump to content
Changes to the Jaspersoft community edition download ×
  • This documentation is an older version of JasperReports Server Security Guide. View the latest documentation.

    In JasperReports Server version 5.5 or later, administrators can obfuscate passwords that appear in the configuration files. This satisfies security audit requirements and prevents the passwords from being seen by unauthorized individuals. Typically, the following are encrypted:

    The password to JasperReports Server's internal database (jasperserver).
    The passwords to the sample databases (foodmart and sugarcrm).
    On Tomcat and tcServer, passwords in JNDI resource definitions.

    You can change the configuration to also encrypt:

    The password for the mail server used by the scheduler (quartz.mail.sender.password)
    The password for LDAP external authentication.

    Passwords in configuration files are encrypted during JasperReports Server installation. If the installation deploys to the Tomcat application server, the database password is also automatically encrypted in the JNDI configuration (in the file context.xml).

    warning-icon-ns_28x28.png.a8415e15c7fc74ba54447162a4a460a0.png

    Full password security cannot be guaranteed from within JasperReports Server. A user with sufficient privileges and knowledge of JasperReports Server can gain access to the encryption keys and the configuration passwords. While you could require a password on every server restart, this is impractical for most users. The only practical way to guarantee password security is through backup and restriction of access to the keystore property file.

    Encrypting Configuration Passwords on Tomcat (or Spring tcServer)

    To encrypt passwords in a Tomcat or tcServer installation, modify the installation procedure:

    1. Depending on the database you use, copy the installation configuration file as usual:

    from: <js-install>/buildomatic/sample_conf/<database>_master.properties

    to: <js-install>/buildomatic/default_master.properties

    2. Edit the default_master.properties file:
         Enter values specific to your installation.
         Enter your passwords in plain text.
         Turn on configuration file encryption by uncommenting the encrypt=true property. You don't have to uncomment any other encryption properties because they all have the default values shown.
         Unless you're using Oracle, uncomment propsToEncrypt and set it to dbPassword,sysPassword.
         Optionally, specify additional properties to encrypt as described in Encrypting Additional Properties in default_master.properties.
         Optionally, change the settings for configuration file encryption as described in Encryption Options.
    3. Run the buildomatic installation script (js-install) and all other installation steps according to the JasperReports Server Installation Guide. This will have the following effects:
    a. The plain text passwords in default_master.properties are overwritten with their encrypted equivalents. There is no warning when you run js-install with encrypt=true.
    b. The encrypted passwords are propagated to all configuration files.
    c. The installation proceeds and copies files to their final locations.
    4. After installation, passwords are encrypted in the following locations:
         In all server configuration files in .../WEB-INF/applicationContext*.xml.
         In JNDI definitions in .../META-INF/context.xml.
         In the default_master.properties files that remain after installation.

    note-icon-ns.png.78dc361f21d93a7e218da279a78f222a.png

    If you get an error like the following when restarting the server:

    you may need to add the following to your Tomcat service start properties:

    Encrypting Configuration Passwords on Enterprise Servers

    Most enterprise servers, like JBoss, Glassfish, WebSphere, and WebLogic, have proprietary ways to set up password encryption. You should use these encryption methods. JasperReports Server doesn't automatically set up encrypted passwords for these servers during deployment. In this case, you can encrypt the passwords in the buildomatic file after deployment:

    1. Deploy JasperReports Server to your enterprise server as specified in the JasperReports Server Installation Guide. The resulting JasperReports Server instance will have unencrypted JNDI data source passwords. If you want to encrypt these passwords, refer to your application server's documentation.
    2. After the server has been successfully configured, encrypt the JasperReports Server configuration files as follows:
    a. In default_master.properties, turn on encryption by uncommenting encrypt=true.
    b. Run the target js-ant refresh-config. This will remove and recreate all the configuration files without deploying them to the application server. Now the buildomatic files will have the database passwords encrypted. You should still be able to execute import/export or other scripts.

    warning-icon-ns.png.0edcdaab4dd221747d9b78a96ac9cfc3.png

    Do not run js-install or js-ant deploy-webapp-pro. These commands will overwrite the WAR file created in step 1 and render the server data sources inaccessible. If you need to redeploy the WAR file, reset the database password(s) to plain text in your default_master.properties and start again with step 1.

    Encrypting Additional Properties in default_master.properties

    You can encrypt additional properties in the default_master.properties file. To work correctly, these properties need to be decrypted when used. Currently decryption is supported for properties loaded into the Spring application context via the propertyConfigurer bean in applicationContext-webapp.xml.

    note-icon-ns.png.0649e9823c1deff376b75a0da0cf0851.png

    If a property is defined via JNDI, we recommend pointing there instead of encrypting:

    The following code sample shows the propertyConfigurer bean in applicationContext-webapp.xml:

    Because we extended Spring's PropertyPlaceholderConfigurer class as DecryptingPropertyPlaceholderConfigurer, all the loaded properties are scanned for the special marker ENC-<value>-. If that marker is found around the property value, that property is decrypted before it's loaded into Spring context.

    To determine if your property is scanned by propertyConfigurer, search the files in propertyConfigurer's locations to see if it's defined in one of these files.

    For example, suppose you want to encrypt the password property of the reportSchedulerMailSender bean in applicationContext-report-scheduling.xml:

    The use of the ${...} syntax tells you that report.scheduler.mail.sender.password is most likely defined via the propertyConfigurer bean. Search through the propertyConfigurer locations to verify. This property is defined in /WEB-INF/js.quartz.properties as follows: report.scheduler.mail.sender.password=${quartz.mail.sender.password}.

    Once you've verified that the quartz.mail.sender.password property can be encrypted using default-master.properties, you set up encryption before installation as follows:

    1. Set the password for quartz.mail.sender.password in default-master.properties:

    quartz.mail.sender.password=cleartextpassword

    2. Uncomment the encrypt=true property in the same file.
    3. Uncomment propsToEncrypt=dbPassword in default-master.properties.
    4. Add quartz.mail.sender.password to propsToEncrypt:
    5. Configure and install your JasperReports Server WAR installation as described in the JasperReports Server Installation Guide.
    6. Verify that report.scheduler.mail.sender.password was encrypted in both default-master.properties and in /WEB-INF/js.quartz.properties.

    Password Encryption for External Authentication

    As of JasperReports Server 5.6, you can encrypt the passwords in the external authentication configuration files for LDAP and external database authentication. Here we cover only the encryption of these passwords; for details about configuring external authentication, see the JasperReports Server External Authentication Cookbook.

    To enable encryption during installation, property values in the external authentication sample configuration are referenced from other configuration files. For example, if you're using LDAP to authenticate, the sample configuration file contains the following reference to the LDAP password:

    <bean id="ldapContextSource"    class="com.jaspersoft.jasperserver.api.security.externalAuth.ldap.JSLdapContextSource">  <constructor-arg value="${external.ldap.url}" />    <property name="userDn" value="${external.ldap.username}" />  <property name="password" value="${external.ldap.password}"/></bean>[/code]                    

    The values referenced by the ${...} format are defined in the js.externalAuth.properties file and imported into Spring context via the propertyConfigurer. For example, the LDAP properties are defined in js.externalAuth.properties as follows:

    The ${...} syntax again references other configuration properties that must be set in default_master.properties before installation or upgrade. The following example shows the syntax of the properties in the default_master.properties file:

    To encrypt the password property, set the following values in default_master.properties before installation or upgrade:

    external.ldapPassword=cleartextpassword...encrypt=true propsToEncrypt=dbPassword, external.ldapPassword[/code]                    

    During the installation process, the password value in default_master.properties and its reference in js.externalAuth.properties are overwritten with the encrypted value.

    If your external authentication is configured to create organizations for external users, and you're using JasperReports Server 6.0, or later, there is another password to encrypt. When external authentication creates an organization, it uses the information in ExternalTenantSetupUser of the externalTenantSetupProcessor bean to create the organization administrator.

    <bean class="com.jaspersoft.jasperserver.multipleTenancy.security.externalAuth.processors.             MTAbstractExternalProcessor.ExternalTenantSetupUser">  <property name="username" value="${new.tenant.user.name.1}"/>  <property name="fullName" value="${new.tenant.user.fullname.1}"/>  <property name="password" value="${new.tenant.user.password.1}"/>  <property name="emailAddress" value="${new.tenant.user.email.1}"/>  <property name="roleSet">    <set>      <value>ROLE_ADMINISTRATOR</value>      <value>ROLE_USER</value>    </set>  </property></bean>[/code]                    

    The values referenced by the ${...} format are defined in the js.config.properties file as follows:

    note-icon-ns.png.8e405f1d87c735d26b2ba621b5ef4cc0.png

    The default values for new tenant (organization) administrators in js.config.properties apply only to external authentication. They do not apply to organizations created by administrators through the UI or REST interface.

    To encrypt this password, modify the js.config.properties file as follows:

    Then add the following lines to default_master.properties before installation or upgrade:

    During the installation process, the password value in default_master.properties and its reference in js.config.properties are overwritten with the encrypted value.

    Encryption Options

    In buildomatic installation scripts, the passwords are symmetrically encrypted: the same secret key is used for both encryption and decryption. The key and its containing keystore file are randomly generated on each machine during the first JasperReports Server installation. All subsequent JasperReports Server installations on the same server rely on the same keystore; they don't regenerate the key.

    The keystore is an encrypted file used to securely store secret keys. JasperReports Server uses keystore properties to access the keystore. Both the keystore and keystore properties files are created by default in the user home directory. Alternatively, before running js-install, you can specify different locations for the keystore and keystore properties files via the environmental variables ks and ksp.

    By default, database passwords are encrypted with the AES-128 algorithm in Cipher Block Chaining mode with PKCS5 padding. The AES algorithm is the current industry encryption standard. You can choose to modify the encryption strength by choosing either a different algorithm, a longer secret key size (for example AES-256), or a different encryption mode.

    Edit the following properties in your default_master.properties and set these options. If a property is commented out, the default is used:

    Property Description Default
    build.key.algo Algorithm used to encrypt the properties in configuration files. AES
    build.key.size

    Size of the encryption key as in AES-128.

    To increase the key size, if it has not been done before, you might have to install "Unlimited Strength Jurisdiction Policy Files" from the Oracle site for your Java version. To install the files, download US_export_policy.jar and local_policy.jar. AFTER backing up the old files, extract the jars into %JAVA_HOME%/jre/lib/security directory.

    Alternatively, you may download one of the reputable providers such as Bouncy Castle (ships with JasperReports Server). You would need to add the Bouncy Castle provider to the list in
    %JAVA_HOME%/jre/lib/security/java.security file:

    security.provider.<seq number>=
    org.bouncycastle.jce.provider.BouncyCastleProvider

    128 (bits)
    enc.transformation So-called encryption mode. See Java's javax.crypto documentation to understand the modes and padding better. AES/CBC
    /PKCS5
    Padding
    enc.block.size The size of the block that's encrypted. Encrypted text can contain many blocks. Usually the block is changed together with the encryption algorithm. 16 (bytes)
    propsToEncrypt A comma separated list of the properties to encrypt. dbPassword


    User Feedback

    Recommended Comments

    There are no comments to display.



    Guest
    This is now closed for further comments

×
×
  • Create New...