Details of the SSL POODLE bug can be found here We can address it in the following way. 1) Disable SSL 3.0 support in the client. 2) Disable SSL 3.0 support in the server. We can start WebLogic server with
Continue readingCategory: SSL
this category contains posts related to Secure Socket Layer
Converting certificate formats
Converting Certificate from JKS to P12 Format keytool -importkeystore -srckeystore Fabrizio.jks -destkeystore Fabrizio.p12 -srcstoretype JKS -deststoretype PKCS12 -srcstorepass weblogic1 -deststorepass weblogic1 -srcalias {4d390f81-7f7a-4a0a-ae76-9a5ea5ba567f} -destalias {4d390f81-7f7a-4a0a-ae76-9a5ea5ba567f} -srckeypass weblogic1 -destkeypass weblogic1 Converting certificate from PFX to JKS Format java -classpath ./jetty-6.1.1.jar org.mortbay.jetty.security.PKCS12Import
Continue readingCertificate Management in WebSphere Application Server
Before, trying to understand about the certificate management, installation of certificates inside the WebSphere application server we should first understand why we need ssl communication and what is the impact of not installing the certificates. During the olden days whenever
Continue readingAutomation of Open SSL CSR(Certificate Sign Request) creation
As part of my Job routine I need to create CSR for various new sites we maintain and mail them to CA. Creation of CSR is a two step process, first we create a key which is simple one line
Continue reading