mirror of
https://github.com/trimstray/the-book-of-secret-knowledge
synced 2024-12-26 09:58:40 +01:00
minor fix - gnutls
- signed-off-by: trimstray <trimstray@gmail.com>
This commit is contained in:
parent
028e32a1e8
commit
c838878916
1 changed files with 17 additions and 16 deletions
33
README.md
33
README.md
|
@ -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…
Reference in a new issue