Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I view PFX file information in a visual manner? [closed]

Tags:

I have a PFX file on my drive. I want to see the certificate chain for it. How do I see this? I am asking for a visual tool since I'm sure this won't be the last time I need to view certificate information, and I know of no tool that does this...

like image 231
CamronBute Avatar asked Nov 27 '12 16:11

CamronBute


2 Answers

certutil -dump filename.pfx

MS doc: http://technet.microsoft.com/library/cc732443.aspx

Although that is for Win 8 or Server 2012. I have Win 7 on my development machine - not sure if this program is present by default or came with Visual Studio.

like image 93
user2793921 Avatar answered Oct 17 '22 19:10

user2793921


Below also works fine in cmd:

openssl pkcs12 -info -in path to cert

for more info check these links :

https://superuser.com/questions/580697/how-do-i-view-the-contents-of-a-pfx-file-on-windows/1212800

https://www.sslshopper.com/article-most-common-openssl-commands.html

In case if you run into openssl issue, means if it's not installed, download openssl and refer path to openssl.exe in bin instead of openssl.

like image 31
whoami - fakeFaceTrueSoul Avatar answered Oct 17 '22 19:10

whoami - fakeFaceTrueSoul