From 563850e61669f6ccd4bdb22215ce4540d356485a Mon Sep 17 00:00:00 2001 From: Cedric Staub Date: Fri, 16 Jun 2017 17:40:40 -0700 Subject: [PATCH] Add some extra info to README --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 75f5849..4060581 100644 --- a/README.md +++ b/README.md @@ -248,4 +248,7 @@ done # Find (redundant) self-signed certificates in intermediate chain on remote host certigo connect $SERVER:$PORT | jq -e '.certificates[1:][] | select(.is_self_signed) | .subject.common_name' + +# Test if server is requesting that clients send certificates for authentication +certigo connect $SERVER:$PORT | jq -e '.certificate_request_info != null' ```