Skip to content

Instantly share code, notes, and snippets.

@pjenvey
Created July 24, 2025 20:13
Show Gist options
  • Save pjenvey/868bf2cb0540f821160124d9e1cbc86a to your computer and use it in GitHub Desktop.
Save pjenvey/868bf2cb0540f821160124d9e1cbc86a to your computer and use it in GitHub Desktop.
$ time curl -v https://token.stage.mozaws.net/__version__
* Host token.stage.mozaws.net:443 was resolved.
* IPv6: (none)
* IPv4: 151.101.1.91
* Trying 151.101.1.91:443...
* Connected to token.stage.mozaws.net (151.101.1.91) port 443
* ALPN: curl offers h2,http/1.1
* TLSv1.3 (OUT), TLS handshake, Client hello (1):
* CAfile: /etc/ssl/certs/ca-certificates.crt
* CApath: /etc/ssl/certs
* TLSv1.3 (IN), TLS handshake, Server hello (2):
* TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
* TLSv1.3 (IN), TLS handshake, Certificate (11):
* TLSv1.3 (IN), TLS handshake, CERT verify (15):
* TLSv1.3 (IN), TLS handshake, Finished (20):
* TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
* TLSv1.3 (OUT), TLS handshake, Finished (20):
* SSL connection using TLSv1.3 / TLS_AES_128_GCM_SHA256 / X25519 / RSASSA-PSS
* ALPN: server accepted h2
* Server certificate:
* subject: CN=token.stage.mozaws.net
* start date: Jul 23 17:37:46 2025 GMT
* expire date: Oct 21 17:37:45 2025 GMT
* subjectAltName: host "token.stage.mozaws.net" matched cert's "token.stage.mozaws.net"
* issuer: C=US; O=Let's Encrypt; CN=R10
* SSL certificate verify ok.
* Certificate level 0: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption
* Certificate level 1: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption
* Certificate level 2: Public key type RSA (4096/152 Bits/secBits), signed using sha256WithRSAEncryption
* TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
* using HTTP/2
* [HTTP/2] [1] OPENED stream for https://token.stage.mozaws.net/__version__
* [HTTP/2] [1] [:method: GET]
* [HTTP/2] [1] [:scheme: https]
* [HTTP/2] [1] [:authority: token.stage.mozaws.net]
* [HTTP/2] [1] [:path: /__version__]
* [HTTP/2] [1] [user-agent: curl/8.5.0]
* [HTTP/2] [1] [accept: */*]
> GET /__version__ HTTP/2
> Host: token.stage.mozaws.net
> User-Agent: curl/8.5.0
> Accept: */*
>
< HTTP/2 200
< accept-ranges: bytes
< via: 1.1 google, 1.1 varnish, 1.1 varnish
< content-type: application/json
< date: Thu, 24 Jul 2025 20:10:42 GMT
< x-served-by: cache-sjc10081-SJC, cache-sjc10027-SJC
< x-cache: MISS, MISS
< x-cache-hits: 0, 0
< x-timer: S1753387841.937777,VS0,VE1185
< vary: Origin, Access-Control-Request-Method, Access-Control-Request-Headers, Accept-Encoding
< content-length: 207
<
{"commit":"36614c3db4f7d46612d6afb26bd85f1fe68ca62c","version":"0.18.3","source":"https://github.com/mozilla-services/syncstorage-rs","build":"https://circleci.com/gh/mozilla-services/syncstorage-rs/23427"}
* Connection #0 to host token.stage.mozaws.net left intact
real 0m1.371s
user 0m0.028s
sys 0m0.073s
(vs =~ real 0m0.200s)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment