Archive for November, 2014

whm / cpanel disable sslv3

登陆WHM » Service Configuration » Apache Configuration » Include Editor » Pre Main Include

 

 

Code:
SSLProtocol All -SSLv2 -SSLv3
SSLCipherSuite EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH +
SSLHonorCipherOrder on

This will work with Apache and also LiteSpeed, if you have this installed on your server.

 

testhttp://foundeo.com/products/iis-weak-ssl-ciphers/test.cfm

 

 

or

Home » Service Configuration » Apache Configuration » Include Editor » Pre Main Include (pre_main_global.conf)

Enter:
SSLProtocol ALL -SSLv2 -SSLv3

Save and restart Apache to complete.

Comments

SSLv3 broke again Vulnerability

SSLv3 Vulnerability broke again,Google's new draft TLS_FALLBACK_SCSV Under yet unclear circumstances,SSLv3 is currently disabled Does not consider IE6 The workaround。

1
2
3
4
5
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers ECDHERSAAES256SHA384:AES256SHA256:RC4:HIGH:!MD5:!Anull:!eNULL:!NULL:!DH:!EDH:!AESGCM;
ssl_prefer_server_ciphers on;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 10m;

 

sslv3 testhttp://foundeo.com/products/iis-weak-ssl-ciphers/test.cfm

Comments

linux under the shell displays -bash-4.1 # does not display the path Solution

It does not show in the path in linux shell,Appears as -bash-4.1 # inconvenient to use them。

How to show the path of the shell it?

Proceed as follows:

vim ~/.bash_profile

(Do not bother .bash_profile This file has several,Their new one is also possible)

Add the final
export PS1='[\u@h W]\$’

And then do
source ~/.bash_profile

So you can show the path of the shell。

Comments