Skip to content

Instantly share code, notes, and snippets.

@Integralist
Last active February 13, 2025 11:41
Show Gist options
  • Save Integralist/c3f14bc015191fba900da446a541f2a8 to your computer and use it in GitHub Desktop.
Save Integralist/c3f14bc015191fba900da446a541f2a8 to your computer and use it in GitHub Desktop.
[DNS lookup of Host information] #dns #lookup #host
$ dig www.integralist.co.uk +noall +answer
; <<>> DiG 9.10.6 <<>> www.integralist.co.uk +noall +answer
;; global options: +cmd
www.integralist.co.uk. 14400 IN CNAME dreamy-wing-b0b998.netlify.com.
dreamy-wing-b0b998.netlify.com. 120 IN A 3.75.10.80
dreamy-wing-b0b998.netlify.com. 120 IN A 3.125.36.175
$ curl -so /dev/null -D - https://dreamy-wing-b0b998.netlify.com
HTTP/2 404
cache-control: private, max-age=0
content-type: text/plain; charset=utf-8
date: Thu, 13 Feb 2025 11:36:28 GMT
server: Netlify
strict-transport-security: max-age=31536000; includeSubDomains; preload
x-nf-request-id: 01JKZHH4RJB03HFXC1XGH9AKKM
content-length: 50
$ curl -so /dev/null -H Host:www.integralist.co.uk -D - https://dreamy-wing-b0b998.netlify.com
HTTP/2 200
accept-ranges: bytes
age: 0
cache-control: public,max-age=0,must-revalidate
cache-status: "Netlify Edge"; fwd=miss
content-type: text/html; charset=UTF-8
date: Thu, 13 Feb 2025 11:40:56 GMT
etag: "73dd185071271fad04cb81c48e5155ef-ssl"
server: Netlify
strict-transport-security: max-age=31536000
x-nf-request-id: 01JKZHSAV7X773C1W8BJ2WENTH
content-length: 36094
$ curl -so /dev/null -H Host:www.integralist.co.uk -D - 3.75.10.80
HTTP/1.1 301 Moved Permanently
Content-Type: text/plain; charset=utf-8
Date: Thu, 13 Feb 2025 11:36:58 GMT
Location: https://www.integralist.co.uk/
Server: Netlify
X-Nf-Request-Id: 01JKZHJ2ADYPWA1K54BDRMHZBN
Content-Length: 45
$ curl -so /dev/null -D - https://dreamy-wing-b0b998.netlify.app
HTTP/2 200
accept-ranges: bytes
age: 26
cache-control: public,max-age=0,must-revalidate
cache-status: "Netlify Edge"; hit
content-type: text/html; charset=UTF-8
date: Thu, 13 Feb 2025 11:36:33 GMT
etag: "73dd185071271fad04cb81c48e5155ef-ssl"
link: <https://www.integralist.co.uk/>; rel="canonical"
server: Netlify
strict-transport-security: max-age=31536000; includeSubDomains; preload
x-nf-request-id: 01JKZHHA268JB2H2TC47AAND8E
content-length: 36094
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment