Skip to main content
Redhat Developers  Logo
  • AI

    Get started with AI

    • Red Hat AI
      Accelerate the development and deployment of enterprise AI solutions.
    • AI learning hub
      Explore learning materials and tools, organized by task.
    • AI interactive demos
      Click through scenarios with Red Hat AI, including training LLMs and more.
    • AI/ML learning paths
      Expand your OpenShift AI knowledge using these learning resources.
    • AI quickstarts
      Focused AI use cases designed for fast deployment on Red Hat AI platforms.
    • No-cost AI training
      Foundational Red Hat AI training.

    Featured resources

    • OpenShift AI learning
    • Open source AI for developers
    • AI product application development
    • Open source-powered AI/ML for hybrid cloud
    • AI and Node.js cheat sheet

    Red Hat AI Factory with NVIDIA

    • Red Hat AI Factory with NVIDIA is a co-engineered, enterprise-grade AI solution for building, deploying, and managing AI at scale across hybrid cloud environments.
    • Explore the solution
  • Learn

    Self-guided

    • Documentation
      Find answers, get step-by-step guidance, and learn how to use Red Hat products.
    • Learning paths
      Explore curated walkthroughs for common development tasks.
    • Guided learning
      Receive custom learning paths powered by our AI assistant.
    • See all learning

    Hands-on

    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.
    • Interactive labs
      Learn by doing in these hands-on, browser-based experiences.
    • Interactive demos
      Click through product features in these guided tours.

    Browse by topic

    • AI/ML
    • Automation
    • Java
    • Kubernetes
    • Linux
    • See all topics

    Training & certifications

    • Courses and exams
    • Certifications
    • Skills assessments
    • Red Hat Academy
    • Learning subscription
    • Explore training
  • Build

    Get started

    • Red Hat build of Podman Desktop
      A downloadable, local development hub to experiment with our products and builds.
    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.

    Download products

    • Access product downloads to start building and testing right away.
    • Red Hat Enterprise Linux
    • Red Hat AI
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Featured

    • Red Hat build of OpenJDK
    • Red Hat JBoss Enterprise Application Platform
    • Red Hat OpenShift Dev Spaces
    • Red Hat Developer Toolset

    References

    • E-books
    • Documentation
    • Cheat sheets
    • Architecture center
  • Community

    Get involved

    • Events
    • Live AI events
    • Red Hat Summit
    • Red Hat Accelerators
    • Community discussions

    Follow along

    • Articles & blogs
    • Developer newsletter
    • Videos
    • Github

    Get help

    • Customer service
    • Customer support
    • Regional contacts
    • Find a partner

    Join the Red Hat Developer program

    • Download Red Hat products and project builds, access support documentation, learning content, and more.
    • Explore the benefits

SSL Testing Tool

