DNS

Exceptions

HTTP

$ curl -vik --header "Host: xvideos.com" 85.117.236.90
*   Trying 85.117.236.90:80...
* TCP_NODELAY set
* Connected to 85.117.236.90 (85.117.236.90) port 80 (#0)
> GET / HTTP/1.1
> Host: xvideos.com
> User-Agent: curl/7.68.0
> Accept: */*
>
* Recv failure: Connection reset by peer
* Closing connection 0
curl: (56) Recv failure: Connection reset by peer

Exceptions

$ curl -vik privateinternetaccess.com -m 2
*   Trying 92.123.16.68:80...
* TCP_NODELAY set
* Connected to privateinternetaccess.com (92.123.16.68) port 80 (#0)
> GET / HTTP/1.1
> Host: privateinternetaccess.com
> User-Agent: curl/7.68.0
> Accept: */*
>
* Operation timed out after 2001 milliseconds with 0 bytes received
* Closing connection 0
curl: (28) Operation timed out after 2001 milliseconds with 0 bytes received

HTTPS

$ curl -vik --resolve xvideos.com:443:85.117.236.90 <https://xvideos.com>
* Added xvideos.com:443:85.117.236.90 to DNS cache
* Hostname xvideos.com was found in DNS cache
*   Trying 85.117.236.90:443...
* TCP_NODELAY set
* Connected to xvideos.com (85.117.236.90) port 443 (#0)
* ALPN, offering h2
* ALPN, offering http/1.1
* successfully set certificate verify locations:
*   CAfile: /etc/ssl/certs/ca-certificates.crt
  CApath: /etc/ssl/certs
* TLSv1.3 (OUT), TLS handshake, Client hello (1):
* OpenSSL SSL_connect: Connection reset by peer in connection to xvideos.com:443
* Closing connection 0
curl: (35) OpenSSL SSL_connect: Connection reset by peer in connection to xvideos.com:443

Exceptions

$ curl -vik <https://privateinternetaccess.com> -m 2
*   Trying 92.123.16.68:443...
* TCP_NODELAY set
* Connected to privateinternetaccess.com (92.123.16.68) port 443 (#0)
* ALPN, offering h2
* ALPN, offering http/1.1
* successfully set certificate verify locations:
*   CAfile: /etc/ssl/certs/ca-certificates.crt
  CApath: /etc/ssl/certs
* TLSv1.3 (OUT), TLS handshake, Client hello (1):
* Operation timed out after 2001 milliseconds with 0 out of 0 bytes received
* Closing connection 0
curl: (28) Operation timed out after 2001 milliseconds with 0 out of 0 bytes received