Java/Security

From Chorke Wiki
Revision as of 19:51, 21 October 2018 by Shahed (talk | contribs) (Created page with "<syntaxhighlight lang="java"> //http://docs.oracle.com/javase/7/docs/technotes/guides/security/jsse/JSSERefGuide.html System.setProperty("jsse.enableSNIExtension", "false"); S...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
//http://docs.oracle.com/javase/7/docs/technotes/guides/security/jsse/JSSERefGuide.html
System.setProperty("jsse.enableSNIExtension", "false");
System.setProperty("sun.security.ssl.allowUnsafeRenegotiation", "true");
System.setProperty("sun.security.ssl.allowLegacyHelloMessages", "true");

References