weblogic certificate import issue - java

I am using jdk 1.8 for weblogic 12.2.1.3 with the SOA suite. I have to import one certificate from the webserver to the application server. I have downloaded the certificate from the webserver and tried to import it in default cacerts. Path is /u01/oracle/products/jdk/jre/lib/security/cacerts
My certificate is imported as I am getting a message saying certificate is added. But when i am trying to call the soap URL I am getting an error as below
<bpelFault><faultType>0</faultType><remoteFault xmlns="http://schemas.oracle.com/bpel/extension"><part name="summary"><summary>oracle.fabric.common.FabricInvocationException: Unable to invoke endpoint URI "https://stageosb.au.ar/restricted/soasession" successfully due to: javax.xml.soap.SOAPException: javax.xml.soap.SOAPException: Message send failed: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
So I went to check the certificate I have imported by listing them with alias name with below command
keytool -list -v -keystore cacerts -storepass changeit | grep "Alias name:"
I got list of certificates installed. In that list I saw my certificate also mentioned there with one weird thing: All certificates installed from previously have jdk at the end. But for my certificates which I am importing it is not showing jdk at last of it. please see below
Alias name: popcasca
Alias name: verisignclass1g2ca [jdk]
Alias name: comodoaaaca [jdk]
Alias name: geotrustprimarycag2 [jdk]
Alias name: globalsignr3ca [jdk]
popcasca is my certificate installed in cacerts but there is no jdk mentioned here. What could be the reason for this. Any help.
Regards

Your server will be referring to DemoTrust.jks. So just updating cacerts will not help.
You need to remove below line from setDomainEnv[.cmd|.sh].
“-Djavax.net.ssl.trustStore=%WL_HOME%\server\lib\DemoTrust.jks”
For more details refer: https://sswaro.wordpress.com/pkix-path-building-failed-in-soa/

Related

SSL Issue - Jenkins slave connection issue with TFS

Upgraded the Jenkins.
Created a slave.
Installed latest JDK on Slave machine and launched the slave.
when tagged a job with slave and ran it, getting above error ..
did search on google and as per search added public cert of my target TFS to the java keystore which is in C:\Program Files (x86)\Java\jre1.8.0_131\lib\security\cacerts.
it worked for 2 jobs, for some purpose i un tagged the job and ran on master , again i tagged it back to slave and ran it.. again the issue came back.
tried to add the cert again, but its prompted cert is already in keystore ..
7 did uninstall and re install of slave and changes JAVA version .. no luck..
rest of the log below5)
Building remotely on
node1
in workspace C:\Builds\Jenkins\workspace\Foot_Driver
Querying for remote changeset at '$/AEXX/' as of 'D2017-06-23T15:26:13Z'...
FATAL: com.microsoft.tfs.core.exceptions.TECoreException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested targe
By adding all the certs in the chain to the cacerts, issue got resolved.
Get all the list of certs in the chain by using (replace your domain with google.com)openssl s_client -host google.com -port 443 -prexit -showcerts
copy each certs in a seprate .pem file eg - VS_cert1.pem, VS_cert2.pem
import all the certs to the java cacerts
keytool -import -alias VS1 -file "C:\Users\xxxx\Desktop\Temp\VS_cert1.pem" -keystore "C:\Program Files (x86)\Java\jre1.8.0_131\lib\security\cacerts"
keytool -import -alias VS2 -file "C:\Users\xxxx\Desktop\Temp\VS_cert2.pem" -keystore "C:\Program Files (x86)\Java\jre1.8.0_131\lib\security\cacerts"
Bounce the service.
According to the error info sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested targe which clearly complains about certificate validation. This may due to when working on a client that works with an SSL enabled server running in https protocol.
Try to add -Djavax.net.ssl.trustStore location in jenkins-slave.xml and well as add jssecacerts to lib\security of java used for your Jenkins's slave to run.
More info about the error please take a look this blog--unable to find valid certification path to requested target

Adding StartCom Certificates in Java (Netbeans)

I am making an Java client application that needs to access some data from website using https and signed by StartCom.
First, I tried to use HttpsURLConnection to access https://blabla.com/blabla.file, but I got sun.security.validator.ValidatorException: PKIX path building failed:
sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target. error.
I guess the reason is that StartCom is not added in Java trust certs.
Then, I added two StartCom certificate files (ca.crt and startcom.sub.class1.server.ca.crt) in Java cacerts and I can see them with keytools, but I still get the same error as before.
So, is it possible to use StartCom signed websites in java application without adding it to Java cacerts, and
why can not I use StartCom signed websites even if I added their certificates to my cacerts file, what did I do wrong?
Thank you in advance!
Edit 1: If I try to access https://google.com (for example) from my application there are no errors.
Edit 2: Certificates where added by this command keytool -keystore cacerts -importcert -alias startcom.ca -file ca.crt.

Disconnected TeamCity Build Agent after update TeamCity Server SSL certificate

We use TeamCity 7.1.5., I updated TeamCity Server site certificate (replaced server.p12 file with new one) for new time period and TeamCity Server lost connection with single Agent. Agent status is Disconnected, Authorized, Enabled. With WEB Browser I navigated to TeamCity site and made sure new certificate is valid.
Into teamcity-agent.log file I see many similar messages, for sample:
[2014-03-20 16:37:11,694] WARN - jetbrains.buildServer.AGENT - Ping problem: Call https://example.com/RPC2 buildServer.ping: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
How I can fix this Agent connectivity problem with new certificate?
With old site certificate TeamCity worked properly.
I see difference in Details of old and new certificate. Old Certificate Signature Algorithm is PKCs #1 SHA-1 With RSA Encryption. New Certificate Signature Algorithm is PKCs #1 SHA-256 With RSA Encryption.
I solved the same problem by adding the new cert to default truststore of java:
And import it into java default truststore:
keytool -import -trustcacerts -file <ca_file> -alias <CA_ALIAS> -keystore $JAVA_HOME/jre/lib/security/cacerts
[tmpFile] - name of generated file.
[servers-keystore] - configured keystore of your server
[CA_ALIAS] - alias of the cert to identify in keystore
[ca_file] - ca_file from webside (maybe get with chrome expor)
Check, that the $JAVA_HOME path is correct, maybe replace it with absolut path.
The default passwort for truststore (cacerts) is: changeit
For more information about java keytool: here
If you do not have the ca_file check this post
For TeamCity agent installed under Windows, use "agent_installation_path/jre" as "JAVA_HOME". Source

SSL Self-signed Expired Certificate in Java

Hi I am accessing a developmental API that only has a self signed, expired certificate through Java, and unexpectedly I am getting the error about unable to find valid certification path to requested target. so I went to the url with firefox and exported the certificate to add to my keystore, using keytool -importcert -alias mycert -file mycert.cert -keystore cacert, thinking that it should work now. But upon making the call, I am still getting the same error.
Am I missing some step to link up the cert to java?
the error is
sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
at sun.security.provider.certpath.SunCertPathBuilder.engineBuild(SunCertPathBuilder.java:174)
at java.security.cert.CertPathBuilder.build(CertPathBuilder.java:238)
at sun.security.validator.PKIXValidator.doBuild(PKIXValidator.java:318)
... 22 more
UPDATE: problem solved. location of keystore was wrong.
should be {location of java home}/lib/security/cacerts
exported the certificate to add to my keystore
No you didn't, you added it to your truststore. You shouldn't modify the one in the JRE, for the reason GregS gave, you should create your own and tell the server to use it.

Java HttpsURLConnection SSLHandshakeException

I am attempting to make a HTTPS connection to a website using HttpsURLConnection, and then perform a PUT request. When I try to create the OutputStreamWriter from HttpsURLConnection.getOutputStream(), the following exception is thrown:
javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException:
unable to find valid certification path to requested target
The page has just gotten its certificate (issued by StartCom) - do I need to manually do something to make Java recognise the certificate is present now? I can connect to other pages of the same website with no difficulty, but they have a different certificate.
You can import the root certificate of StartCom yia the tool keytool (from JDK) into a Java Key Store (JKS) and then set the key store as "trusted store".
See section "Exporting and Importing Certificates" on:
http://java.sun.com/developer/technicalArticles/Security/secureinternet2/
Commands mentioned in that article:
Import certifificate to trustedcerts.jks:
keytool -import -keystore trustedcerts.jks -alias qusay -file server.crt
Start Java using custom tuststore:
java -Djavax.net.ssl.trustStore=trustedcerts.jks com.example.MyClass
Alternatively you can set the truststore at runtime:
System.setProperty("javax.net.ssl.trustStore","./trustedcerts.jks");
Please also see this question: Import StartCom CA certificates in Windows JRE
It links to a script for importing StartCom certificates into your JDK trusted store.

Categories

Resources