Skip to content

Commit

Permalink
Fix for SSL Freak vulnerability
Browse files Browse the repository at this point in the history
This fix pushes selected set of secure ciphers into
haproxy config file.

Change-Id: I3d93da64aa48c42b7150ca7846215b51df5274ba
Closes-Bug: #1477400
  • Loading branch information
Varun Lodaya authored and Varun Lodaya committed Jul 23, 2015
1 parent e1cc50e commit 59937d4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/vnsw/agent/oper/loadbalancer_haproxy.cc
Expand Up @@ -61,6 +61,12 @@ void LoadbalancerHaproxy::GenerateGlobal(
*out << string(4, ' ') << "daemon" << endl;
*out << string(4, ' ') << "user nobody" << endl;
*out << string(4, ' ') << "group nogroup" << endl;
*out << string(4, ' ') << "tune.ssl.default-dh-param 2048" << endl;
*out << string(4, ' ') << "ssl-default-bind-ciphers " <<
"ECDH+AESGCM:DH+AESGCM:ECDH+AES256:" <<
"DH+AES256:ECDH+AES128:DH+AES:" <<
"ECDH+3DES:DH+3DES:RSA+AESGCM:" <<
"RSA+AES:RSA+3DES:!aNULL:!MD5:!DSS" << endl;
*out << endl;
}

Expand Down

0 comments on commit 59937d4

Please sign in to comment.