openssl-sess_id.pod 3.8 KB

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