DEV Community

Kevin Risden
Kevin Risden

Posted on • Originally published at risdenk.github.io on

Java - JVM Security Information Gathering

Overview

Over the last ~5 years I’ve worked with quite a few different Hadoop clusters. During this time, Java has changed quite a bit supporting different security features with each version. Additionally, each deployment has different requirements for required security configurations. The examples below show how to quickly grab JVM security configurations from the command line with jrunscript. This doesn’t require moving JAR files to different machines and can easily be run in many environments. The commands should work from Java 7 through Java 9 at least. Understanding the output of the below commands requires reading the Java security docs some of which are here, here, and here.

SecureRandom

SecureRandom is a class that provides a “cryptographically strong random number generator (RNG)”. Depending on the JDK configuration there are varying levels of security and performance. The commands below print out the available provider and algorithm for both standard SecureRandom() and SecureRandom.getInstanceStrong(). The examples also show how you can tweak the configuration of SecureRandom with Java properties.

jrunscript -e "sr = new java.security.SecureRandom(); print(sr.getProvider() + ' - ' + sr.getAlgorithm())"
jrunscript -Djava.security.egd=file:/dev/./urandom -e "sr = new java.security.SecureRandom(); print(sr.getProvider() + ' - ' + sr.getAlgorithm())"
jrunscript -e "sr = java.security.SecureRandom.getInstanceStrong(); print(sr.getProvider() + ' - ' + sr.getAlgorithm())"
jrunscript -Djava.security.egd=file:/dev/./urandom -e "sr = java.security.SecureRandom.getInstanceStrong(); print(sr.getProvider() + ' - ' + sr.getAlgorithm())"
Enter fullscreen mode Exit fullscreen mode

Security.getAlgorithms()

Security.getAlgorithms() returns the available algorithms for the specified service. This can be useful to determine if a required algorithm is supported by the JVM that you are running.

jrunscript -e "print(java.security.Security.getAlgorithms('SecureRandom'))"
jrunscript -e "print(java.security.Security.getAlgorithms('KeyStore'))"
jrunscript -e "print(java.security.Security.getAlgorithms('Cipher'))"
Enter fullscreen mode Exit fullscreen mode

Security.getProviders()

Security.getProviders() provides a way to list all the installed providers in order that they will be used by preference. If you had a custom provider or are checking if a standard provider is available, this command can help.

jrunscript -e "print(java.util.Arrays.toString(java.security.Security.getProviders()))"
Enter fullscreen mode Exit fullscreen mode

TLS/SSL Cipher Suites

With TLS/SSL becoming more important, configuring the JVM with the proper cipher suites is critical. The examples below show what the supported cipher suites are and what cipher suites are enabled by default. This can help debug problems where the server and client expect different cipher suites to be enabled.

jrunscript -e "print(java.util.Arrays.toString(javax.net.ssl.SSLServerSocketFactory.getDefault().getDefaultCipherSuites()))"
jrunscript -e "print(java.util.Arrays.toString(javax.net.ssl.SSLServerSocketFactory.getDefault().getSupportedCipherSuites()))"
jrunscript -e "print(java.util.Arrays.toString(javax.net.ssl.SSLContext.getDefault().getDefaultSSLParameters().getCipherSuites()))"
jrunscript -e "print(java.util.Arrays.toString(javax.net.ssl.SSLContext.getDefault().getSupportedSSLParameters().getCipherSuites()))"
Enter fullscreen mode Exit fullscreen mode

Top comments (0)