Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Mahamed_Qlik
Specialist
Specialist

SSL certificate

Dear All,

How would I know the name of the authority of existing installed SSL certificate from client machine.

if is is purchased from Trustwave, Comodo, Symantec, Geotrust etc.

Labels (1)
1 Solution

Accepted Solutions
ajaykakkar93
Specialist III
Specialist III

hi,

can you try the below link

https://www.sslshopper.com/ssl-checker.html

Please mark the correct replies as Solution. Regards, ARK
Profile| GitHub|YouTube|Extension|Mashup|Qlik API|Qlik NPrinting

View solution in original post

7 Replies
ajaykakkar93
Specialist III
Specialist III

hi,

can you try the below link

https://www.sslshopper.com/ssl-checker.html

Please mark the correct replies as Solution. Regards, ARK
Profile| GitHub|YouTube|Extension|Mashup|Qlik API|Qlik NPrinting

Mahamed_Qlik
Specialist
Specialist
Author

Got it.

Thanks Ajay.

rosie11
Contributor II
Contributor II

I believe the SSL Certificate Checker tool is available for usage. See https://www.ssl2buy.com/wiki/ssl-installation-checker for more information. By using this link, you can find out the name of the SSL certificate authority that is currently installed on your client's computer.

If not, you can verify the certificate details using the OpenSSL command-line tool's alternative option. Here is an example command to view a certificate's details:

-in certificate.crt -text -noout openssl x509

The certificate's details, including the signing authority, expiration date, and more, will be shown by using this command.

I hope that this aids in your search for the data you need.

rosie11
Contributor II
Contributor II

I believe the SSL Certificate Checker tool is available for usage. See https://shorturl.at/dtzBQ for more information. By using this link, you can find out the name of the SSL certificate authority that is currently installed on your client's computer.

If not, you can verify the certificate details using the OpenSSL command-line tool's alternative option. Here is an example command to view a certificate's details:

-in certificate.crt -text -noout openssl x509

The certificate's details, including the signing authority, expiration date, and more, will be shown by using this command.

I hope that this aids in your search for the data you need.

alpha_mann
Contributor
Contributor

Hey! 

You can check this way https://certera.com/ssl-tools/ssl-checker

Hope this will work for you 🙂

ShivaNaidu
Contributor III
Contributor III

Now an day many Hosting and Domain providers are providing free SSL Certificate you must check it first.

Shiva Naidu - Digital Marketing Consultant from Ahmedabad (India)
Also Hire for SaaS SEO & Generating fast Quality Backlinks

judy1997
Contributor
Contributor

To determine the name of the Certificate Authority (CA) of an existing SSL certificate from a client machine, you can inspect the certificate details using several methods. One of the easiest ways is through a web browser such as Chrome or Firefox. When you visit the secured website, click on the padlock icon in the address bar, then view the certificate details. The "Issued by" section in the certificate window will show the name of the CA, such as Trustwave, Comodo, Symantec, or GeoTrust.

Alternatively, from the command line, you can use openssl to retrieve certificate information. Run the command openssl s_client -connect example.com:443 -showcerts, and examine the output for the "issuer" field, which indicates the issuing authority. On Windows, PowerShell can also be used with a command like openssl s_client -connect example.com:443 | openssl x509 -noout -issuer to display the issuer directly. These methods will help you identify the certificate authority regardless of whether the certificate was issued by Trustwave, Comodo, Symantec, GeoTrust, or another provider.