Enabling SSL breaks apache

61

If you try your cipher string with openssl ciphers -V cipher-string until you get similar errors.

... ssl on my 12.04 VPS

12.04 ships with OpenSSL 1.0.1

SSLCipherSuite ...+TLSv1:+TLSv1.1:+TLSv1.2:...

+TLSv1.1:+TLSv1.2 is not supported in 1.0.1 yet. If you remove these settings everything should succeed.

Apart from that I question the quality of your cipher string. MEDIUM should not be used, same with RC4 (use DES-CBC3-SHA to support older browsers). You might have a look at https://security.stackexchange.com/questions/51680/optimal-web-server-ssl-cipher-suite-configuration to determine better ciphers.

Share:
61

Related videos on Youtube

neanderslob
Author by

neanderslob

Updated on September 18, 2022

Comments

  • neanderslob
    neanderslob over 1 year

    The component accepts a string in the process and tries to convert it to a regular expression.

    function ControlString(props) {
        const regExp = new RegExp(props.template, "g");
        ...
    }
    

    The update is called for each input character, so if in the parent to try to enter '\ d', the constructor will generate an error on the single oblique line

    In functions, componentDidCatch does not work. How can I handle this exception without translating the entire component into a class?

  • Steffen Ullrich
    Steffen Ullrich over 9 years
    The ciphers are supported, but not the modifier "TLSv1.2" and "TLSv1.1" for the ciphers string. And while these are supported in later version they are not yet documented (at least with 1.0.1f). This inconsistent behavior is unfortunately not untypical for OpenSSL.