Last active
November 14, 2019 03:39
-
-
Save gaodeng/ca2a29f33361ae3df2144dc1253a9dc8 to your computer and use it in GitHub Desktop.
This file contains hidden or 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.microsoft.com/store/apps/9NMDSZCGGXSJ | |
| % 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 221.194.156.192... | |
| * TCP_NODELAY set | |
| * Connected to www.microsoft.com (221.194.156.192) port 443 (#0) | |
| * ALPN, offering h2 | |
| * ALPN, offering http/1.1 | |
| * Cipher selection: ALL:!EXPORT:!EXPORT40:!EXPORT56:!aNULL:!LOW:!RC4:@STRENGTH | |
| * successfully set certificate verify locations: | |
| * CAfile: /etc/ssl/cert.pem | |
| CApath: none | |
| * TLSv1.2 (OUT), TLS handshake, Client hello (1): | |
| } [223 bytes data] | |
| * TLSv1.2 (IN), TLS handshake, Server hello (2): | |
| { [102 bytes data] | |
| * TLSv1.2 (IN), TLS handshake, Certificate (11): | |
| { [3432 bytes data] | |
| * TLSv1.2 (IN), TLS handshake, Server key exchange (12): | |
| { [333 bytes data] | |
| * TLSv1.2 (IN), TLS handshake, Server finished (14): | |
| { [4 bytes data] | |
| * TLSv1.2 (OUT), TLS handshake, Client key exchange (16): | |
| } [70 bytes data] | |
| * TLSv1.2 (OUT), TLS change cipher, Client hello (1): | |
| } [1 bytes data] | |
| * TLSv1.2 (OUT), TLS handshake, Finished (20): | |
| } [16 bytes data] | |
| * TLSv1.2 (IN), TLS change cipher, Client hello (1): | |
| { [1 bytes data] | |
| * TLSv1.2 (IN), TLS handshake, Finished (20): | |
| { [16 bytes data] | |
| * SSL connection using TLSv1.2 / ECDHE-RSA-AES256-GCM-SHA384 | |
| * ALPN, server accepted to use h2 | |
| * Server certificate: | |
| * subject: C=US; ST=WA; L=Redmond; O=Microsoft Corporation; OU=Microsoft Corporation; CN=www.microsoft.com | |
| * start date: Jan 16 21:24:02 2018 GMT | |
| * expire date: Jan 16 21:24:02 2020 GMT | |
| * subjectAltName: host "www.microsoft.com" matched cert's "www.microsoft.com" | |
| * issuer: C=US; ST=Washington; L=Redmond; O=Microsoft Corporation; OU=Microsoft IT; CN=Microsoft IT TLS CA 4 | |
| * SSL certificate verify ok. | |
| * Using HTTP2, server supports multi-use | |
| * Connection state changed (HTTP/2 confirmed) | |
| * Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0 | |
| * Using Stream ID: 1 (easy handle 0x7fd82e802c00) | |
| > GET /store/apps/9NMDSZCGGXSJ HTTP/2 | |
| > Host: www.microsoft.com | |
| > User-Agent: curl/7.54.0 | |
| > Accept: */* | |
| > | |
| * Connection state changed (MAX_CONCURRENT_STREAMS updated)! | |
| 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0< HTTP/2 200 | |
| < content-type: text/html | |
| < content-length: 95 | |
| < date: Thu, 14 Nov 2019 03:36:50 GMT | |
| < tls_version: tls1.2 | |
| < strict-transport-security: max-age=31536000 | |
| < x-rtag: Str | |
| < | |
| { [95 bytes data] | |
| 100 95 100 95 0 0 124 0 --:--:-- --:--:-- --:--:-- 123 | |
| * Connection #0 to host www.microsoft.com left intact | |
| <html> | |
| <header><title>Collection Empty</title></header> | |
| <body> | |
| Collection Empty | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment