From 61cca29ebbc9d3521d97ca5751022a5a50791bb0 Mon Sep 17 00:00:00 2001 From: trimstray Date: Tue, 4 Jun 2019 13:23:51 +0200 Subject: [PATCH] fix typos - signed-off-by: trimstray --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ea96472..00fa308 100644 --- a/README.md +++ b/README.md @@ -2030,25 +2030,25 @@ ___ ##### Tool: [openssl](https://www.openssl.org/) -###### Testing connection to remote host +###### Testing connection to the remote host ```bash echo | openssl s_client -connect google.com:443 -showcerts ``` -###### Testing connection to remote host (with SNI support) +###### Testing connection to the remote host (with SNI support) ```bash echo | openssl s_client -showcerts -servername google.com -connect google.com:443 ``` -###### Testing connection to remote host with specific ssl version +###### Testing connection to the remote host with specific ssl version ```bash openssl s_client -tls1_2 -connect google.com:443 ``` -###### Testing connection to remote host with specific ssl cipher +###### Testing connection to the remote host with specific ssl cipher ```bash openssl s_client -cipher 'AES128-SHA' -connect google.com:443