| Commit message (Collapse) | Author | Age | Files | Lines |
| | |
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
| |
Add the `--insecure` flag so we can check certificates that are expired.
When using the short format for the output (the default), if the
certificate has expired, it will report how many days ago.
For certificates that have not expired, the remaining number of days
will be printed.
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
| |
I'm running my own CI at ci.fcuny.net using drone for now. I've spare
compute capacity at home, and it's way faster than the GHA runners.
For now I'm losing the following:
- dependabot: that's a GitHub only function, I'll need to figure out
something
- nix flake update: I'll need to figure out a way to update flakes on a
regular basis, probably a custom script to take care of that
|
|
|
Read the domain name from the CLI, and get and print information about
the certificate to STDOUT.
The output looks like this:
```
> ./target/debug/x509-info badssl.com
Subject: CN=*.badssl.com O= L=
Issuer: CN=R3 O=Let's Encrypt L=
DNS Names: *.badssl.com, badssl.com
Validity Period
Not before: 2022-08-12T07:57:46-07:00
Not After: 2022-11-10T06:57:45-08:00
```
|