检索 SSL 跟踪数据
我需要编写一个应用程序来检索有关过期 SSL 证书的数据。出于应用目的定位此数据的最佳方法是什么?
I need to write an app that retrieves data on expiring SSL certs. What is the best way to locate this data for application purposes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
X509Certificate2 类:
NotBefore属性 - 获取证书生效的当地时间日期。
NotAfter 属性 - 获取本地时间日期,在此日期之后证书不再有效。
X509Certificate2 Class:
NotBefore Property - Gets the date in local time on which a certificate becomes valid.
NotAfter Property - Gets the date in local time after which a certificate is no longer valid.
以下是一些执行此类操作的应用程序,供您参考。他们可能会给您一些有关功能和界面的想法。
证书扫描仪
检查证书
证书到期报告器
证书到期检查器
For your reference, here are a few applications that do this type of thing. They may give you some ideas regarding features and interface.
cert scanner
checkcertificate
certificate expiry reporter
cert expiry checker