Though the “cross-root” certificate has Signed your Leaf Certificate. If your server has “AddTrust External CA” it would serve the same to the client. This issue happens when your CA bundle file or your Certificate Store has “AddTrust External CA”. After giving a solution for a couple of the person about this problem. I found that it would be better if I can write a small blog about this one.
You can check if your certificate is affected by this update. You can use the valuable tool created by one of my favorite entrepreneurs in the SSL/PKI industry. You can check https://whatsmychaincert.com/
You can download “AAACertificateServices.crt” from here
How to remove “AddTrust External CA” in Windows Server(GUI):
1. Log in to Windows Server as Administrator or Admin Equal Roles
2. Click on Start and Go to “Run”
3. Type “mmc” and hit “OK”
4. Click on “Files” -> “Add/Remove Snap-ins”
5. In “Add/Remove Snap-ins” Window Select “Certificates”
6. Click “Add”
7. When you click “Add”. There would be another popup
8. Select “Computer Account” Click “Next”. Select “Local Computer” and click “Finish.”
9. Click “OK”
10. Expand “Certificates”
11. After that, there will be many options to Expand You have to expand “Trusted Root Certificate Authorities”
12 Click “Certificates”
13. If you have “AAA Certificate Services” that is good but If you don’t have “AAA Certificates Services” following are the steps:
=> Right Click on Certificates
=> Click on “All Tasks” -> “Import”
=> Click “Next”
=> Click “Browse” and select the “AAACertificateServices.crt” file after that Click “Next”
=> On Certificate Store Window make sure that “Trusted Root Certificate Authorities” is visible Click “Next”
=>Click Finish to install the certificate
Following are steps to remove “AddTrust External CA”
1) Right Click on “AddTrust External CA”
2) Select Delete, When deleting CA you will get following message Click “Yes”
Please note that whenever you Add/Delete/Update “Trusted Root Certificate Authorities” You need to restart the server. Once, you restart the server the issue with Expired CA Certificate has been fixed.
If you do not want to do this using GUI, the following commands will help you:
1) certutil -addstore -f "ROOT" AAACertificateServices.crt
2) certutil -delstore “ROOT” 01
Following is command will help you to root CA Certificates in your Windows Certificate Stores directly from Windows Update:
certutil -generateSSTFromWU roots.sst
You need to reboot your server after running above commands.
Once the server is online again, everything is working fine. These steps are suitable for Windows 2008/Windows 2012/Windows 2016/Windows 2019.
If you are not using Windows Platform but using Linux and using Apache/Nginx, you need to do the following steps:
Ubuntu/Debian
Add |
|
Remove |
|
CentOS/REHL
Add |
|
If you are running JRE/JDK that uses, their own Certificate Store. You need to update it with new Certificate Authority using following command:
Locate the JRE installation directory and update it CACerts Store with
keytool -import -keystore cacerts -trustcacerts -file AAACertificateServices.crt -storepass changeit
This are steps that I did for various of my test environment and it is working fine. Please feel free to write to me if you have any Question regarding the same.
18 Years Experienced Professional in Cryptography, PKI, Information Security, Data Security, SSL Certificate, TLS Certificate, Cloud Security, Website Security, Email Security, Cloud HSM, IT Infrastructure Management, Cloud Management and Customer Support. Certified in Comptia Security+, EC Council CEHv10, MCSE, ITILv3. Domain Investor by Hobby owns 150+ domains.
Many prominent people have stated that data is a new OIL, and your personal and…
Introduction Migrating IIS configurations between servers can be a daunting task, especially when dealing with…
Hacker Using HTTPS Error message to hack website. SSL Error message to hack and attack…
What is Password? The password is a little secret that we all are uses. We…
Let's Learn about Phishing We all are working from home during this Global Pandemic. I…
View Comments
thanks, it really helped a lot !!
solved issue with the help of steps given by you.
much appreciated !!