https://github.com/jsnjack/sslcheck
Verify SSL certificates
https://github.com/jsnjack/sslcheck
Last synced: over 1 year ago
JSON representation
Verify SSL certificates
- Host: GitHub
- URL: https://github.com/jsnjack/sslcheck
- Owner: jsnjack
- Created: 2020-06-21T18:05:06.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-10-24T15:31:16.000Z (over 2 years ago)
- Last Synced: 2025-02-10T16:57:38.166Z (over 1 year ago)
- Language: Go
- Size: 8.75 MB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
sslcheck
====
### What is it?
`sslcheck` verifies the following in SSL certificates:
- contains private key
- contains full chain of trust
- expiration date
- is wildcard certificate
Verified certificates can be used in haproxy
### How to use it?
```bash
$ sslcheck
Verify SSL certificate
Usage:
sslcheck [command]
Available Commands:
help Help about any command
serve Start webserver on provided port
verify Verify SSL certificate
version Print version
Flags:
-c, --cert string certificate file
-h, --help help for sslcheck
-v, --verbose verbose output
```
#### Using curl with sslcheck HTTP server on custom port
```bash
curl --resolve *:8443:127.0.0.1 https://example.com:8443 -v
```
### How to install it?
- Using [grm](https://github.com/jsnjack/grm)
```bash
grm install jsnjack/sslcheck
```
- Download binary from [Release](https://github.com/jsnjack/sslcheck/releases/latest/) page