1 =pod 2 {- OpenSSL::safe::output_do_not_edit_headers(); -} 3 4 =head1 NAME 5 6 openssl-s_client - SSL/TLS client program 7 8 =head1 SYNOPSIS 9 10 B<openssl> B<s_client> 11 [B<-help>] 12 [B<-ssl_config> I<section>] 13 [B<-connect> I<host>:I<port>] 14 [B<-host> I<hostname>] 15 [B<-port> I<port>] 16 [B<-bind> I<host>:I<port>] 17 [B<-proxy> I<host>:I<port>] 18 [B<-proxy_user> I<userid>] 19 [B<-proxy_pass> I<arg>] 20 [B<-unix> I<path>] 21 [B<-4>] 22 [B<-6>] 23 [B<-servername> I<name>] 24 [B<-noservername>] 25 [B<-verify> I<depth>] 26 [B<-verify_return_error>] 27 [B<-verify_quiet>] 28 [B<-verifyCAfile> I<filename>] 29 [B<-verifyCApath> I<dir>] 30 [B<-verifyCAstore> I<uri>] 31 [B<-cert> I<filename>] 32 [B<-certform> B<DER>|B<PEM>|B<P12>] 33 [B<-cert_chain> I<filename>] 34 [B<-build_chain>] 35 [B<-CRL> I<filename>] 36 [B<-CRLform> B<DER>|B<PEM>] 37 [B<-crl_download>] 38 [B<-key> I<filename>|I<uri>] 39 [B<-keyform> B<DER>|B<PEM>|B<P12>|B<ENGINE>] 40 [B<-pass> I<arg>] 41 [B<-chainCAfile> I<filename>] 42 [B<-chainCApath> I<directory>] 43 [B<-chainCAstore> I<uri>] 44 [B<-requestCAfile> I<filename>] 45 [B<-dane_tlsa_domain> I<domain>] 46 [B<-dane_tlsa_rrdata> I<rrdata>] 47 [B<-dane_ee_no_namechecks>] 48 [B<-reconnect>] 49 [B<-showcerts>] 50 [B<-prexit>] 51 [B<-debug>] 52 [B<-trace>] 53 [B<-nocommands>] 54 [B<-security_debug>] 55 [B<-security_debug_verbose>] 56 [B<-msg>] 57 [B<-timeout>] 58 [B<-mtu> I<size>] 59 [B<-no_etm>] 60 [B<-keymatexport> I<label>] 61 [B<-keymatexportlen> I<len>] 62 [B<-msgfile> I<filename>] 63 [B<-nbio_test>] 64 [B<-state>] 65 [B<-nbio>] 66 [B<-crlf>] 67 [B<-ign_eof>] 68 [B<-no_ign_eof>] 69 [B<-psk_identity> I<identity>] 70 [B<-psk> I<key>] 71 [B<-psk_session> I<file>] 72 [B<-quiet>] 73 [B<-sctp>] 74 [B<-sctp_label_bug>] 75 [B<-fallback_scsv>] 76 [B<-async>] 77 [B<-maxfraglen> I<len>] 78 [B<-max_send_frag>] 79 [B<-split_send_frag>] 80 [B<-max_pipelines>] 81 [B<-read_buf>] 82 [B<-ignore_unexpected_eof>] 83 [B<-bugs>] 84 [B<-comp>] 85 [B<-no_comp>] 86 [B<-brief>] 87 [B<-legacy_server_connect>] 88 [B<-no_legacy_server_connect>] 89 [B<-allow_no_dhe_kex>] 90 [B<-sigalgs> I<sigalglist>] 91 [B<-curves> I<curvelist>] 92 [B<-cipher> I<cipherlist>] 93 [B<-ciphersuites> I<val>] 94 [B<-serverpref>] 95 [B<-starttls> I<protocol>] 96 [B<-name> I<hostname>] 97 [B<-xmpphost> I<hostname>] 98 [B<-name> I<hostname>] 99 [B<-tlsextdebug>] 100 [B<-no_ticket>] 101 [B<-sess_out> I<filename>] 102 [B<-serverinfo> I<types>] 103 [B<-sess_in> I<filename>] 104 [B<-serverinfo> I<types>] 105 [B<-status>] 106 [B<-alpn> I<protocols>] 107 [B<-nextprotoneg> I<protocols>] 108 [B<-ct>] 109 [B<-noct>] 110 [B<-ctlogfile>] 111 [B<-keylogfile> I<file>] 112 [B<-early_data> I<file>] 113 [B<-enable_pha>] 114 [B<-use_srtp> I<value>] 115 [B<-srpuser> I<value>] 116 [B<-srppass> I<value>] 117 [B<-srp_lateuser>] 118 [B<-srp_moregroups>] 119 [B<-srp_strength> I<number>] 120 {- $OpenSSL::safe::opt_name_synopsis -} 121 {- $OpenSSL::safe::opt_version_synopsis -} 122 {- $OpenSSL::safe::opt_x_synopsis -} 123 {- $OpenSSL::safe::opt_trust_synopsis -} 124 {- $OpenSSL::safe::opt_s_synopsis -} 125 {- $OpenSSL::safe::opt_r_synopsis -} 126 {- $OpenSSL::safe::opt_provider_synopsis -} 127 {- $OpenSSL::safe::opt_engine_synopsis -}[B<-ssl_client_engine> I<id>] 128 {- $OpenSSL::safe::opt_v_synopsis -} 129 [I<host>:I<port>] 130 131 =head1 DESCRIPTION 132 133 This command implements a generic SSL/TLS client which 134 connects to a remote host using SSL/TLS. It is a I<very> useful diagnostic 135 tool for SSL servers. 136 137 =head1 OPTIONS 138 139 In addition to the options below, this command also supports the 140 common and client only options documented 141 in the "Supported Command Line Commands" section of the L<SSL_CONF_cmd(3)> 142 manual page. 143 144 =over 4 145 146 =item B<-help> 147 148 Print out a usage message. 149 150 =item B<-ssl_config> I<section> 151 152 Use the specified section of the configuration file to configure the B<SSL_CTX> object. 153 154 =item B<-connect> I<host>:I<port> 155 156 This specifies the host and optional port to connect to. It is possible to 157 select the host and port using the optional target positional argument instead. 158 If neither this nor the target positional argument are specified then an attempt 159 is made to connect to the local host on port 4433. 160 If the host string is an IPv6 address, it must be enclosed in C<[> and C<]>. 161 162 =item B<-host> I<hostname> 163 164 Host to connect to; use B<-connect> instead. 165 166 =item B<-port> I<port> 167 168 Connect to the specified port; use B<-connect> instead. 169 170 =item B<-bind> I<host>:I<port> 171 172 This specifies the host address and or port to bind as the source for the 173 connection. For Unix-domain sockets the port is ignored and the host is 174 used as the source socket address. 175 If the host string is an IPv6 address, it must be enclosed in C<[> and C<]>. 176 177 =item B<-proxy> I<host>:I<port> 178 179 When used with the B<-connect> flag, the program uses the host and port 180 specified with this flag and issues an HTTP CONNECT command to connect 181 to the desired server. 182 If the host string is an IPv6 address, it must be enclosed in C<[> and C<]>. 183 184 =item B<-proxy_user> I<userid> 185 186 When used with the B<-proxy> flag, the program will attempt to authenticate 187 with the specified proxy using basic (base64) authentication. 188 NB: Basic authentication is insecure; the credentials are sent to the proxy 189 in easily reversible base64 encoding before any TLS/SSL session is established. 190 Therefore, these credentials are easily recovered by anyone able to sniff/trace 191 the network. Use with caution. 192 193 =item B<-proxy_pass> I<arg> 194 195 The proxy password source, used with the B<-proxy_user> flag. 196 For more information about the format of B<arg> 197 see L<openssl-passphrase-options(1)>. 198 199 =item B<-unix> I<path> 200 201 Connect over the specified Unix-domain socket. 202 203 =item B<-4> 204 205 Use IPv4 only. 206 207 =item B<-6> 208 209 Use IPv6 only. 210 211 =item B<-servername> I<name> 212 213 Set the TLS SNI (Server Name Indication) extension in the ClientHello message to 214 the given value. 215 If B<-servername> is not provided, the TLS SNI extension will be populated with 216 the name given to B<-connect> if it follows a DNS name format. If B<-connect> is 217 not provided either, the SNI is set to "localhost". 218 This is the default since OpenSSL 1.1.1. 219 220 Even though SNI should normally be a DNS name and not an IP address, if 221 B<-servername> is provided then that name will be sent, regardless of whether 222 it is a DNS name or not. 223 224 This option cannot be used in conjunction with B<-noservername>. 225 226 =item B<-noservername> 227 228 Suppresses sending of the SNI (Server Name Indication) extension in the 229 ClientHello message. Cannot be used in conjunction with the B<-servername> or 230 B<-dane_tlsa_domain> options. 231 232 =item B<-cert> I<filename> 233 234 The client certificate to use, if one is requested by the server. 235 The default is not to use a certificate. 236 237 The chain for the client certificate may be specified using B<-cert_chain>. 238 239 =item B<-certform> B<DER>|B<PEM>|B<P12> 240 241 The client certificate file format to use; unspecified by default. 242 See L<openssl-format-options(1)> for details. 243 244 =item B<-cert_chain> 245 246 A file or URI of untrusted certificates to use when attempting to build the 247 certificate chain related to the certificate specified via the B<-cert> option. 248 The input can be in PEM, DER, or PKCS#12 format. 249 250 =item B<-build_chain> 251 252 Specify whether the application should build the client certificate chain to be 253 provided to the server. 254 255 =item B<-CRL> I<filename> 256 257 CRL file to use to check the server's certificate. 258 259 =item B<-CRLform> B<DER>|B<PEM> 260 261 The CRL file format; unspecified by default. 262 See L<openssl-format-options(1)> for details. 263 264 =item B<-crl_download> 265 266 Download CRL from distribution points in the certificate. Note that this option 267 is ignored if B<-crl_check> option is not provided. Note that the maximum size 268 of CRL is limited by L<X509_CRL_load_http(3)> function. 269 270 =item B<-key> I<filename>|I<uri> 271 272 The client private key to use. 273 If not specified then the certificate file will be used to read also the key. 274 275 =item B<-keyform> B<DER>|B<PEM>|B<P12>|B<ENGINE> 276 277 The key format; unspecified by default. 278 See L<openssl-format-options(1)> for details. 279 280 =item B<-pass> I<arg> 281 282 the private key and certificate file password source. 283 For more information about the format of I<arg> 284 see L<openssl-passphrase-options(1)>. 285 286 =item B<-verify> I<depth> 287 288 The verify depth to use. This specifies the maximum length of the 289 server certificate chain and turns on server certificate verification. 290 Unless the B<-verify_return_error> option is given, 291 the verify operation continues after errors so all the problems 292 with a certificate chain can be seen. As a side effect the connection 293 will never fail due to a server certificate verify failure. 294 295 By default, validation of server certificates and their chain 296 is done w.r.t. the (D)TLS Server (C<sslserver>) purpose. 297 For details see L<openssl-verification-options(1)/Certificate Extensions>. 298 299 =item B<-verify_return_error> 300 301 Turns on server certificate verification, like with B<-verify>, 302 but returns verification errors instead of continuing. 303 This will typically abort the handshake with a fatal error. 304 305 =item B<-verify_quiet> 306 307 Limit verify output to only errors. 308 309 =item B<-verifyCAfile> I<filename> 310 311 A file in PEM format containing trusted certificates to use 312 for verifying the server's certificate. 313 314 =item B<-verifyCApath> I<dir> 315 316 A directory containing trusted certificates to use 317 for verifying the server's certificate. 318 This directory must be in "hash format", 319 see L<openssl-verify(1)> for more information. 320 321 =item B<-verifyCAstore> I<uri> 322 323 The URI of a store containing trusted certificates to use 324 for verifying the server's certificate. 325 326 =item B<-chainCAfile> I<file> 327 328 A file in PEM format containing trusted certificates to use 329 when attempting to build the client certificate chain. 330 331 =item B<-chainCApath> I<directory> 332 333 A directory containing trusted certificates to use 334 for building the client certificate chain provided to the server. 335 This directory must be in "hash format", 336 see L<openssl-verify(1)> for more information. 337 338 =item B<-chainCAstore> I<uri> 339 340 The URI of a store containing trusted certificates to use 341 when attempting to build the client certificate chain. 342 The URI may indicate a single certificate, as well as a collection of them. 343 With URIs in the C<file:> scheme, this acts as B<-chainCAfile> or 344 B<-chainCApath>, depending on if the URI indicates a directory or a 345 single file. 346 See L<ossl_store-file(7)> for more information on the C<file:> scheme. 347 348 =item B<-requestCAfile> I<file> 349 350 A file containing a list of certificates whose subject names will be sent 351 to the server in the B<certificate_authorities> extension. Only supported 352 for TLS 1.3 353 354 =item B<-dane_tlsa_domain> I<domain> 355 356 Enable RFC6698/RFC7671 DANE TLSA authentication and specify the 357 TLSA base domain which becomes the default SNI hint and the primary 358 reference identifier for hostname checks. This must be used in 359 combination with at least one instance of the B<-dane_tlsa_rrdata> 360 option below. 361 362 When DANE authentication succeeds, the diagnostic output will include 363 the lowest (closest to 0) depth at which a TLSA record authenticated 364 a chain certificate. When that TLSA record is a "2 1 0" trust 365 anchor public key that signed (rather than matched) the top-most 366 certificate of the chain, the result is reported as "TA public key 367 verified". Otherwise, either the TLSA record "matched TA certificate" 368 at a positive depth or else "matched EE certificate" at depth 0. 369 370 =item B<-dane_tlsa_rrdata> I<rrdata> 371 372 Use one or more times to specify the RRDATA fields of the DANE TLSA 373 RRset associated with the target service. The I<rrdata> value is 374 specified in "presentation form", that is four whitespace separated 375 fields that specify the usage, selector, matching type and associated 376 data, with the last of these encoded in hexadecimal. Optional 377 whitespace is ignored in the associated data field. For example: 378 379 $ openssl s_client -brief -starttls smtp \ 380 -connect smtp.example.com:25 \ 381 -dane_tlsa_domain smtp.example.com \ 382 -dane_tlsa_rrdata "2 1 1 383 B111DD8A1C2091A89BD4FD60C57F0716CCE50FEEFF8137CDBEE0326E 02CF362B" \ 384 -dane_tlsa_rrdata "2 1 1 385 60B87575447DCBA2A36B7D11AC09FB24A9DB406FEE12D2CC90180517 616E8A18" 386 ... 387 Verification: OK 388 Verified peername: smtp.example.com 389 DANE TLSA 2 1 1 ...ee12d2cc90180517616e8a18 matched TA certificate at depth 1 390 ... 391 392 =item B<-dane_ee_no_namechecks> 393 394 This disables server name checks when authenticating via DANE-EE(3) TLSA 395 records. 396 For some applications, primarily web browsers, it is not safe to disable name 397 checks due to "unknown key share" attacks, in which a malicious server can 398 convince a client that a connection to a victim server is instead a secure 399 connection to the malicious server. 400 The malicious server may then be able to violate cross-origin scripting 401 restrictions. 402 Thus, despite the text of RFC7671, name checks are by default enabled for 403 DANE-EE(3) TLSA records, and can be disabled in applications where it is safe 404 to do so. 405 In particular, SMTP and XMPP clients should set this option as SRV and MX 406 records already make it possible for a remote domain to redirect client 407 connections to any server of its choice, and in any case SMTP and XMPP clients 408 do not execute scripts downloaded from remote servers. 409 410 =item B<-reconnect> 411 412 Reconnects to the same server 5 times using the same session ID, this can 413 be used as a test that session caching is working. 414 415 =item B<-showcerts> 416 417 Displays the server certificate list as sent by the server: it only consists of 418 certificates the server has sent (in the order the server has sent them). It is 419 B<not> a verified chain. 420 421 =item B<-prexit> 422 423 Print session information when the program exits. This will always attempt 424 to print out information even if the connection fails. Normally information 425 will only be printed out once if the connection succeeds. This option is useful 426 because the cipher in use may be renegotiated or the connection may fail 427 because a client certificate is required or is requested only after an 428 attempt is made to access a certain URL. Note: the output produced by this 429 option is not always accurate because a connection might never have been 430 established. 431 432 =item B<-state> 433 434 Prints out the SSL session states. 435 436 =item B<-debug> 437 438 Print extensive debugging information including a hex dump of all traffic. 439 440 =item B<-nocommands> 441 442 Do not use interactive command letters. 443 444 =item B<-security_debug> 445 446 Enable security debug messages. 447 448 =item B<-security_debug_verbose> 449 450 Output more security debug output. 451 452 =item B<-msg> 453 454 Show protocol messages. 455 456 =item B<-timeout> 457 458 Enable send/receive timeout on DTLS connections. 459 460 =item B<-mtu> I<size> 461 462 Set MTU of the link layer to the specified size. 463 464 =item B<-no_etm> 465 466 Disable Encrypt-then-MAC negotiation. 467 468 =item B<-keymatexport> I<label> 469 470 Export keying material using the specified label. 471 472 =item B<-keymatexportlen> I<len> 473 474 Export the specified number of bytes of keying material; default is 20. 475 476 Show all protocol messages with hex dump. 477 478 =item B<-trace> 479 480 Show verbose trace output of protocol messages. 481 482 =item B<-msgfile> I<filename> 483 484 File to send output of B<-msg> or B<-trace> to, default standard output. 485 486 =item B<-nbio_test> 487 488 Tests nonblocking I/O 489 490 =item B<-nbio> 491 492 Turns on nonblocking I/O 493 494 =item B<-crlf> 495 496 This option translated a line feed from the terminal into CR+LF as required 497 by some servers. 498 499 =item B<-ign_eof> 500 501 Inhibit shutting down the connection when end of file is reached in the 502 input. 503 504 =item B<-quiet> 505 506 Inhibit printing of session and certificate information. This implicitly 507 turns on B<-ign_eof> as well. 508 509 =item B<-no_ign_eof> 510 511 Shut down the connection when end of file is reached in the input. 512 Can be used to override the implicit B<-ign_eof> after B<-quiet>. 513 514 =item B<-psk_identity> I<identity> 515 516 Use the PSK identity I<identity> when using a PSK cipher suite. 517 The default value is "Client_identity" (without the quotes). 518 519 =item B<-psk> I<key> 520 521 Use the PSK key I<key> when using a PSK cipher suite. The key is 522 given as a hexadecimal number without leading 0x, for example -psk 523 1a2b3c4d. 524 This option must be provided in order to use a PSK cipher. 525 526 =item B<-psk_session> I<file> 527 528 Use the pem encoded SSL_SESSION data stored in I<file> as the basis of a PSK. 529 Note that this will only work if TLSv1.3 is negotiated. 530 531 =item B<-sctp> 532 533 Use SCTP for the transport protocol instead of UDP in DTLS. Must be used in 534 conjunction with B<-dtls>, B<-dtls1> or B<-dtls1_2>. This option is only 535 available where OpenSSL has support for SCTP enabled. 536 537 =item B<-sctp_label_bug> 538 539 Use the incorrect behaviour of older OpenSSL implementations when computing 540 endpoint-pair shared secrets for DTLS/SCTP. This allows communication with 541 older broken implementations but breaks interoperability with correct 542 implementations. Must be used in conjunction with B<-sctp>. This option is only 543 available where OpenSSL has support for SCTP enabled. 544 545 =item B<-fallback_scsv> 546 547 Send TLS_FALLBACK_SCSV in the ClientHello. 548 549 =item B<-async> 550 551 Switch on asynchronous mode. Cryptographic operations will be performed 552 asynchronously. This will only have an effect if an asynchronous capable engine 553 is also used via the B<-engine> option. For test purposes the dummy async engine 554 (dasync) can be used (if available). 555 556 =item B<-maxfraglen> I<len> 557 558 Enable Maximum Fragment Length Negotiation; allowed values are 559 C<512>, C<1024>, C<2048>, and C<4096>. 560 561 =item B<-max_send_frag> I<int> 562 563 The maximum size of data fragment to send. 564 See L<SSL_CTX_set_max_send_fragment(3)> for further information. 565 566 =item B<-split_send_frag> I<int> 567 568 The size used to split data for encrypt pipelines. If more data is written in 569 one go than this value then it will be split into multiple pipelines, up to the 570 maximum number of pipelines defined by max_pipelines. This only has an effect if 571 a suitable cipher suite has been negotiated, an engine that supports pipelining 572 has been loaded, and max_pipelines is greater than 1. See 573 L<SSL_CTX_set_split_send_fragment(3)> for further information. 574 575 =item B<-max_pipelines> I<int> 576 577 The maximum number of encrypt/decrypt pipelines to be used. This will only have 578 an effect if an engine has been loaded that supports pipelining (e.g. the dasync 579 engine) and a suitable cipher suite has been negotiated. The default value is 1. 580 See L<SSL_CTX_set_max_pipelines(3)> for further information. 581 582 =item B<-read_buf> I<int> 583 584 The default read buffer size to be used for connections. This will only have an 585 effect if the buffer size is larger than the size that would otherwise be used 586 and pipelining is in use (see L<SSL_CTX_set_default_read_buffer_len(3)> for 587 further information). 588 589 =item B<-ignore_unexpected_eof> 590 591 Some TLS implementations do not send the mandatory close_notify alert on 592 shutdown. If the application tries to wait for the close_notify alert but the 593 peer closes the connection without sending it, an error is generated. When this 594 option is enabled the peer does not need to send the close_notify alert and a 595 closed connection will be treated as if the close_notify alert was received. 596 For more information on shutting down a connection, see L<SSL_shutdown(3)>. 597 598 =item B<-bugs> 599 600 There are several known bugs in SSL and TLS implementations. Adding this 601 option enables various workarounds. 602 603 =item B<-comp> 604 605 Enables support for SSL/TLS compression. 606 This option was introduced in OpenSSL 1.1.0. 607 TLS compression is not recommended and is off by default as of 608 OpenSSL 1.1.0. 609 610 =item B<-no_comp> 611 612 Disables support for SSL/TLS compression. 613 TLS compression is not recommended and is off by default as of 614 OpenSSL 1.1.0. 615 616 =item B<-brief> 617 618 Only provide a brief summary of connection parameters instead of the 619 normal verbose output. 620 621 =item B<-sigalgs> I<sigalglist> 622 623 Specifies the list of signature algorithms that are sent by the client. 624 The server selects one entry in the list based on its preferences. 625 For example strings, see L<SSL_CTX_set1_sigalgs(3)> 626 627 =item B<-curves> I<curvelist> 628 629 Specifies the list of supported curves to be sent by the client. The curve is 630 ultimately selected by the server. 631 632 The list of all supported groups includes named EC parameters as well as X25519 633 and X448 or FFDHE groups, and may also include groups implemented in 3rd-party 634 providers. For a list of named EC parameters, use: 635 636 $ openssl ecparam -list_curves 637 638 =item B<-cipher> I<cipherlist> 639 640 This allows the TLSv1.2 and below cipher list sent by the client to be modified. 641 This list will be combined with any TLSv1.3 ciphersuites that have been 642 configured. Although the server determines which ciphersuite is used it should 643 take the first supported cipher in the list sent by the client. See 644 L<openssl-ciphers(1)> for more information. 645 646 =item B<-ciphersuites> I<val> 647 648 This allows the TLSv1.3 ciphersuites sent by the client to be modified. This 649 list will be combined with any TLSv1.2 and below ciphersuites that have been 650 configured. Although the server determines which cipher suite is used it should 651 take the first supported cipher in the list sent by the client. See 652 L<openssl-ciphers(1)> for more information. The format for this list is a simple 653 colon (":") separated list of TLSv1.3 ciphersuite names. 654 655 =item B<-starttls> I<protocol> 656 657 Send the protocol-specific message(s) to switch to TLS for communication. 658 I<protocol> is a keyword for the intended protocol. Currently, the only 659 supported keywords are "smtp", "pop3", "imap", "ftp", "xmpp", "xmpp-server", 660 "irc", "postgres", "mysql", "lmtp", "nntp", "sieve" and "ldap". 661 662 =item B<-xmpphost> I<hostname> 663 664 This option, when used with "-starttls xmpp" or "-starttls xmpp-server", 665 specifies the host for the "to" attribute of the stream element. 666 If this option is not specified, then the host specified with "-connect" 667 will be used. 668 669 This option is an alias of the B<-name> option for "xmpp" and "xmpp-server". 670 671 =item B<-name> I<hostname> 672 673 This option is used to specify hostname information for various protocols 674 used with B<-starttls> option. Currently only "xmpp", "xmpp-server", 675 "smtp" and "lmtp" can utilize this B<-name> option. 676 677 If this option is used with "-starttls xmpp" or "-starttls xmpp-server", 678 if specifies the host for the "to" attribute of the stream element. If this 679 option is not specified, then the host specified with "-connect" will be used. 680 681 If this option is used with "-starttls lmtp" or "-starttls smtp", it specifies 682 the name to use in the "LMTP LHLO" or "SMTP EHLO" message, respectively. If 683 this option is not specified, then "mail.example.com" will be used. 684 685 =item B<-tlsextdebug> 686 687 Print out a hex dump of any TLS extensions received from the server. 688 689 =item B<-no_ticket> 690 691 Disable RFC4507bis session ticket support. 692 693 =item B<-sess_out> I<filename> 694 695 Output SSL session to I<filename>. 696 697 =item B<-sess_in> I<filename> 698 699 Load SSL session from I<filename>. The client will attempt to resume a 700 connection from this session. 701 702 =item B<-serverinfo> I<types> 703 704 A list of comma-separated TLS Extension Types (numbers between 0 and 705 65535). Each type will be sent as an empty ClientHello TLS Extension. 706 The server's response (if any) will be encoded and displayed as a PEM 707 file. 708 709 =item B<-status> 710 711 Sends a certificate status request to the server (OCSP stapling). The server 712 response (if any) is printed out. 713 714 =item B<-alpn> I<protocols>, B<-nextprotoneg> I<protocols> 715 716 These flags enable the Enable the Application-Layer Protocol Negotiation 717 or Next Protocol Negotiation (NPN) extension, respectively. ALPN is the 718 IETF standard and replaces NPN. 719 The I<protocols> list is a comma-separated list of protocol names that 720 the client should advertise support for. The list should contain the most 721 desirable protocols first. Protocol names are printable ASCII strings, 722 for example "http/1.1" or "spdy/3". 723 An empty list of protocols is treated specially and will cause the 724 client to advertise support for the TLS extension but disconnect just 725 after receiving ServerHello with a list of server supported protocols. 726 The flag B<-nextprotoneg> cannot be specified if B<-tls1_3> is used. 727 728 =item B<-ct>, B<-noct> 729 730 Use one of these two options to control whether Certificate Transparency (CT) 731 is enabled (B<-ct>) or disabled (B<-noct>). 732 If CT is enabled, signed certificate timestamps (SCTs) will be requested from 733 the server and reported at handshake completion. 734 735 Enabling CT also enables OCSP stapling, as this is one possible delivery method 736 for SCTs. 737 738 =item B<-ctlogfile> 739 740 A file containing a list of known Certificate Transparency logs. See 741 L<SSL_CTX_set_ctlog_list_file(3)> for the expected file format. 742 743 =item B<-keylogfile> I<file> 744 745 Appends TLS secrets to the specified keylog file such that external programs 746 (like Wireshark) can decrypt TLS connections. 747 748 =item B<-early_data> I<file> 749 750 Reads the contents of the specified file and attempts to send it as early data 751 to the server. This will only work with resumed sessions that support early 752 data and when the server accepts the early data. 753 754 =item B<-enable_pha> 755 756 For TLSv1.3 only, send the Post-Handshake Authentication extension. This will 757 happen whether or not a certificate has been provided via B<-cert>. 758 759 =item B<-use_srtp> I<value> 760 761 Offer SRTP key management, where B<value> is a colon-separated profile list. 762 763 =item B<-srpuser> I<value> 764 765 Set the SRP username to the specified value. This option is deprecated. 766 767 =item B<-srppass> I<value> 768 769 Set the SRP password to the specified value. This option is deprecated. 770 771 =item B<-srp_lateuser> 772 773 SRP username for the second ClientHello message. This option is deprecated. 774 775 =item B<-srp_moregroups> This option is deprecated. 776 777 Tolerate other than the known B<g> and B<N> values. 778 779 =item B<-srp_strength> I<number> 780 781 Set the minimal acceptable length, in bits, for B<N>. This option is 782 deprecated. 783 784 {- $OpenSSL::safe::opt_version_item -} 785 786 {- $OpenSSL::safe::opt_name_item -} 787 788 {- $OpenSSL::safe::opt_x_item -} 789 790 {- $OpenSSL::safe::opt_trust_item -} 791 792 {- $OpenSSL::safe::opt_s_item -} 793 794 {- $OpenSSL::safe::opt_r_item -} 795 796 {- $OpenSSL::safe::opt_provider_item -} 797 798 {- $OpenSSL::safe::opt_engine_item -} 799 800 {- output_off() if $disabled{"deprecated-3.0"}; "" -} 801 =item B<-ssl_client_engine> I<id> 802 803 Specify engine to be used for client certificate operations. 804 {- output_on() if $disabled{"deprecated-3.0"}; "" -} 805 806 {- $OpenSSL::safe::opt_v_item -} 807 808 Verification errors are displayed, for debugging, but the command will 809 proceed unless the B<-verify_return_error> option is used. 810 811 =item I<host>:I<port> 812 813 Rather than providing B<-connect>, the target host and optional port may 814 be provided as a single positional argument after all options. If neither this 815 nor B<-connect> are provided, falls back to attempting to connect to 816 I<localhost> on port I<4433>. 817 If the host string is an IPv6 address, it must be enclosed in C<[> and C<]>. 818 819 =back 820 821 =head1 CONNECTED COMMANDS 822 823 If a connection is established with an SSL server then any data received 824 from the server is displayed and any key presses will be sent to the 825 server. If end of file is reached then the connection will be closed down. When 826 used interactively (which means neither B<-quiet> nor B<-ign_eof> have been 827 given), then certain commands are also recognized which perform special 828 operations. These commands are a letter which must appear at the start of a 829 line. They are listed below. 830 831 =over 4 832 833 =item B<Q> 834 835 End the current SSL connection and exit. 836 837 =item B<R> 838 839 Renegotiate the SSL session (TLSv1.2 and below only). 840 841 =item B<k> 842 843 Send a key update message to the server (TLSv1.3 only) 844 845 =item B<K> 846 847 Send a key update message to the server and request one back (TLSv1.3 only) 848 849 =back 850 851 =head1 NOTES 852 853 This command can be used to debug SSL servers. To connect to an SSL HTTP 854 server the command: 855 856 openssl s_client -connect servername:443 857 858 would typically be used (https uses port 443). If the connection succeeds 859 then an HTTP command can be given such as "GET /" to retrieve a web page. 860 861 If the handshake fails then there are several possible causes, if it is 862 nothing obvious like no client certificate then the B<-bugs>, 863 B<-ssl3>, B<-tls1>, B<-no_ssl3>, B<-no_tls1> options can be tried 864 in case it is a buggy server. In particular you should play with these 865 options B<before> submitting a bug report to an OpenSSL mailing list. 866 867 A frequent problem when attempting to get client certificates working 868 is that a web client complains it has no certificates or gives an empty 869 list to choose from. This is normally because the server is not sending 870 the clients certificate authority in its "acceptable CA list" when it 871 requests a certificate. By using this command, the CA list can be viewed 872 and checked. However, some servers only request client authentication 873 after a specific URL is requested. To obtain the list in this case it 874 is necessary to use the B<-prexit> option and send an HTTP request 875 for an appropriate page. 876 877 If a certificate is specified on the command line using the B<-cert> 878 option it will not be used unless the server specifically requests 879 a client certificate. Therefore, merely including a client certificate 880 on the command line is no guarantee that the certificate works. 881 882 If there are problems verifying a server certificate then the 883 B<-showcerts> option can be used to show all the certificates sent by the 884 server. 885 886 This command is a test tool and is designed to continue the 887 handshake after any certificate verification errors. As a result it will 888 accept any certificate chain (trusted or not) sent by the peer. Non-test 889 applications should B<not> do this as it makes them vulnerable to a MITM 890 attack. This behaviour can be changed by with the B<-verify_return_error> 891 option: any verify errors are then returned aborting the handshake. 892 893 The B<-bind> option may be useful if the server or a firewall requires 894 connections to come from some particular address and or port. 895 896 =head2 Note on Non-Interactive Use 897 898 When B<s_client> is run in a non-interactive environment (e.g., a cron job or 899 a script without a valid I<stdin>), it may close the connection prematurely, 900 especially with TLS 1.3. To prevent this, you can use the B<-ign_eof> flag, 901 which keeps B<s_client> running even after reaching EOF from I<stdin>. 902 903 For example: 904 905 openssl s_client -connect <server address>:443 -tls1_3 906 -sess_out /path/to/tls_session_params_file 907 -ign_eof </dev/null 908 909 However, relying solely on B<-ign_eof> can lead to issues if the server keeps 910 the connection open, expecting the client to close first. In such cases, the 911 client may hang indefinitely. This behavior is not uncommon, particularly with 912 protocols where the server waits for a graceful disconnect from the client. 913 914 For example, when connecting to an SMTP server, the session may pause if the 915 server expects a QUIT command before closing: 916 917 $ openssl s_client -brief -ign_eof -starttls smtp 918 -connect <server address>:25 </dev/null 919 CONNECTION ESTABLISHED 920 Protocol version: TLSv1.3 921 Ciphersuite: TLS_AES_256_GCM_SHA384 922 ... 923 250 CHUNKING 924 [long pause] 925 926 To avoid such hangs, it's better to use an application-level command to 927 initiate a clean disconnect. For SMTP, you can send a QUIT command: 928 929 printf 'QUIT\r\n' | openssl s_client -connect <server address>:25 930 -starttls smtp -brief -ign_eof 931 932 Similarly, for HTTP/1.1 connections, including a `Connection: close` header 933 ensures the server closes the connection after responding: 934 935 printf 'GET / HTTP/1.1\r\nHost: <server address>\r\nConnection: close\r\n\r\n' 936 | openssl s_client -connect <server address>:443 -brief 937 938 These approaches help manage the connection closure gracefully and prevent 939 hangs caused by the server waiting for the client to initiate the disconnect. 940 941 =head1 BUGS 942 943 Because this program has a lot of options and also because some of the 944 techniques used are rather old, the C source for this command is rather 945 hard to read and not a model of how things should be done. 946 A typical SSL client program would be much simpler. 947 948 The B<-prexit> option is a bit of a hack. We should really report 949 information whenever a session is renegotiated. 950 951 =head1 SEE ALSO 952 953 L<openssl(1)>, 954 L<openssl-sess_id(1)>, 955 L<openssl-s_server(1)>, 956 L<openssl-ciphers(1)>, 957 L<SSL_CONF_cmd(3)>, 958 L<SSL_CTX_set_max_send_fragment(3)>, 959 L<SSL_CTX_set_split_send_fragment(3)>, 960 L<SSL_CTX_set_max_pipelines(3)>, 961 L<ossl_store-file(7)> 962 963 =head1 HISTORY 964 965 The B<-no_alt_chains> option was added in OpenSSL 1.1.0. 966 The B<-name> option was added in OpenSSL 1.1.1. 967 968 The B<-certform> option has become obsolete in OpenSSL 3.0.0 and has no effect. 969 970 The B<-engine> option was deprecated in OpenSSL 3.0. 971 972 =head1 COPYRIGHT 973 974 Copyright 2000-2024 The OpenSSL Project Authors. All Rights Reserved. 975 976 Licensed under the Apache License 2.0 (the "License"). You may not use 977 this file except in compliance with the License. You can obtain a copy 978 in the file LICENSE in the source distribution or at 979 L<https://www.openssl.org/source/license.html>. 980 981 =cut 982