Digital Certificate Expiration Utility

Ask a Question related to Linux / Unix Administration, Design and Development.

  1. #1

    Default Digital Certificate Expiration Utility

    Howdy,

    Over the years, I have worked in numerous environments were an expired
    digital certificate led to system outages, and user confusion. I decided
    to write a tool to deal with this issue, and describe it's usage in this
    months (September) issue of SysAdmin. The utility can be run to produce
    certificate expiration info for a single ssl-enabled service, or given a
    file with a list of domains:

    $ ./ssl-cert-check -s mail.daemons.net -p 443

    Host Status Expires Days Left
    mail.daemons.net:443 Valid May 24 2005 282

    $ cat ssldomains
    mail.daemons.net 443
    [url]www.blatch.com[/url] 443

    $ ./ssl-cert-check -b -f ssldomains

    Host Status Expires Days Left
    mail.daemons.net:443 Valid May 24 2005 282
    [url]www.blatch.com:443[/url] Down ? ?

    There is email integration to remind you electronically when
    certificates are about to expire, and a quiet mode to allow easy
    integration with cron. ssl-cert-check is licensed under the GPL,
    and can be downloaded at:

    [url]http://www.daemons.net/~matty/code/ssl-cert-check[/url]

    Please let me know if you run into problems or bugs.

    Thanks,
    - Ryan
    Matty Guest

  2. Similar Questions and Discussions

    1. a certificate list in a digital signature creator
      hi all the example plug-in DocSign uses a hardwired certificate to sign. it's in PSSigGetSigPropertiesProc's function in...
    2. Win32::OLE and CAPICOM to find a certificate in certificate store will raise exception
      Hi, I am trying to use win32::OLE to access certificate store via CAPICOM. If certificates in the store meet the searching criteria, the...
    3. password expiration
      I'm getting a "your password expires in x days" message and can't change my password because I don't know the old one. My friend installed my...
    4. Certificate Server and Windows XP - Cannot install certificate
      Hello all, I would like to implement certificate server. I have installed the service on Win2003 server in standalone mode. I have created from...
  3. #2

    Default Re: Digital Certificate Expiration Utility

    If people are too stupid to read the email from the issuer, how will that
    help? You already get warnings from the issuer of the cert.



    HoTShoT Guest

  4. #3

    Default Re: Digital Certificate Expiration Utility

    in article [email]10hv5hpafblnpc7@corp.supernews.com[/email], HoTShoT at @ wrote on 8/15/04
    9:58 AM:
    > If people are too stupid to read the email from the issuer, how will that
    > help? You already get warnings from the issuer of the cert.
    >
    >
    >
    It's not a matter of people being stupid, it's being proactive and knowing
    when your own certs expire, not relying on someone else to do your job.
    Maybe they'll send you an e-mail, maybe they won't. I'd prefer to control my
    own destiny rather then explain to management that our VPN and SSL sites are
    down because wah, Thawte never reminded me.

    ps Guest

  5. #4

    Default Re: Digital Certificate Expiration Utility

    ps spilled the following:
    > in article [email]10hv5hpafblnpc7@corp.supernews.com[/email], HoTShoT at @ wrote on
    > 8/15/04 9:58 AM:
    >
    >> If people are too stupid to read the email from the issuer, how will that
    >> help? You already get warnings from the issuer of the cert.
    >>
    >
    > It's not a matter of people being stupid, it's being proactive and knowing
    > when your own certs expire, not relying on someone else to do your job.
    > Maybe they'll send you an e-mail, maybe they won't. I'd prefer to control
    > my own destiny rather then explain to management that our VPN and SSL
    > sites are down because wah, Thawte never reminded me.
    Yeah, but there are so many other things which need to happen at specific
    times throughout the life of any sort of enterprise (DNS expiry, time to
    replace hard disks, renew passwords...), surely it's a better idea to have
    a proper diarying system which can address all of them than a program which
    only fixes one.

    C.
    Colin McKinnon Guest

  6. #5

    Default Re: Digital Certificate Expiration Utility

    HoTShoT wrote:
    > If people are too stupid to read the email from the issuer, how will that
    > help? You already get warnings from the issuer of the cert.
    >
    The script wasn't developed to deal with ignorance, it was designed
    to help folks deal with certificate expiration issues. Public CA
    "notification" intervals aren't configurable, ssl-cert-check is.

    Matty Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139