Browse Source

fix typos

- signed-off-by: trimstray <trimstray@gmail.com>
pull/94/head
trimstray 4 years ago
parent
commit
61cca29ebb
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      README.md

+ 4
- 4
README.md View File

@@ -2030,25 +2030,25 @@ ___


##### Tool: [openssl](https://www.openssl.org/) ##### Tool: [openssl](https://www.openssl.org/)


###### Testing connection to remote host
###### Testing connection to the remote host


```bash ```bash
echo | openssl s_client -connect google.com:443 -showcerts 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 ```bash
echo | openssl s_client -showcerts -servername google.com -connect google.com:443 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 ```bash
openssl s_client -tls1_2 -connect google.com:443 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 ```bash
openssl s_client -cipher 'AES128-SHA' -connect google.com:443 openssl s_client -cipher 'AES128-SHA' -connect google.com:443


Loading…
Cancel
Save