-
Notifications
You must be signed in to change notification settings - Fork 30k
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
SSLv3 connectivity in Node LTS #3695
Comments
No, we build without SSLv3 support as it is effectively broken entirely and you might as well be using regular http. See:
|
Your only option is to use an old version of node, but still you really should not be using anything less than TLSv1 at this point if you care about security. You might contact the server owner and ask them to at least permit TLSv1+ connections. |
Closing as there isn't really anything actionable that we can do on this one |
What's the standard practice to let node throw an exception/warning message when using SSLv3/2? I had to spend quite some time debugging this issue since I just picked node back up and wasn't aware of this functionality. The only way I could get more information was from openssl cli, but it would have've been much nicer if there are existing warning or documentations. In my case, the same key/cert worked for a Java application so the debugging process has been particularly painful. If I missed anything apparent, please feel free to let me know. Thanks! |
@richardzyx Hi! This issue tracker is for bugs and issues found within Node.js core. Thanks! |
Hi! What version of nodejs and which modules supported TLSv1/SSLv3? |
@YuriyTigiev Not sure what you mean by "which modules" but SSLv3 has been disabled-by-default since Node.js 4.0.0. (It was disabled during the io.js fork.) I'm going to lock this issue. For more questions or clarifications, consider opening a new issue in this repo or in https://github.com/nodejs/help. You can also ask on StackOverflow, in IRC, etc. |
Believe it or not there are still "secure" sites running SSLv3 and I need to connect to it. When I set the:
secureProtocol: 'SSLv3_method'
I get back:
Error: SSLv3 methods disabled
I am using Node 4.2.2. Is there anything I can do to enable SSLv3?
The text was updated successfully, but these errors were encountered: