... | ... |
@@ -1,3 +1,30 @@ |
1 | 1 |
# checksslvalidity |
2 | 2 |
|
3 |
+## Usage |
|
4 |
+``` |
|
5 |
+Usage: checksslvalidity DOMAIN.TLD [port] |
|
6 |
+ |
|
7 |
+ - DOMAIN.TLD : The tool will be connecting to this domain |
|
8 |
+Optional: |
|
9 |
+ - port : If not set 443 will be used |
|
10 |
+``` |
|
11 |
+ |
|
12 |
+## Example |
|
13 |
+``` |
|
14 |
+$ ./checksslvalidity git.kawi.fr |
|
15 |
+Testing git.kawi.fr:443 |
|
16 |
+ Issuer: C = US, O = Let's Encrypt, CN = Let's Encrypt Authority X3 |
|
17 |
+ Not Before: Jun 12 18:04:19 2018 GMT |
|
18 |
+ Not After : Sep 10 18:04:19 2018 GMT |
|
19 |
+ DNS:*.kawi.fr, DNS:kawi.fr |
|
20 |
+``` |
|
21 |
+ |
|
22 |
+``` |
|
23 |
+$ ./checksslvalidity imap.gmail.com 993 |
|
24 |
+Testing imap.gmail.com:993 |
|
25 |
+ Issuer: C = US, O = Google Trust Services, CN = Google Internet Authority G3 |
|
26 |
+ Not Before: May 23 09:50:27 2018 GMT |
|
27 |
+ Not After : Aug 15 09:08:00 2018 GMT |
|
28 |
+ DNS:imap.gmail.com |
|
29 |
+``` |
|
3 | 30 |
|