From c8388789162a012bb1a03a74c8bec50b86503380 Mon Sep 17 00:00:00 2001 From: trimstray Date: Tue, 10 Jul 2018 23:15:51 +0200 Subject: [PATCH] minor fix - gnutls - signed-off-by: trimstray --- README.md | 33 +++++++++++++++++---------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 2238541..1bef35c 100644 --- a/README.md +++ b/README.md @@ -278,6 +278,7 @@ performance of any of your sites from across the globe.
* [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 -``` - HTTP/HTTPS ##### Tool: [curl](https://curl.haxx.se)