Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable SSlv2ClientHello by default #934

Closed
slandelle opened this issue Jul 14, 2015 · 1 comment
Closed

Disable SSlv2ClientHello by default #934

slandelle opened this issue Jul 14, 2015 · 1 comment
Assignees
Milestone

Comments

@slandelle
Copy link
Contributor

Since PODDLE, most servers have harden their protocol configuration. Sometimes, SSLv2Hello got disabled along the way, causing handshake to fail.

Let's only enable TSL by default.

See #925 and https://groups.google.com/forum/#!topic/asynchttpclient/pSxiChVJwiI

Workaround is to explicitly configure the enabled protocols.

@slandelle slandelle self-assigned this Jul 14, 2015
@slandelle slandelle added this to the 1.9.30 milestone Jul 14, 2015
@mgrandi
Copy link

mgrandi commented Jul 14, 2015

Setting in your AsyncHttpClientConfig.Builder

builder.setEnabledProtocols(new String[] {"TLSv1.2", "TLSv1.1", "TLSv1"});

fixes it for now, until the next release comes out that has those protocols set as the default.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants