The problem is, Java have pretty much blocked communications with SSLv3 (in light of the recent Poodle attack scares). Which is fair enough, but it’s not helping me get on my server that’s 50 miles away! The following procedure allows you to re-enable SSLv3 in Java (Tested on version 8 update 40). Obviously there is some security risks in doing so, this is as SSLv3 is exploitable, so best practice would be to just do this temporarily to get access then disable it again when no longer needed.</p?
1. You need to locate your java.security file, I’ve found paths all over the Internet to its location, the one that matters I found in the following locations;
MAC OSX: /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/security/java.security
2. Once located, edit the file and locate the line that reads;
[box]jdk.tls.disabledAlgorithms=SSLv3[/box]
MAC OSX Java.Security
Windows Java.Security
3. Simply remove SSLv3 from the end of the line and save the file. NOTE: With MAC OSX you will need to SUDO, to have the permissions to edit this file (see below).
Related Articles, References, Credits, or External Links