How to find the thumbprint/serial number of a certificate?

Note: This article assumes you have access to: the CRT file, the certificate via IIS, IE, MMC or OpenSSL.

Windows (MMC, IE, IIS)

  • Open Certificate to the General Tab.

MMC:

Add/Remove Snap-in -> Certificates -> Add -> Close -> Expand (Click '+' Sign) Certificates -
Local Computer -> Personal -> Certificates -> Double-Click on a certificate to open.

IIS 5 & 6:
Right-Click website -> Left-Click Properties -> Directory Security -> View Certificate
IE:
Tools -> Internet Options -> Content -> Certificates

  • Click on Details
  • Be sure that the Show drop down displays All
  • Click Serial number or Thumbprint. Depending on what you're looking for.
  • Use combination CTRL+C to copy it.

OpenSSL

Thumbprint:
-> openssl x509 -in CERTIFICATE_FILE -fingerprint -noout

Serial Number:
-> openssl x509 -in CERTIFICATE_FILE -serial -noout
Note: use real file name.

  • 65 Users Found This Useful
Was this answer helpful?

Related Articles

Java Keytool: commands

Deleting a certificate:  keytool -delete -alias aliasname List all of the...

How do I make my own bundle file from CRT files?

You may do this using you favorite text editor or by using the command line.Example: #...

Convert certificates formats (PEM/P7B/PFX/DER)

You can change certificate format using OpenSSL commands or SSL Converter tool. The...

Changing .crt file into the .cer format

Double-click on the yourwebsite.crt file to open it into the certificate display. In a new...

Converting .pfx file for use with Apache

Run the following command with open SSL:  openssl pkcs12 -in mypfxfile.pfx -out...