User Tools

Site Tools


computing:java_security

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
computing:java_security [2016/07/07 09:48]
gcooper
computing:java_security [2017/07/11 09:35] (current)
gcooper
Line 1: Line 1:
 ====== Java Security Tweaks ====== ====== Java Security Tweaks ======
 +
 +<note tip>If you are trying to use Java in a web browser, **use Internet Explorer as your browser as Firefox no longer supports the Java plugin** for security reasons.</note>
 +
 +<note warning>For versions of Java newer than 6, be sure to add the target to the **Exception Site List** of trusted URLs using the **Java Control Panel applet**, under the **Security tab**.</note>
  
 ===== Algorithm constraints check failed: MD5withRSA ===== ===== Algorithm constraints check failed: MD5withRSA =====
Line 9: Line 13:
 Here, we edit ''$JAVA_HOME/jre/lib/security/java.security'' to reduce the requirement to 512. Here, we edit ''$JAVA_HOME/jre/lib/security/java.security'' to reduce the requirement to 512.
  
-Change ''1024'' to ''512'':+Change ''1024'' to ''512'', ''256'' or ''128'' as necessary to cover the SSL cert being presented:
  
 <file> <file>
 jdk.certpath.disabledAlgorithms=MD2, RSA keySize < 1024 jdk.certpath.disabledAlgorithms=MD2, RSA keySize < 1024
 +
 +jdk.tls.disabledAlgorithms=SSLv3, RC4, MD5withRSA, DH keySize < 768
 </file> </file>
  
Line 19: Line 25:
 <file> <file>
 jdk.certpath.disabledAlgorithms=MD2, RSA keySize < 512 jdk.certpath.disabledAlgorithms=MD2, RSA keySize < 512
 +
 +jdk.tls.disabledAlgorithms=SSLv3, RC4
 </file> </file>
  
computing/java_security.1467906535.txt.gz · Last modified: 2016/07/07 09:48 by gcooper