October 27, 2017
Siddhartha De
Related topics:
Java

    If you have a large number of servers, which are configured with SSL/TLS and you are out of track on their certificate validity, now all of sudden you are worried if some of the certificates are expired.

    Or if I think in some other scenario where you are required to understand underlying SSL/TLS configuration of your servers e.g. CipherSuits, Protocols, etc.

    Yes, in the traditional way, you can get all the information of your SSL/TLS configuration by login into an individual server and check the certificates but it is very difficult if your environment size is very high.

    To overcome this problem, I have to build a tool, which will give you all required details.

    Source Code:

    import java.io.FileInputStream;
    import java.math.BigInteger;
    import java.security.KeyStore;
    import javax.net.ssl.KeyManager;
    import javax.net.ssl.KeyManagerFactory;
    import javax.net.ssl.SSLContext;
    import javax.net.ssl.SSLSession;
    import javax.net.ssl.SSLSocket;
    import javax.net.ssl.SSLSocketFactory;
    import javax.net.ssl.TrustManager;
    import javax.net.ssl.TrustManagerFactory;
    import javax.security.cert.X509Certificate;
    
    /**
    *
    * @author sidd
    **/
    
    public class SSLFactory_Client {
        public static void main(String[] args){
           String hostname;
           Integer port;
           if(args.length!=2){
               hostname = "google.com";
               port = 443;
           }else{
               hostname = args[0];
               port = Integer.valueOf( args[1]);
           }
    
           SSLFactory_Client sclient = new SSLFactory_Client();
           SSLContext sslContext = sclient.createSSLContext();
           try {
               SSLSocketFactory sslSocketFactory = sslContext.getSocketFactory();
               SSLSocket sslSocket = (SSLSocket) sslSocketFactory.createSocket(hostname, port);
               sslSocket.startHandshake();
               SSLSession sslSession = (SSLSession) sslSocket.getSession();
                
               System.out.println("SSLSession :");
               System.out.println("\tSessionID: "+  new BigInteger(sslSession.getId()));
               System.out.println("\tProtocol : "+sslSession.getProtocol());
               System.out.println("\tCipher suite : "+sslSession.getCipherSuite());
               System.out.println("\tServer: "+sslSession.getPeerHost());
               System.out.println("\tSSL Port: "+sslSession.getPeerPort());
    
               System.out.println("\nSupported Protocol :");
               for(int i=0;i<sslSocket.getEnabledProtocols().length;i++){
                   System.out.println("\t"+sslSocket.getEnabledProtocols()[i]);
               }
    
               System.out.println("\nSupported CipherSuites: ");
               for(int j=0;j<sslSocket.getEnabledCipherSuites().length;j++){
                   System.out.println("\t"+sslSocket.getEnabledCipherSuites()[j]);
               }
    
               X509Certificate[] certs = (X509Certificate[]) sslSession.getPeerCertificateChain();
               System.out.println("\nCertificate Chain Info :");
               for (int i =0;i<certs.length;i++){
                   System.out.println("\tSubject DN :"+((X509Certificate) certs[i]).getSubjectDN());
                   System.out.println("\tIssuer DN  : "+((X509Certificate) certs[i]).getIssuerDN());
                   System.out.println("\tSerial No. : "+((X509Certificate) certs[i]).getSerialNumber());
                   System.out.println("\tExpires On : "+((X509Certificate) certs[i]).getNotAfter()+"\n");
              }   
           } catch (Exception ex) {
               ex.printStackTrace();
           }
        } 
    
        private SSLContext createSSLContext(){
           try{
               KeyStore keyStore = KeyStore.getInstance("JKS");
               keyStore.load(new FileInputStream("/opt/jdk1.8.0_102/jre/lib/security/cacerts"),"changeit".toCharArray());        
    
               // Create key manager
               KeyManagerFactory keyManagerFactory = KeyManagerFactory.getInstance("SunX509");
               keyManagerFactory.init(keyStore, "changeit".toCharArray());
               KeyManager[] km = keyManagerFactory.getKeyManagers();          
    
               // Create trust manager
               TrustManagerFactory trustManagerFactory = TrustManagerFactory.getInstance("SunX509");
               trustManagerFactory.init(keyStore);
               TrustManager[] tm = trustManagerFactory.getTrustManagers();
              
               // Initialize SSLContext
               SSLContext sslContext = SSLContext.getInstance("TLSv1.2");
               sslContext.init(km,  tm, null);
               return sslContext; 
           } catch (Exception ex){
               ex.printStackTrace();
               return null;
           }
        }
    }

    Compile the code using javac (e.g. javac SSLFactory_Client .java).

    Now, you can execute the program, you need to pass the hostname and port during the execution (e.g java SSLFactory_Client “google.com” 443) and you will get the output something like below.

    Output:

    Note: This program can also be used for testing two-way SSL/TLS connection.

    Last updated: October 20, 2017

    Recent Posts

    • Red Hat Enterprise Linux 10.2 and 9.8: Top features for developers

    • What GPU kernels mean for your distributed inference

    • Debugging image mode with Red Hat OpenShift 4.20: A practical guide

    • EvalHub: Because "looks good to me" isn't a benchmark

    • SQL Server HA on RHEL: Meet Pacemaker HA Agent v2 (tech preview)

    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Platforms

    • Red Hat AI
    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Build

    • Developer Sandbox
    • Developer tools
    • Interactive tutorials
    • API catalog

    Quicklinks

    • Learning resources
    • E-books
    • Cheat sheets
    • Blog
    • Events
    • Newsletter

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Report a website issue
    • Site status dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Inclusion at Red Hat
    • Cool Stuff Store
    • Red Hat Summit
    © 2026 Red Hat

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility

    Chat Support

    Please log in with your Red Hat account to access chat support.