Skip to content

Instantly share code, notes, and snippets.

@pmocek
Created August 30, 2018 18:44
Show Gist options
  • Save pmocek/3013808f7ce067edf8bb2798124ed704 to your computer and use it in GitHub Desktop.
Save pmocek/3013808f7ce067edf8bb2798124ed704 to your computer and use it in GitHub Desktop.
Public radio station KUOW-FM website redirects from HTTPS at kuow.org to HTTP at archive.kuow.org
$ curl -v https://www.kuow.org/post/six-more-women-accuse-david-meinert-sexual-misconduct-and-assault >/dev/null
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0* Trying 52.34.219.218...
* Connected to www.kuow.org (52.34.219.218) port 443 (#0)
* found 148 certificates in /etc/ssl/certs/ca-certificates.crt
* found 597 certificates in /etc/ssl/certs
* ALPN, offering http/1.1
* SSL connection using TLS1.2 / ECDHE_RSA_AES_128_GCM_SHA256
* server certificate verification OK
* server certificate status verification SKIPPED
* common name: *.kuow.org (matched)
* server certificate expiration date OK
* server certificate activation date OK
* certificate public key: RSA
* certificate version: #3
* subject: CN=*.kuow.org
* start date: Fri, 09 Mar 2018 00:00:00 GMT
* expire date: Tue, 09 Apr 2019 12:00:00 GMT
* issuer: C=US,O=Amazon,OU=Server CA 1B,CN=Amazon
* compression: NULL
* ALPN, server accepted to use http/1.1
> GET /post/six-more-women-accuse-david-meinert-sexual-misconduct-and-assault HTTP/1.1
> Host: www.kuow.org
> User-Agent: curl/7.47.0
> Accept: */*
>
< HTTP/1.1 301 Moved Permanently
< Date: Thu, 30 Aug 2018 18:37:53 GMT
< Content-Type: text/html; charset=utf-8
< Transfer-Encoding: chunked
< Connection: keep-alive
< Status: 301 Moved Permanently
< X-Frame-Options: SAMEORIGIN
< X-XSS-Protection: 1; mode=block
< X-Content-Type-Options: nosniff
< X-Moby: 42
< Location: https://www.kuow.org/stories/six-more-women-accuse-david-meinert-sexual-misconduct-and-assault/
< Cache-Control: no-cache
< X-Request-Id: 1b63b0af-257c-40fc-b8e1-1df03d55b780
< X-Runtime: 0.035820
< Strict-Transport-Security: max-age=15552000; includeSubDomains
< X-Powered-By: Phusion Passenger 4.0.60
< Server: nginx/1.12.1 + Phusion Passenger 4.0.60
<
{ [167 bytes data]
100 161 0 161 0 0 480 0 --:--:-- --:--:-- --:--:-- 480
* Connection #0 to host www.kuow.org left intact
$ curl -v https://www.kuow.org/stories/six-more-women-accuse-david-meinert-sexual-misconduct-and-assault/ >/dev/null
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0* Trying 34.215.28.99...
* Connected to www.kuow.org (34.215.28.99) port 443 (#0)
* found 148 certificates in /etc/ssl/certs/ca-certificates.crt
* found 597 certificates in /etc/ssl/certs
* ALPN, offering http/1.1
* SSL connection using TLS1.2 / ECDHE_RSA_AES_128_GCM_SHA256
* server certificate verification OK
* server certificate status verification SKIPPED
* common name: *.kuow.org (matched)
* server certificate expiration date OK
* server certificate activation date OK
* certificate public key: RSA
* certificate version: #3
* subject: CN=*.kuow.org
* start date: Fri, 09 Mar 2018 00:00:00 GMT
* expire date: Tue, 09 Apr 2019 12:00:00 GMT
* issuer: C=US,O=Amazon,OU=Server CA 1B,CN=Amazon
* compression: NULL
* ALPN, server accepted to use http/1.1
> GET /stories/six-more-women-accuse-david-meinert-sexual-misconduct-and-assault/ HTTP/1.1
> Host: www.kuow.org
> User-Agent: curl/7.47.0
> Accept: */*
>
< HTTP/1.1 302 Found
< Date: Thu, 30 Aug 2018 18:40:42 GMT
< Content-Type: text/html; charset=utf-8
< Transfer-Encoding: chunked
< Connection: keep-alive
< Status: 302 Found
< X-Frame-Options: SAMEORIGIN
< X-XSS-Protection: 1; mode=block
< X-Content-Type-Options: nosniff
< X-Moby: 42
< Location: http://archive.kuow.org/post/six-more-women-accuse-david-meinert-sexual-misconduct-and-assault
< Cache-Control: no-cache
< X-Request-Id: 41351ac4-a302-47cb-a843-ad10d6b3c9b4
< X-Runtime: 0.034329
< Strict-Transport-Security: max-age=15552000; includeSubDomains
< X-Powered-By: Phusion Passenger 4.0.60
< Server: nginx/1.12.1 + Phusion Passenger 4.0.60
<
{ [166 bytes data]
100 160 0 160 0 0 513 0 --:--:-- --:--:-- --:--:-- 514
* Connection #0 to host www.kuow.org left intact
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment