sess_id.pod 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. =pod
  2. =head1 NAME
  3. openssl-sess_id,
  4. sess_id - SSL/TLS session handling utility
  5. =head1 SYNOPSIS
  6. B<openssl> B<sess_id>
  7. [B<-help>]
  8. [B<-inform PEM|DER>]
  9. [B<-outform PEM|DER|NSS>]
  10. [B<-in filename>]
  11. [B<-out filename>]
  12. [B<-text>]
  13. [B<-noout>]
  14. [B<-context ID>]
  15. =head1 DESCRIPTION
  16. The B<sess_id> process the encoded version of the SSL session structure
  17. and optionally prints out SSL session details (for example the SSL session
  18. master key) in human readable format. Since this is a diagnostic tool that
  19. needs some knowledge of the SSL protocol to use properly, most users will
  20. not need to use it.
  21. =head1 OPTIONS
  22. =over 4
  23. =item B<-help>
  24. Print out a usage message.
  25. =item B<-inform DER|PEM>
  26. This specifies the input format. The B<DER> option uses an ASN1 DER encoded
  27. format containing session details. The precise format can vary from one version
  28. to the next. The B<PEM> form is the default format: it consists of the B<DER>
  29. format base64 encoded with additional header and footer lines.
  30. =item B<-outform DER|PEM|NSS>
  31. This specifies the output format. The B<PEM> and B<DER> options have the same meaning
  32. and default as the B<-inform> option. The B<NSS> option outputs the session id and
  33. the master key in NSS keylog format.
  34. =item B<-in filename>
  35. This specifies the input filename to read session information from or standard
  36. input by default.
  37. =item B<-out filename>
  38. This specifies the output filename to write session information to or standard
  39. output if this option is not specified.
  40. =item B<-text>
  41. Prints out the various public or private key components in
  42. plain text in addition to the encoded version.
  43. =item B<-cert>
  44. If a certificate is present in the session it will be output using this option,
  45. if the B<-text> option is also present then it will be printed out in text form.
  46. =item B<-noout>
  47. This option prevents output of the encoded version of the session.
  48. =item B<-context ID>
  49. This option can set the session id so the output session information uses the
  50. supplied ID. The ID can be any string of characters. This option won't normally
  51. be used.
  52. =back
  53. =head1 OUTPUT
  54. Typical output:
  55. SSL-Session:
  56. Protocol : TLSv1
  57. Cipher : 0016
  58. Session-ID: 871E62626C554CE95488823752CBD5F3673A3EF3DCE9C67BD916C809914B40ED
  59. Session-ID-ctx: 01000000
  60. Master-Key: A7CEFC571974BE02CAC305269DC59F76EA9F0B180CB6642697A68251F2D2BB57E51DBBB4C7885573192AE9AEE220FACD
  61. Key-Arg : None
  62. Start Time: 948459261
  63. Timeout : 300 (sec)
  64. Verify return code 0 (ok)
  65. Theses are described below in more detail.
  66. =over 4
  67. =item B<Protocol>
  68. This is the protocol in use TLSv1.2, TLSv1.1, TLSv1 or SSLv3.
  69. =item B<Cipher>
  70. The cipher used this is the actual raw SSL or TLS cipher code, see the SSL
  71. or TLS specifications for more information.
  72. =item B<Session-ID>
  73. The SSL session ID in hex format.
  74. =item B<Session-ID-ctx>
  75. The session ID context in hex format.
  76. =item B<Master-Key>
  77. This is the SSL session master key.
  78. =item B<Start Time>
  79. This is the session start time represented as an integer in standard
  80. Unix format.
  81. =item B<Timeout>
  82. The timeout in seconds.
  83. =item B<Verify return code>
  84. This is the return code when an SSL client certificate is verified.
  85. =back
  86. =head1 NOTES
  87. The PEM encoded session format uses the header and footer lines:
  88. -----BEGIN SSL SESSION PARAMETERS-----
  89. -----END SSL SESSION PARAMETERS-----
  90. Since the SSL session output contains the master key it is
  91. possible to read the contents of an encrypted session using this
  92. information. Therefore appropriate security precautions should be taken if
  93. the information is being output by a "real" application. This is however
  94. strongly discouraged and should only be used for debugging purposes.
  95. =head1 BUGS
  96. The cipher and start time should be printed out in human readable form.
  97. =head1 SEE ALSO
  98. L<ciphers(1)>, L<s_server(1)>
  99. =head1 COPYRIGHT
  100. Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.
  101. Licensed under the OpenSSL license (the "License"). You may not use
  102. this file except in compliance with the License. You can obtain a copy
  103. in the file LICENSE in the source distribution or at
  104. L<https://www.openssl.org/source/license.html>.
  105. =cut