Skip to content

Instantly share code, notes, and snippets.

@ghostbar
Created February 15, 2014 17:25
Show Gist options
  • Select an option

  • Save ghostbar/9022304 to your computer and use it in GitHub Desktop.

Select an option

Save ghostbar/9022304 to your computer and use it in GitHub Desktop.
ghostbar@ur:~$ http_proxy=190.198.76.32:8080 curl -I "http://google.com"
HTTP/1.1 301 Moved Permanently
Location: http://www.google.com/
Content-Type: text/html; charset=UTF-8
Date: Sat, 15 Feb 2014 16:56:55 GMT
Expires: Mon, 17 Mar 2014 16:56:55 GMT
Cache-Control: public, max-age=2592000
Server: gws
Content-Length: 219
X-XSS-Protection: 1; mode=block
X-Frame-Options: SAMEORIGIN
Alternate-Protocol: 80:quic
ghostbar@ur:~$ http_proxy=190.198.76.32:8080 curl -I "http://infodio.com"
HTTP/1.0 404 Not Found
Content-Length: 525
Content-Type: text/html
Date: Sat, 15 Feb 2014 12:08:09 GMT
Expires: Sat, 15 Feb 2014 12:08:09 GMT
Server: Mikrotik HttpProxy
Proxy-Connection: close
ghostbar@ur:~$ http_proxy=186.92.196.99:8080 curl -I "http://infodio.com"
HTTP/1.0 500 Unable to connect
Server: tinyproxy/1.8.2
Content-Type: text/html
Connection: close
ghostbar@ur:~$ http_proxy=186.92.196.99:8080 curl -I "http://vtv.gob.ve"
HTTP/1.1 301 Moved Permanently
Via: 1.0 tinyproxy (tinyproxy/1.8.2)
Content-Type: text/html
Server: nginx/1.2.2
Location: http://www.vtv.gob.ve/
Date: Sat, 15 Feb 2014 17:03:50 GMT
Content-Length: 184
Proxy-Connection: Keep-Alive
ghostbar@ur:~$ curl -I "http://infodio.com"
curl: (7) Failed connect to infodio.com:80; Operation timed out
ghostbar@ur:~$ dig infodio.com
; <<>> DiG 9.8.3-P1 <<>> infodio.com
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 9367
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0
;; QUESTION SECTION:
;infodio.com. IN A
;; ANSWER SECTION:
infodio.com. 77 IN A 95.211.13.70
;; Query time: 794 msec
;; SERVER: 8.8.8.8#53(8.8.8.8)
;; WHEN: Sat Feb 15 12:37:50 2014
;; MSG SIZE rcvd: 45
ghostbar@ur:~$ dig @200.44.32.12 infodio.com
; <<>> DiG 9.8.3-P1 <<>> @200.44.32.12 infodio.com
; (1 server found)
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: SERVFAIL, id: 17666
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0
;; QUESTION SECTION:
;infodio.com. IN A
;; Query time: 302 msec
;; SERVER: 200.44.32.12#53(200.44.32.12)
;; WHEN: Sat Feb 15 12:53:27 2014
;; MSG SIZE rcvd: 29
ghostbar@ur:~$ ping -c 1 google.com
PING google.com (173.194.37.101): 56 data bytes
64 bytes from 173.194.37.101: icmp_seq=0 ttl=52 time=202.853 ms
--- google.com ping statistics ---
1 packets transmitted, 1 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 202.853/202.853/202.853/0.000 ms
ghostbar@ur:~$ ping -c 1 infodio.com
PING infodio.com (95.211.13.70): 56 data bytes
--- infodio.com ping statistics ---
1 packets transmitted, 0 packets received, 100.0% packet loss
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment