RC4 Cipher: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=External= * https://community.qualys.com/blogs/securitylabs/2013/03/19/rc4-in-tls-is-broken-now-what =Internal= * httpd SSL Configuration =Overview= =Disable Support...") |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 10: | Line 10: | ||
=Disable Support for the RC4 Cipher= | =Disable Support for the RC4 Cipher= | ||
Add ":!RC4" to the list of supported cipher suites and configure "SSLCipherSuite" in your virtual host. Example: | |||
<pre> | |||
<VirtualHost ...> | |||
... | |||
SSLCipherSuite HIGH:MEDIUM:!aNULL:!MD5:!SEED:!IDEA:!RC4 | |||
... | |||
</VirtualHost> | |||
</pre> |
Latest revision as of 01:14, 7 January 2016
External
Internal
Overview
Disable Support for the RC4 Cipher
Add ":!RC4" to the list of supported cipher suites and configure "SSLCipherSuite" in your virtual host. Example:
<VirtualHost ...> ... SSLCipherSuite HIGH:MEDIUM:!aNULL:!MD5:!SEED:!IDEA:!RC4 ... </VirtualHost>