Advertisement
Guest User

Untitled

a guest
Jul 19th, 2020
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.59 KB | None | 0 0
  1. bash-5.0# curl -v https://acme-staging-v02.api.letsencrypt.org/acme/authz-v3/79320999
  2. * Connected to acme-staging-v02.api.letsencrypt.org (172.65.46.172) port 443 (#0)
  3. * TLSv1.2 (IN), TLS handshake, Server finished (14):
  4. * TLSv1.2 (OUT), TLS handshake, Finished (20):
  5. * expire date: Sep 4 21:40:22 2020 GMT
  6. * Using HTTP2, server supports multi-use
  7. * TLSv1.2 (OUT), TLS handshake, Finished (20):
  8. bash-5.0# curl -v https://acme-v02.api.letsencrypt.org/acme/authz-v3/5958061401
  9. * TLSv1.2 (OUT), TLS handshake, Finished (20):
  10. * TLSv1.2 (IN), TLS handshake, Finished (20):
  11. * SSL connection using TLSv1.2 / ECDHE-RSA-AES256-GCM-SHA384
  12. * ALPN, server accepted to use h2
  13. * Server certificate:
  14. * subject: CN=acme-v01.api.letsencrypt.org
  15. * start date: Jul 10 19:29:06 2020 GMT
  16. * expire date: Oct 8 19:29:06 2020 GMT
  17. * subjectAltName: host "acme-v02.api.letsencrypt.org" matched cert's "acme-v02.api.letsencrypt.org"
  18. * issuer: C=US; O=Let's Encrypt; CN=Let's Encrypt Authority X3
  19. * SSL certificate verify ok.
  20. * Using HTTP2, server supports multi-use
  21. * Connection state changed (HTTP/2 confirmed)
  22. * Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0
  23. * Using Stream ID: 1 (easy handle 0x55db226454e0)
  24. > GET /acme/authz-v3/5958061401 HTTP/2
  25. > Host: acme-v02.api.letsencrypt.org
  26. > user-agent: curl/7.69.1
  27. > accept: */*
  28. >
  29. * Connection state changed (MAX_CONCURRENT_STREAMS == 128)!
  30. < HTTP/2 200
  31. < server: nginx
  32. < date: Sun, 19 Jul 2020 18:43:52 GMT
  33. < content-type: application/json
  34. < content-length: 840
  35. < cache-control: public, max-age=0, no-cache
  36. < link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
  37. < x-frame-options: DENY
  38. < strict-transport-security: max-age=604800
  39. <
  40. {
  41. "identifier": {
  42. "type": "dns",
  43. "value": "samvanderkris.xyz"
  44. },
  45. "status": "invalid",
  46. "expires": "2020-07-25T14:25:08Z",
  47. "challenges": [
  48. {
  49. "type": "tls-alpn-01",
  50. "status": "invalid",
  51. "error": {
  52. "type": "urn:ietf:params:acme:error:connection",
  53. "detail": "Timeout during read (your server may be slow or overloaded)",
  54. "status": 400
  55. },
  56. "url": "https://acme-v02.api.letsencrypt.org/acme/chall-v3/5958061401/xd3qmQ",
  57. "token": "zCBn[...]iE6To",
  58. "validationRecord": [
  59. {
  60. "hostname": "samvanderkris.xyz",
  61. "port": "443",
  62. "addressesResolved": [
  63. "51.15.93.3",
  64. "2001:bc8:1830:d2f::1"
  65. ],
  66. "addressUsed": "2001:bc8:1830:d2f::1"
  67. }
  68. ]
  69. }
  70. ]
  71. * Connection #0 to host acme-v02.api.letsencrypt.org left intact
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement