Search code examples
wso2wso2-wsas

Disable SSLv3 on WSO2 WSAS 3.1


I am administering an instance of WSO2 WSAS 3.1. After searching for the documentation, I couldn't find anything related to how to change ssl/tls protocols.

Does anyone knows how can I disable the SSLv3 in this version of WSO2 WSAS?

Thanks in advance


Solution

  • To solve the problem I had to change the SSL/TLS protocols in [wso2_home]/conf/transports.xml

    FROM:

    <transport name="https"  class="org.wso2.carbon.server.transports.http.HttpsTransport">
        <parameter name="port">9443</parameter>
    
        <parameter name="sslProtocol">TLS</parameter>
    

    TO:

    <transport name="https" class="org.wso2.carbon.server.transports.http.HttpsTransport">
        <parameter name="port">9443</parameter>
    
        <parameter name="sslProtocols">SSLv2Hello,TLSv1</parameter>
    

    Then stop and start the service.