Add documentation for TLSv1.3 ciphersuite configuration
[openssl.git] / doc / man1 / s_client.pod
1 =pod
2
3 =head1 NAME
4
5 openssl-s_client,
6 s_client - SSL/TLS client program
7
8 =head1 SYNOPSIS
9
10 B<openssl> B<s_client>
11 [B<-help>]
12 [B<-connect host:port>]
13 [B<-bind host:port>]
14 [B<-proxy host:port>]
15 [B<-unix path>]
16 [B<-4>]
17 [B<-6>]
18 [B<-servername name>]
19 [B<-noservername>]
20 [B<-verify depth>]
21 [B<-verify_return_error>]
22 [B<-cert filename>]
23 [B<-certform DER|PEM>]
24 [B<-key filename>]
25 [B<-keyform DER|PEM>]
26 [B<-pass arg>]
27 [B<-CApath directory>]
28 [B<-CAfile filename>]
29 [B<-no-CAfile>]
30 [B<-no-CApath>]
31 [B<-requestCAfile filename>]
32 [B<-dane_tlsa_domain domain>]
33 [B<-dane_tlsa_rrdata rrdata>]
34 [B<-dane_ee_no_namechecks>]
35 [B<-attime timestamp>]
36 [B<-check_ss_sig>]
37 [B<-crl_check>]
38 [B<-crl_check_all>]
39 [B<-explicit_policy>]
40 [B<-extended_crl>]
41 [B<-ignore_critical>]
42 [B<-inhibit_any>]
43 [B<-inhibit_map>]
44 [B<-no_check_time>]
45 [B<-partial_chain>]
46 [B<-policy arg>]
47 [B<-policy_check>]
48 [B<-policy_print>]
49 [B<-purpose purpose>]
50 [B<-suiteB_128>]
51 [B<-suiteB_128_only>]
52 [B<-suiteB_192>]
53 [B<-trusted_first>]
54 [B<-no_alt_chains>]
55 [B<-use_deltas>]
56 [B<-auth_level num>]
57 [B<-nameopt option>]
58 [B<-verify_depth num>]
59 [B<-verify_email email>]
60 [B<-verify_hostname hostname>]
61 [B<-verify_ip ip>]
62 [B<-verify_name name>]
63 [B<-x509_strict>]
64 [B<-reconnect>]
65 [B<-showcerts>]
66 [B<-debug>]
67 [B<-msg>]
68 [B<-nbio_test>]
69 [B<-state>]
70 [B<-nbio>]
71 [B<-crlf>]
72 [B<-ign_eof>]
73 [B<-no_ign_eof>]
74 [B<-quiet>]
75 [B<-ssl3>]
76 [B<-tls1>]
77 [B<-tls1_1>]
78 [B<-tls1_2>]
79 [B<-tls1_3>]
80 [B<-no_ssl3>]
81 [B<-no_tls1>]
82 [B<-no_tls1_1>]
83 [B<-no_tls1_2>]
84 [B<-no_tls1_3>]
85 [B<-dtls>]
86 [B<-dtls1>]
87 [B<-dtls1_2>]
88 [B<-sctp>]
89 [B<-fallback_scsv>]
90 [B<-async>]
91 [B<-max_send_frag>]
92 [B<-split_send_frag>]
93 [B<-max_pipelines>]
94 [B<-read_buf>]
95 [B<-bugs>]
96 [B<-comp>]
97 [B<-no_comp>]
98 [B<-allow_no_dhe_kex>]
99 [B<-sigalgs sigalglist>]
100 [B<-curves curvelist>]
101 [B<-cipher cipherlist>]
102 [B<-ciphersuites val>]
103 [B<-serverpref>]
104 [B<-starttls protocol>]
105 [B<-xmpphost hostname>]
106 [B<-name hostname>]
107 [B<-engine id>]
108 [B<-tlsextdebug>]
109 [B<-no_ticket>]
110 [B<-sess_out filename>]
111 [B<-sess_in filename>]
112 [B<-rand file...>]
113 [B<-writerand file>]
114 [B<-serverinfo types>]
115 [B<-status>]
116 [B<-alpn protocols>]
117 [B<-nextprotoneg protocols>]
118 [B<-ct>]
119 [B<-noct>]
120 [B<-ctlogfile>]
121 [B<-keylogfile file>]
122 [B<-early_data file>]
123 [B<-force_pha>]
124 [B<target>]
125
126 =head1 DESCRIPTION
127
128 The B<s_client> command implements a generic SSL/TLS client which connects
129 to a remote host using SSL/TLS. It is a I<very> useful diagnostic tool for
130 SSL servers.
131
132 =head1 OPTIONS
133
134 In addition to the options below the B<s_client> utility also supports the
135 common and client only options documented in the
136 in the "Supported Command Line Commands" section of the L<SSL_CONF_cmd(3)>
137 manual page.
138
139 =over 4
140
141 =item B<-help>
142
143 Print out a usage message.
144
145 =item B<-connect host:port>
146
147 This specifies the host and optional port to connect to. It is possible to
148 select the host and port using the optional target positional argument instead.
149 If neither this nor the target positional argument are specified then an attempt
150 is made to connect to the local host on port 4433.
151
152 =item B<-bind host:port>]
153
154 This specifies the host address and or port to bind as the source for the
155 connection.  For Unix-domain sockets the port is ignored and the host is
156 used as the source socket address.
157
158 =item B<-proxy host:port>
159
160 When used with the B<-connect> flag, the program uses the host and port
161 specified with this flag and issues an HTTP CONNECT command to connect
162 to the desired server.
163
164 =item B<-unix path>
165
166 Connect over the specified Unix-domain socket.
167
168 =item B<-4>
169
170 Use IPv4 only.
171
172 =item B<-6>
173
174 Use IPv6 only.
175
176 =item B<-servername name>
177
178 Set the TLS SNI (Server Name Indication) extension in the ClientHello message to
179 the given value. If both this option and the B<-noservername> are not given, the
180 TLS SNI extension is still set to the hostname provided to the B<-connect> option,
181 or "localhost" if B<-connect> has not been supplied. This is default since OpenSSL
182 1.1.1.
183
184 Even though SNI name should normally be a DNS name and not an IP address, this
185 option will not make the distinction when parsing B<-connect> and will send
186 IP address if one passed.
187
188 =item B<-noservername>
189
190 Suppresses sending of the SNI (Server Name Indication) extension in the
191 ClientHello message. Cannot be used in conjunction with the B<-servername> or
192 <-dane_tlsa_domain> options.
193
194 =item B<-cert certname>
195
196 The certificate to use, if one is requested by the server. The default is
197 not to use a certificate.
198
199 =item B<-certform format>
200
201 The certificate format to use: DER or PEM. PEM is the default.
202
203 =item B<-key keyfile>
204
205 The private key to use. If not specified then the certificate file will
206 be used.
207
208 =item B<-keyform format>
209
210 The private format to use: DER or PEM. PEM is the default.
211
212 =item B<-pass arg>
213
214 the private key password source. For more information about the format of B<arg>
215 see the B<PASS PHRASE ARGUMENTS> section in L<openssl(1)>.
216
217 =item B<-verify depth>
218
219 The verify depth to use. This specifies the maximum length of the
220 server certificate chain and turns on server certificate verification.
221 Currently the verify operation continues after errors so all the problems
222 with a certificate chain can be seen. As a side effect the connection
223 will never fail due to a server certificate verify failure.
224
225 =item B<-verify_return_error>
226
227 Return verification errors instead of continuing. This will typically
228 abort the handshake with a fatal error.
229
230 =item B<-nameopt option>
231
232 Option which determines how the subject or issuer names are displayed. The
233 B<option> argument can be a single option or multiple options separated by
234 commas.  Alternatively the B<-nameopt> switch may be used more than once to
235 set multiple options. See the L<x509(1)> manual page for details.
236
237 =item B<-CApath directory>
238
239 The directory to use for server certificate verification. This directory
240 must be in "hash format", see B<verify> for more information. These are
241 also used when building the client certificate chain.
242
243 =item B<-CAfile file>
244
245 A file containing trusted certificates to use during server authentication
246 and to use when attempting to build the client certificate chain.
247
248 =item B<-no-CAfile>
249
250 Do not load the trusted CA certificates from the default file location
251
252 =item B<-no-CApath>
253
254 Do not load the trusted CA certificates from the default directory location
255
256 =item B<-requestCAfile file>
257
258 A file containing a list of certificates whose subject names will be sent
259 to the server in the B<certificate_authorities> extension. Only supported
260 for TLS 1.3
261
262 =item B<-dane_tlsa_domain domain>
263
264 Enable RFC6698/RFC7671 DANE TLSA authentication and specify the
265 TLSA base domain which becomes the default SNI hint and the primary
266 reference identifier for hostname checks.  This must be used in
267 combination with at least one instance of the B<-dane_tlsa_rrdata>
268 option below.
269
270 When DANE authentication succeeds, the diagnostic output will include
271 the lowest (closest to 0) depth at which a TLSA record authenticated
272 a chain certificate.  When that TLSA record is a "2 1 0" trust
273 anchor public key that signed (rather than matched) the top-most
274 certificate of the chain, the result is reported as "TA public key
275 verified".  Otherwise, either the TLSA record "matched TA certificate"
276 at a positive depth or else "matched EE certificate" at depth 0.
277
278 =item B<-dane_tlsa_rrdata rrdata>
279
280 Use one or more times to specify the RRDATA fields of the DANE TLSA
281 RRset associated with the target service.  The B<rrdata> value is
282 specied in "presentation form", that is four whitespace separated
283 fields that specify the usage, selector, matching type and associated
284 data, with the last of these encoded in hexadecimal.  Optional
285 whitespace is ignored in the associated data field.  For example:
286
287   $ openssl s_client -brief -starttls smtp \
288     -connect smtp.example.com:25 \
289     -dane_tlsa_domain smtp.example.com \
290     -dane_tlsa_rrdata "2 1 1
291       B111DD8A1C2091A89BD4FD60C57F0716CCE50FEEFF8137CDBEE0326E 02CF362B" \
292     -dane_tlsa_rrdata "2 1 1
293       60B87575447DCBA2A36B7D11AC09FB24A9DB406FEE12D2CC90180517 616E8A18"
294   ...
295   Verification: OK
296   Verified peername: smtp.example.com
297   DANE TLSA 2 1 1 ...ee12d2cc90180517616e8a18 matched TA certificate at depth 1
298   ...
299
300 =item B<-dane_ee_no_namechecks>
301
302 This disables server name checks when authenticating via DANE-EE(3) TLSA
303 records.
304 For some applications, primarily web browsers, it is not safe to disable name
305 checks due to "unknown key share" attacks, in which a malicious server can
306 convince a client that a connection to a victim server is instead a secure
307 connection to the malicious server.
308 The malicious server may then be able to violate cross-origin scripting
309 restrictions.
310 Thus, despite the text of RFC7671, name checks are by default enabled for
311 DANE-EE(3) TLSA records, and can be disabled in applications where it is safe
312 to do so.
313 In particular, SMTP and XMPP clients should set this option as SRV and MX
314 records already make it possible for a remote domain to redirect client
315 connections to any server of its choice, and in any case SMTP and XMPP clients
316 do not execute scripts downloaded from remote servers.
317
318 =item B<-attime>, B<-check_ss_sig>, B<-crl_check>, B<-crl_check_all>,
319 B<-explicit_policy>, B<-extended_crl>, B<-ignore_critical>, B<-inhibit_any>,
320 B<-inhibit_map>, B<-no_alt_chains>, B<-no_check_time>, B<-partial_chain>, B<-policy>,
321 B<-policy_check>, B<-policy_print>, B<-purpose>, B<-suiteB_128>,
322 B<-suiteB_128_only>, B<-suiteB_192>, B<-trusted_first>, B<-use_deltas>,
323 B<-auth_level>, B<-verify_depth>, B<-verify_email>, B<-verify_hostname>,
324 B<-verify_ip>, B<-verify_name>, B<-x509_strict>
325
326 Set various certificate chain validation options. See the
327 L<verify(1)> manual page for details.
328
329 =item B<-reconnect>
330
331 Reconnects to the same server 5 times using the same session ID, this can
332 be used as a test that session caching is working.
333
334 =item B<-showcerts>
335
336 Display the whole server certificate chain: normally only the server
337 certificate itself is displayed.
338
339 =item B<-prexit>
340
341 Print session information when the program exits. This will always attempt
342 to print out information even if the connection fails. Normally information
343 will only be printed out once if the connection succeeds. This option is useful
344 because the cipher in use may be renegotiated or the connection may fail
345 because a client certificate is required or is requested only after an
346 attempt is made to access a certain URL. Note: the output produced by this
347 option is not always accurate because a connection might never have been
348 established.
349
350 =item B<-state>
351
352 Prints out the SSL session states.
353
354 =item B<-debug>
355
356 Print extensive debugging information including a hex dump of all traffic.
357
358 =item B<-msg>
359
360 Show all protocol messages with hex dump.
361
362 =item B<-trace>
363
364 Show verbose trace output of protocol messages. OpenSSL needs to be compiled
365 with B<enable-ssl-trace> for this option to work.
366
367 =item B<-msgfile>
368
369 File to send output of B<-msg> or B<-trace> to, default standard output.
370
371 =item B<-nbio_test>
372
373 Tests non-blocking I/O
374
375 =item B<-nbio>
376
377 Turns on non-blocking I/O
378
379 =item B<-crlf>
380
381 This option translated a line feed from the terminal into CR+LF as required
382 by some servers.
383
384 =item B<-ign_eof>
385
386 Inhibit shutting down the connection when end of file is reached in the
387 input.
388
389 =item B<-quiet>
390
391 Inhibit printing of session and certificate information.  This implicitly
392 turns on B<-ign_eof> as well.
393
394 =item B<-no_ign_eof>
395
396 Shut down the connection when end of file is reached in the input.
397 Can be used to override the implicit B<-ign_eof> after B<-quiet>.
398
399 =item B<-psk_identity identity>
400
401 Use the PSK identity B<identity> when using a PSK cipher suite.
402 The default value is "Client_identity" (without the quotes).
403
404 =item B<-psk key>
405
406 Use the PSK key B<key> when using a PSK cipher suite. The key is
407 given as a hexadecimal number without leading 0x, for example -psk
408 1a2b3c4d.
409 This option must be provided in order to use a PSK cipher.
410
411 =item B<-ssl3>, B<-tls1>, B<-tls1_1>, B<-tls1_2>, B<-tls1_3>, B<-no_ssl3>, B<-no_tls1>, B<-no_tls1_1>, B<-no_tls1_2>, B<-no_tls1_3>
412
413 These options require or disable the use of the specified SSL or TLS protocols.
414 By default B<s_client> will negotiate the highest mutually supported protocol
415 version.
416 When a specific TLS version is required, only that version will be offered to
417 and accepted from the server.
418
419 =item B<-dtls>, B<-dtls1>, B<-dtls1_2>
420
421 These options make B<s_client> use DTLS protocols instead of TLS.
422 With B<-dtls>, B<s_client> will negotiate any supported DTLS protocol version,
423 whilst B<-dtls1> and B<-dtls1_2> will only support DTLS1.0 and DTLS1.2
424 respectively.
425
426 =item B<-sctp>
427
428 Use SCTP for the transport protocol instead of UDP in DTLS. Must be used in
429 conjunction with B<-dtls>, B<-dtls1> or B<-dtls1_2>. This option is only
430 available where OpenSSL has support for SCTP enabled.
431
432 =item B<-fallback_scsv>
433
434 Send TLS_FALLBACK_SCSV in the ClientHello.
435
436 =item B<-async>
437
438 Switch on asynchronous mode. Cryptographic operations will be performed
439 asynchronously. This will only have an effect if an asynchronous capable engine
440 is also used via the B<-engine> option. For test purposes the dummy async engine
441 (dasync) can be used (if available).
442
443 =item B<-max_send_frag int>
444
445 The maximum size of data fragment to send.
446 See L<SSL_CTX_set_max_send_fragment(3)> for further information.
447
448 =item B<-split_send_frag int>
449
450 The size used to split data for encrypt pipelines. If more data is written in
451 one go than this value then it will be split into multiple pipelines, up to the
452 maximum number of pipelines defined by max_pipelines. This only has an effect if
453 a suitable cipher suite has been negotiated, an engine that supports pipelining
454 has been loaded, and max_pipelines is greater than 1. See
455 L<SSL_CTX_set_split_send_fragment(3)> for further information.
456
457 =item B<-max_pipelines int>
458
459 The maximum number of encrypt/decrypt pipelines to be used. This will only have
460 an effect if an engine has been loaded that supports pipelining (e.g. the dasync
461 engine) and a suitable cipher suite has been negotiated. The default value is 1.
462 See L<SSL_CTX_set_max_pipelines(3)> for further information.
463
464 =item B<-read_buf int>
465
466 The default read buffer size to be used for connections. This will only have an
467 effect if the buffer size is larger than the size that would otherwise be used
468 and pipelining is in use (see L<SSL_CTX_set_default_read_buffer_len(3)> for
469 further information).
470
471 =item B<-bugs>
472
473 There are several known bug in SSL and TLS implementations. Adding this
474 option enables various workarounds.
475
476 =item B<-comp>
477
478 Enables support for SSL/TLS compression.
479 This option was introduced in OpenSSL 1.1.0.
480 TLS compression is not recommended and is off by default as of
481 OpenSSL 1.1.0.
482
483 =item B<-no_comp>
484
485 Disables support for SSL/TLS compression.
486 TLS compression is not recommended and is off by default as of
487 OpenSSL 1.1.0.
488
489 =item B<-brief>
490
491 Only provide a brief summary of connection parameters instead of the
492 normal verbose output.
493
494 =item B<-sigalgs sigalglist>
495
496 Specifies the list of signature algorithms that are sent by the client.
497 The server selects one entry in the list based on its preferences.
498 For example strings, see L<SSL_CTX_set1_sigalgs(3)>
499
500 =item B<-curves curvelist>
501
502 Specifies the list of supported curves to be sent by the client. The curve is
503 ultimately selected by the server. For a list of all curves, use:
504
505     $ openssl ecparam -list_curves
506
507 =item B<-cipher cipherlist>
508
509 This allows the TLSv1.2 and below cipher list sent by the client to be modified.
510 This list will be combined with any TLSv1.3 ciphersuites that have been
511 configured. Although the server determines which ciphersuite is used it should
512 take the first supported cipher in the list sent by the client. See the
513 B<ciphers> command for more information.
514
515 =item B<-ciphersuites val>
516
517 This allows the TLSv1.3 ciphersuites sent by the client to be modified. This
518 list will be combined with any TLSv1.2 and below ciphersuites that have been
519 configured. Although the server determines which cipher suite is used it should
520 take the first supported cipher in the list sent by the client. See the
521 B<ciphers> command for more information. The format for this list is a simple
522 colon (":") separated list of TLSv1.3 ciphersuite names.
523
524 =item B<-starttls protocol>
525
526 Send the protocol-specific message(s) to switch to TLS for communication.
527 B<protocol> is a keyword for the intended protocol.  Currently, the only
528 supported keywords are "smtp", "pop3", "imap", "ftp", "xmpp", "xmpp-server",
529 "irc", "postgres", "mysql", "lmtp", "nntp", "sieve" and "ldap".
530
531 =item B<-xmpphost hostname>
532
533 This option, when used with "-starttls xmpp" or "-starttls xmpp-server",
534 specifies the host for the "to" attribute of the stream element.
535 If this option is not specified, then the host specified with "-connect"
536 will be used.
537
538 This option is an alias of the B<-name> option for "xmpp" and "xmpp-server".
539
540 =item B<-name hostname>
541
542 This option is used to specify hostname information for various protocols
543 used with B<-starttls> option. Currently only "xmpp", "xmpp-server",
544 "smtp" and "lmtp" can utilize this B<-name> option.
545
546 If this option is used with "-starttls xmpp" or "-starttls xmpp-server",
547 if specifies the host for the "to" attribute of the stream element. If this
548 option is not specified, then the host specified with "-connect" will be used.
549
550 If this option is used with "-starttls lmtp" or "-starttls smtp", it specifies
551 the name to use in the "LMTP LHLO" or "SMTP EHLO" message, respectively. If
552 this option is not specified, then "mail.example.com" will be used.
553
554 =item B<-tlsextdebug>
555
556 Print out a hex dump of any TLS extensions received from the server.
557
558 =item B<-no_ticket>
559
560 Disable RFC4507bis session ticket support.
561
562 =item B<-sess_out filename>
563
564 Output SSL session to B<filename>.
565
566 =item B<-sess_in sess.pem>
567
568 Load SSL session from B<filename>. The client will attempt to resume a
569 connection from this session.
570
571 =item B<-engine id>
572
573 Specifying an engine (by its unique B<id> string) will cause B<s_client>
574 to attempt to obtain a functional reference to the specified engine,
575 thus initialising it if needed. The engine will then be set as the default
576 for all available algorithms.
577
578 =item B<-rand file...>
579
580 A file or files containing random data used to seed the random number
581 generator.
582 Multiple files can be specified separated by an OS-dependent character.
583 The separator is B<;> for MS-Windows, B<,> for OpenVMS, and B<:> for
584 all others.
585
586 =item [B<-writerand file>]
587
588 Writes random data to the specified I<file> upon exit.
589 This can be used with a subsequent B<-rand> flag.
590
591 =item B<-serverinfo types>
592
593 A list of comma-separated TLS Extension Types (numbers between 0 and
594 65535).  Each type will be sent as an empty ClientHello TLS Extension.
595 The server's response (if any) will be encoded and displayed as a PEM
596 file.
597
598 =item B<-status>
599
600 Sends a certificate status request to the server (OCSP stapling). The server
601 response (if any) is printed out.
602
603 =item B<-alpn protocols>, B<-nextprotoneg protocols>
604
605 These flags enable the Enable the Application-Layer Protocol Negotiation
606 or Next Protocol Negotiation (NPN) extension, respectively. ALPN is the
607 IETF standard and replaces NPN.
608 The B<protocols> list is a comma-separated list of protocol names that
609 the client should advertise support for. The list should contain the most
610 desirable protocols first.  Protocol names are printable ASCII strings,
611 for example "http/1.1" or "spdy/3".
612 An empty list of protocols is treated specially and will cause the
613 client to advertise support for the TLS extension but disconnect just
614 after receiving ServerHello with a list of server supported protocols.
615 The flag B<-nextprotoneg> cannot be specified if B<-tls1_3> is used.
616
617 =item B<-ct>, B<-noct>
618
619 Use one of these two options to control whether Certificate Transparency (CT)
620 is enabled (B<-ct>) or disabled (B<-noct>).
621 If CT is enabled, signed certificate timestamps (SCTs) will be requested from
622 the server and reported at handshake completion.
623
624 Enabling CT also enables OCSP stapling, as this is one possible delivery method
625 for SCTs.
626
627 =item B<-ctlogfile>
628
629 A file containing a list of known Certificate Transparency logs. See
630 L<SSL_CTX_set_ctlog_list_file(3)> for the expected file format.
631
632 =item B<-keylogfile file>
633
634 Appends TLS secrets to the specified keylog file such that external programs
635 (like Wireshark) can decrypt TLS connections.
636
637 =item B<-early_data file>
638
639 Reads the contents of the specified file and attempts to send it as early data
640 to the server. This will only work with resumed sessions that support early
641 data and when the server accepts the early data.
642
643 =item B<-force_pha>
644
645 For TLSv1.3 only, always send the Post-Handshake Authentication extension,
646 whether or not a certificate has been provided via B<-cert>.
647
648 =item B<[target]>
649
650 Rather than providing B<-connect>, the target hostname and optional port may
651 be provided as a single positional argument after all options. If neither this
652 nor B<-connect> are provided, falls back to attempting to connect to localhost
653 on port 4433.
654
655 =back
656
657 =head1 CONNECTED COMMANDS
658
659 If a connection is established with an SSL server then any data received
660 from the server is displayed and any key presses will be sent to the
661 server. When used interactively (which means neither B<-quiet> nor B<-ign_eof>
662 have been given), the session will be renegotiated if the line begins with an
663 B<R>, and if the line begins with a B<Q> or if end of file is reached, the
664 connection will be closed down.
665
666 =head1 NOTES
667
668 B<s_client> can be used to debug SSL servers. To connect to an SSL HTTP
669 server the command:
670
671  openssl s_client -connect servername:443
672
673 would typically be used (https uses port 443). If the connection succeeds
674 then an HTTP command can be given such as "GET /" to retrieve a web page.
675
676 If the handshake fails then there are several possible causes, if it is
677 nothing obvious like no client certificate then the B<-bugs>,
678 B<-ssl3>, B<-tls1>, B<-no_ssl3>, B<-no_tls1> options can be tried
679 in case it is a buggy server. In particular you should play with these
680 options B<before> submitting a bug report to an OpenSSL mailing list.
681
682 A frequent problem when attempting to get client certificates working
683 is that a web client complains it has no certificates or gives an empty
684 list to choose from. This is normally because the server is not sending
685 the clients certificate authority in its "acceptable CA list" when it
686 requests a certificate. By using B<s_client> the CA list can be viewed
687 and checked. However some servers only request client authentication
688 after a specific URL is requested. To obtain the list in this case it
689 is necessary to use the B<-prexit> option and send an HTTP request
690 for an appropriate page.
691
692 If a certificate is specified on the command line using the B<-cert>
693 option it will not be used unless the server specifically requests
694 a client certificate. Therefor merely including a client certificate
695 on the command line is no guarantee that the certificate works.
696
697 If there are problems verifying a server certificate then the
698 B<-showcerts> option can be used to show the whole chain.
699
700 The B<s_client> utility is a test tool and is designed to continue the
701 handshake after any certificate verification errors. As a result it will
702 accept any certificate chain (trusted or not) sent by the peer. None test
703 applications should B<not> do this as it makes them vulnerable to a MITM
704 attack. This behaviour can be changed by with the B<-verify_return_error>
705 option: any verify errors are then returned aborting the handshake.
706
707 The B<-bind> option may be useful if the server or a firewall requires
708 connections to come from some particular address and or port.
709
710 =head1 BUGS
711
712 Because this program has a lot of options and also because some of the
713 techniques used are rather old, the C source of B<s_client> is rather hard to
714 read and not a model of how things should be done.
715 A typical SSL client program would be much simpler.
716
717 The B<-prexit> option is a bit of a hack. We should really report
718 information whenever a session is renegotiated.
719
720 =head1 SEE ALSO
721
722 L<SSL_CONF_cmd(3)>, L<sess_id(1)>, L<s_server(1)>, L<ciphers(1)>,
723 L<SSL_CTX_set_max_send_fragment(3)>, L<SSL_CTX_set_split_send_fragment(3)>
724 L<SSL_CTX_set_max_pipelines(3)>
725
726 =head1 HISTORY
727
728 The B<-no_alt_chains> option was first added to OpenSSL 1.1.0.
729 The B<-name> option was added in OpenSSL 1.1.1.
730
731 =head1 COPYRIGHT
732
733 Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.
734
735 Licensed under the OpenSSL license (the "License").  You may not use
736 this file except in compliance with the License.  You can obtain a copy
737 in the file LICENSE in the source distribution or at
738 L<https://www.openssl.org/source/license.html>.
739
740 =cut