What's new

openvpn security issue for both john and merlin

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

The first paragraph specifically states that jumping from 1.0.0 to 1.0.2 should retain binary compatibility.

http://openssl.org/about/releasestrat.html

That is actually the most helpful bit of information there, especially since the confirmation is from the OpenSSL devs. Thanks!

Also concerning minor releases, ie. The last digit.

As hackish as it would seem to simply symlink 1.0.0 -> 1.0.2, it should be acceptable.

I wouldn't blindly do that, because who knows what a programmer decided to change in his API in a minor revision number change. But in this case since the developer itself confirmed backward API compatibility, it would be fine then having a symlink pointing to the 1.0.2 version of the library.
 
My post was waiting moderation. Perhaps because I posted a url, and don't have many posts.

The new forum software is more touchy, and after the large waves of spam that hit us these past few months, I suspect Tim decided to tighten security a bit more to cut down on spam, so occasionally Tim and I (for the Asus wireless subforums) do have to release a moderated post from the queue.
 
BTW, to use TLS 1.2 (and the newer TLS ciphers) after upgrading OpenSSL to 1.0.2, you must tell OpenVPN to negotiate support for TLS > 1.0, by adding this to both clients and servers:

Code:
tls-version-min 1.0

This will result in this:

Before:

Code:
Control Channel: TLSv1, cipher TLSv1/SSLv3 DHE-RSA-AES256-SHA, 1024 bit RSA

After:
Code:
Control Channel: TLSv1.2, cipher TLSv1/SSLv3 DHE-RSA-AES256-GCM-SHA384, 1024 bit RSA

Otherwise, just upgrading OpenSSL to 1.0.2 will bring no change to OpenVPN's behaviour.

Source: https://community.openvpn.net/openvpn/ticket/401
 
Last edited:

Similar threads

Latest threads

Support SNBForums w/ Amazon

If you'd like to support SNBForums, just use this link and buy anything on Amazon. Thanks!

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Top