Security
On this page:
- Securing Servlets
iSymphony opens several ports for communication with the outside world. These ports include the Web Ports used by the server to provide both the Administration and Client web interfaces, the REST API and Voicemail and Recording Agent file servers. The iSymphony server is broken up into several subsections call servlets. Each servlet can have several layers of security activated on them in order to prevent unauthorized access and man in the middle attacks.
Securing Servlets
Your iSymphony install contains the file /opt/isymphony3/server/conf/security.xml. This file contains the security settings for all servlets in the application.
Servlets
Each servlet in the system has a specific function and enabling security on each one will secure a different piece of the application. Each servlet that can be restricted will have a relative SecurityContext in security.xml
communication_manager
Securing the communication_manager SecurityContext will restrict access to the REST API of the iSymphony Server.
client
Securing the client SecurityContext will restrict access to the iSymphony Client Interface.
administrator
Securing the administrator SecurityContext will restrict access to the iSymphony Administration Interface.
voicemail
Securing the voicemail SecurityContext will restrict access to the Voicemail Agent file server that allows playback of voicemail in the browser.
recording
Securing the recording SecurityContext will restrict access to the Recording Agent file server that allows playback of recordings in the browser.
SSL Keystore
The SSLKeystore tag in security.xml allows you to define the keystore that contains the SSL certificate to use when SSL is enabled on a particular servlet. You must specify the filename of the keystore, keystorePassword, the keyPassword, and the certAlias.
Creating A Self Signed SSL Keystore
The following method requires the Oracle JDK.
Run the following command to create your SSL keystore. Follow the prompts to finish creating the keystore.
keytool -keystore <filename> -alias <alias> -genkey -keyalg RSA -validity <number of days cert is valid>Export the generated public key from the keystore by running the following command:
keytool -export -keystore <keystore file name from step2> -alias <alias> -file <filename>Import the public key into the java truststore (cacerts) located in the java home directory:
keytool -import -alias <alias> -file <file from step 3> -keystore $JAVA_HOME/jre/lib/security/cacertsThe default password for the cacerts truststore is: "changeit". For more information on the keytool please see the Oracle documentation :
https://docs.oracle.com/javase/8/docs/technotes/tools/unix/keytool.html
Creating a Keystore with Let's Encrypt
Creating a Keystore with The Let's Encrypt module for FreePBX
FreePBX automates the process for obtaining a Let'sEncrypt certificate and utilizes it's own directory structure and file names to place the resulting files (The Certificate, any intermediate Certificate Authority chain and private key) on the filesystem.
First, we must compile and convert the resulting LE certificate chain and private key to PKCS12 format utilizing the OpenSSL binaries:
You can choose the name you would like for the certificate alias and resulting pkcs12 keystore file name (-name and -out parameters). The above is only an example, though works without issue, so feel free to use it if appropriate.
The OpenSSL command will ask you for a password for the exported keystore. Be sure to set one as it is required and empty string passwords are not valid for this process. For this example, we used the password "isymphony".
Then, you just import the resulting pkcs12 keystore into a newly created Java Keystore supplying the appropriate parameters and set the destination store password and key password:
And your new java keystore will be in the resulting file: ./isymphony.jks file.
This file should be copied into the top level directory of your /opt/isymphony3/server/conf (or appropriate installation directory for iSymphony) directory.
Make iSymphony Aware of the SSLKeystore
Modify /opt/isymphony3/server/conf/security.xml to make iSymphony aware of the keystore by modifying the SSLKeystore XML element with the appropriate values:
Then enabling SSL on each context you would like to utilize SSL (More on this below) and restarting the iSymphonyServerV3 service should complete the configuration.
Enabling And Disabling Security Context
You can enable and disable entire Security Contexts by setting the enabled attribute to true or false in the SecurityContext tag in the /opt/isymphony3/server/conf/security.xml file. A disabled Security Context will apply no restrictions to the servlet despite any of the inner settings.
SSL
You can enable and disable SSL communication encryption on a specific Security Context by setting the enabled attribute in the SSL tag to true or false.
Realm Authentication
You can enable or disable HTTP realm authentication on a specific Security Context by setting the enabled attribute in the RealmAuth tag to true or false. You can add a new HTTP realm authentication user by adding a RealmAuthUser tag to the RealmAuthUsers. You can specify the user's credentials by populating the username and password attributes of the RealmAuthUser tag.
IP Access
You can enable IP access on a specific Security Context by setting the enabled attribute on the IPAccess tag to true or false. The IPAccess restriction will allow or deny connections from specific IP addresses based on the contents of the WhiteList and BlackList in the IPAccess tag.
Behavior
- IPs that are specified in the WhiteList will always be allowed to access the system unless the IP is specified in the BlackList as well.
- IPs that are specified in the BlackList will never be allowed to access the system.
- If no entries are specified in the WhiteList or BlackList all IPs will have access to the servlet.
- If entries exist in the WhiteList but not in the BlackList only the IPs specified in the WhiteList will have access to the servlet.