[研究]如何檢視 server.cer 憑證的開始和結束期限 (有效期)?
2025-03-27
方法 1:使用 Windows 管理工具
Click點擊 server.cer,不用進行安裝,可看到有效期
********************************************************************************
方法 2:使用 PowerShell
$cert = Get-PfxCertificate -FilePath "C:\path\to\server.cer"
$cert.NotBefore
$cert.NotAfter
$cert = Get-PfxCertificate -FilePath "C:\temp2\server.cer" $cert.NotBefore $cert.NotAfter PS C:\> $cert = Get-PfxCertificate -FilePath "C:\temp2\server.cer" PS C:\> $cert.NotBefore 2025年3月27日 下午 01:25:01 PS C:\> $cert.NotAfter 2026年1月12日 下午 11:59:59 PS C:\> |
這會顯示憑證的開始和結束日期。
********************************************************************************
方法 3:把server.cer內容貼到Certificate Decoder網站
網址: https://www.sslshopper.com/certificate-decoder.html
********************************************************************************
方法 4:使用 OpenSSL 命令
如果你有安裝 OpenSSL,可以使用以下命令來檢視憑證的有效期限:
C:\Temp2>"C:\Program Files\Git\usr\bin\openssl" x509 -in server.cer -noout -dates notBefore=Mar 27 05:25:01 2025 GMT notAfter=Jan 12 15:59:59 2026 GMT C:\Temp2> |
此命令會顯示憑證的 notBefore(開始日期)和 notAfter(結束日期)屬性。
(完)
沒有留言:
張貼留言