Browse Source

minor fix - gnutls

- signed-off-by: trimstray <trimstray@gmail.com>
pull/1/head
trimstray 5 years ago
parent
commit
c838878916
1 changed files with 17 additions and 16 deletions
  1. +17
    -16
      README.md

+ 17
- 16
README.md View File

@@ -278,6 +278,7 @@ performance of any of your sites from across the globe.<br>
* [du](#tool-du)
* [inotifywait](#tool-inotifywait)
* [openssl](#tool-openssl)
* [gnutls](#tool-gnutls)
* [secure-delete](#tool-secure-delete)
- **[HTTP/HTTPS](#http-https)**
* [curl](#tool-curl)
@@ -797,6 +798,22 @@ openssl x509 -in ${_fd_pem} -outform der -out ${_fd_der} )

___

##### Tool: [gnutls-cli](https://gnutls.org/manual/html_node/gnutls_002dcli-Invocation.html)

###### Testing connection to remote host (with sni)

```bash
gnutls-cli -p 443 google.com
```

###### Testing connection to remote host (without sni)

```bash
gnutls-cli --disable-sni -p 443 google.com
```

___

##### Tool: [secure-delete](https://wiki.archlinux.org/index.php/Securely_wipe_disk)

###### Secure delete with shred
@@ -829,22 +846,6 @@ sdmem -v
swapoff /dev/sda5 && sswap -vz /dev/sda5
```

___

##### Tool: [gnutls-cli](https://gnutls.org/manual/html_node/gnutls_002dcli-Invocation.html)

###### Testing connection to remote host (with sni)

```bash
gnutls-cli -p 443 google.com
```

###### Testing connection to remote host (without sni)

```bash
gnutls-cli --disable-sni -p 443 google.com
```

<a name="http-https"><b>HTTP/HTTPS</b></a>

##### Tool: [curl](https://curl.haxx.se)


Loading…
Cancel
Save