Last active
August 23, 2018 16:13
-
-
Save pmocek/845794b9450c1f81808584ef991e767c to your computer and use it in GitHub Desktop.
Public radio station KUOW-FM website redirects from HTTPS at kuow.org to HTTP at bizarre domain
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ 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 35.163.92.129... | |
* Connected to www.kuow.org (35.163.92.129) 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, 23 Aug 2018 15:59:36 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: 5a56da7e-8fa3-4d94-a6be-7b9bc354adc1 | |
< X-Runtime: 0.016799 | |
< 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 551 0 --:--:-- --:--:-- --:--:-- 553 | |
* 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 54.218.17.50... | |
* Connected to www.kuow.org (54.218.17.50) 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, 23 Aug 2018 15:59:48 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://kuow.drupal.publicbroadcasting.net/post/six-more-women-accuse-david-meinert-sexual-misconduct-and-assault | |
< Cache-Control: no-cache | |
< X-Request-Id: 44143a43-195d-4970-84a6-44e5c1f17e05 | |
< X-Runtime: 0.018806 | |
< X-Powered-By: Phusion Passenger 4.0.60 | |
< Server: nginx/1.12.1 + Phusion Passenger 4.0.60 | |
< | |
{ [184 bytes data] | |
100 178 0 178 0 0 1091 0 --:--:-- --:--:-- --:--:-- 1098 | |
* 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