Thursday 26 February 2015

Problem uploading Thawte issued certificate on the Cisco WLC....Certificate not properly chained.

Recently I came upon couple of scenarios where the Cisco WLC would not accept a web-auth server cert issued by Thawte (Known CA). This is because the later version of the Cisco WLC (I believe 7.6 and above) need to have a chained certificate before you can upload it on the WLC.

If you do further debugging on the WLC you will see the following error logs, which clearly points to the problem with the issuer certificate:


*TransferTask: Feb 12 12:26:05.987: Adding cert (7728 bytes) with certificate key password.
*TransferTask: Feb 12 12:26:06.015: sshpmCheckWebauthCert: Verification return code: 0
*TransferTask: Feb 12 12:26:06.015: Verification result text: unable to get issuer certificate
*TransferTask: Feb 12 12:26:06.015: Error at 2 depth: unable to get issuer certificate
*TransferTask: Feb 12 12:26:06.027: sshpmAddWebauthCert: Error decoding certificate, Deleting it.
*TransferTask: Feb 12 12:26:06.027: RESULT_STRING: Error installing certificate.
*TransferTask: Feb 12 12:26:06.027: RESULT_CODE:12
*TransferTask: Feb 12 12:26:06.027: Memory overcommit policy restored from 1 to 0
*emWeb: Feb 12 12:26:07.041: sshpmGetIdCertIndex: called to lookup cert >bsnSslWebauthCert<
*emWeb: Feb 12 12:26:07.041: sshpmGetIdCertIndex: found match in row 4
*emWeb: Feb 12 12:26:07.041: sshpmGetCID: called to evaluate <bsnSslWebauthCert>
*emWeb: Feb 12 12:26:07.041: sshpmGetCID: comparing to row 0, CA cert >bsnOldDefaultCaCert<



When you open the cert it does not appear to have any problem and the cert will look perfect. You OS will also not recognize it as invalid, this is because your laptop already has the Root and the Intermediate Certificate installed and even if the cert is not correctly chained it marks it as valid unlike the WLC.



















































Following is the mmc snapshot of the known Trusted CA on my laptop.












Now lets look at where the problem is:
==================================

One you open the certificate in a notepad you will see the following format:

Server Cert >>> Intermediate Cert >>> Root Cert (Generally the Root Cert should validate itself i.e the Root Cert is Root CA issuing itself a cert like below, where the issuer and the issued to is the same.)









































The certificate looks something like this: (For security I have not shown the entire certificate).


Bag Attributes
    localKeyID: 3B DB 85 15 63 AF CA B7 57 27 4E A3 E5 0B 84 32 1D AC 06 18
subject=/C=XX/ST=XX/L=Sydney/O=XX/OU=XX/CN=XY.com.au
issuer=/C=US/O=thawte, Inc./CN=thawte SSL CA - G2

-----BEGIN CERTIFICATE-----
MIIE/TCCA+WgAwIBAgIQF//T50TPBQL4+/7Iqh7dsTANBgkqhkiG9w0BAQsFADBB
----------------Snipping------------------------------------
MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMdGhhd3RlLCBJbmMuMRswGQYDVQQDExJ0
-----END CERTIFICATE-----

Bag Attributes: <No Attributes>
subject=/C=US/O=thawte, Inc./CN=thawte SSL CA - G2
issuer=/C=US/O=thawte, Inc./OU=Certification Services Division/OU=(c) 2006 thawte, Inc. - For authorized use only/CN=thawte Primary Root CA

-----BEGIN CERTIFICATE-----
MIIEsjCCA5qgAwIBAgIQFofWiG3iMAaFIz2/Eb9llzANBgkqhkiG9w0BAQsFADCB
---------------------Snipping-------------------------------------
sjFuz4DliAc2UXu6Ya9tjSNbNKOVvKIxf/L157fo78S1JzLp955pxyvovrsMqufq
YBLqJop4
-----END CERTIFICATE-----

Bag Attributes: <No Attributes>
subject=/C=US/O=thawte, Inc./OU=Certification Services Division/OU=(c) 2006 thawte, Inc. - For authorized use only/CN=thawte Primary Root CA
issuer=/C=ZA/ST=Western Cape/L=Cape Town/O=Thawte Consulting cc/OU=Certification Services Division/CN=Thawte Premium Server CA/emailAddress=premium-server@thawte.com

-----BEGIN CERTIFICATE-----
MIIERTCCA66gAwIBAgIQM2VQCHmtc+IwueAdDX+skTANBgkqhkiG9w0BAQUFADCB
------------------------Snipping------------------------------------
95OBBaqStB+3msAHF/XLxrRMDtdW3HEgdDjWdMbWj2uvi42gbCkLYeA=
-----END CERTIFICATE-----






So if we go through the certificate we see the certificate being issued to XY.com.au by thawte SSL CA - G2 (Intermediate CA).

Down the chain we see the Intermediate CA cert, cert issue to thawte SSL CA - G2 by thawte Primary Root CA (Can be a Root or another Intermediate CA).

Further down the chain we see thawte Primary Root CA being issued a cert by Thawte Premium Server CA and there is no other cert following this.

So the problem here is either thawte Primary Root CA can be a Root CA or an Intermediate CA. If it is a Root CA, the last cert is chain should had been for thawte Primary Root CA issued by thawte Primary Root CA itself.

If it is an intermediate CA, there should have been another cert down the chain, issued to Thawte Premium Server CA by itself, it being the Root.


In this scenario the WLC is looking for the Root Cert which is not there is the chain and thus marks the certificate as invalid.




How to fix this:
==============

Thawte do provide the Root CA and Intermediate CA cert on its website from where you can download the missing cert easily.


https://www.thawte.com/roots/index.html


So the fix would be either make thawte Primary Root CA as the Root CA and download the cert file for the Thawte website and replace the last cert in the chain, so that we have the cert for thawte Primary Root CA issued by thawte Primary Root CA.

Or, keep the same chain and download the Root CA cert for Thawte Premium Server CA and add it at the end of the chain so that the certificate chain is complete.

Once the chain is complete please follow the Cisco document to compile the cert along with the private key and get the final cert.


Please refer to the previous posts on certs:

http://lets-start-to-learn.blogspot.in/2014/10/creating-chained-certificate-from.html



Hope this was helpful.




Labels: ,

7 Comments:

At 21 December 2016 at 06:32 , Anonymous Anonymous said...

I had the same problem and I solved thanks to your guide. My system is a Cisco WLC2504 8.0.133.0. Thanks very useful guide.

 
At 5 January 2017 at 21:13 , Blogger Unknown said...

Thanks! Glad that it helped you fix your problem.

 
At 21 June 2017 at 15:55 , Blogger Ouani said...

Kudos to you pal ! Thanks, this helped..

 
At 6 June 2018 at 23:46 , Blogger rmouniak said...

It's amazing blog And useful for me Thanks
iOS Online Course Bangalore

 
At 20 July 2020 at 22:30 , Blogger mark john said...

If you have to resolve Gmail queued then, go to Settings option and then, choose Accounts. Now, choose Google Account and select the Email Account. Now, uncheck Gmail and restart your phone. When restart, again enable the checkbox and check if the issue fixed. If not, then call on +44-800-368-9067 to get in touch with the technical experts for instant and reliable assistance.
Gmail Troubleshoot Queued

 
At 25 December 2020 at 08:48 , Blogger maha said...

Enjoyed reading the article above, really explains everything in detail, the article is very interesting and effective. Thank you and good luck for the upcoming articles.

Digital Marketing Training in Chennai

Digital Marketing Course in Chennai

 
At 5 November 2022 at 01:22 , Blogger Beel Khan said...

EDIUS is the ideal editing software for professionals and ambitious video enthusiasts. Its users include filmmakers, video journalists. Edius Pro 9 Free Download

 

Post a Comment

Subscribe to Post Comments [Atom]

<< Home