2012-02-27 11:09:35 -08:00
|
|
|
# TLS (SSL)
|
2010-12-08 13:22:12 -08:00
|
|
|
|
2017-01-22 19:16:21 -08:00
|
|
|
<!--introduced_in=v0.10.0-->
|
|
|
|
|
2016-07-16 00:35:38 +02:00
|
|
|
> Stability: 2 - Stable
|
2012-03-02 15:14:03 -08:00
|
|
|
|
2020-06-22 13:56:08 -04:00
|
|
|
<!-- source_link=lib/tls.js -->
|
|
|
|
|
2022-04-20 10:23:41 +02:00
|
|
|
The `node:tls` module provides an implementation of the Transport Layer Security
|
2016-05-23 12:46:10 -07:00
|
|
|
(TLS) and Secure Socket Layer (SSL) protocols that is built on top of OpenSSL.
|
|
|
|
The module can be accessed using:
|
2010-12-08 13:22:12 -08:00
|
|
|
|
2024-12-13 14:09:28 -03:00
|
|
|
```mjs
|
|
|
|
import tls from 'node:tls';
|
|
|
|
```
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
const tls = require('node:tls');
|
2016-05-23 12:46:10 -07:00
|
|
|
```
|
|
|
|
|
2022-03-05 23:43:29 +01:00
|
|
|
## Determining if crypto support is unavailable
|
|
|
|
|
|
|
|
It is possible for Node.js to be built without including support for the
|
2022-04-20 10:23:41 +02:00
|
|
|
`node:crypto` module. In such cases, attempting to `import` from `tls` or
|
|
|
|
calling `require('node:tls')` will result in an error being thrown.
|
2022-03-05 23:43:29 +01:00
|
|
|
|
|
|
|
When using CommonJS, the error thrown can be caught using try/catch:
|
|
|
|
|
|
|
|
```cjs
|
|
|
|
let tls;
|
|
|
|
try {
|
2022-04-20 10:23:41 +02:00
|
|
|
tls = require('node:tls');
|
2022-03-05 23:43:29 +01:00
|
|
|
} catch (err) {
|
2023-01-01 15:41:28 +09:00
|
|
|
console.error('tls support is disabled!');
|
2022-03-05 23:43:29 +01:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
When using the lexical ESM `import` keyword, the error can only be
|
|
|
|
caught if a handler for `process.on('uncaughtException')` is registered
|
|
|
|
_before_ any attempt to load the module is made (using, for instance,
|
|
|
|
a preload module).
|
|
|
|
|
|
|
|
When using ESM, if there is a chance that the code may be run on a build
|
|
|
|
of Node.js where crypto support is not enabled, consider using the
|
2022-04-09 13:41:30 +02:00
|
|
|
[`import()`][] function instead of the lexical `import` keyword:
|
2022-03-05 23:43:29 +01:00
|
|
|
|
|
|
|
```mjs
|
|
|
|
let tls;
|
|
|
|
try {
|
2022-04-20 10:23:41 +02:00
|
|
|
tls = await import('node:tls');
|
2022-03-05 23:43:29 +01:00
|
|
|
} catch (err) {
|
2023-01-01 15:41:28 +09:00
|
|
|
console.error('tls support is disabled!');
|
2022-03-05 23:43:29 +01:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-06-14 14:49:34 -07:00
|
|
|
## TLS/SSL concepts
|
2010-12-08 13:22:12 -08:00
|
|
|
|
2022-01-24 20:50:37 +01:00
|
|
|
TLS/SSL is a set of protocols that rely on a public key infrastructure (PKI) to
|
|
|
|
enable secure communication between a client and a server. For most common
|
|
|
|
cases, each server must have a private key.
|
2016-05-23 12:46:10 -07:00
|
|
|
|
|
|
|
Private keys can be generated in multiple ways. The example below illustrates
|
|
|
|
use of the OpenSSL command-line interface to generate a 2048-bit RSA private
|
|
|
|
key:
|
2010-12-08 13:22:12 -08:00
|
|
|
|
2020-05-22 02:33:40 -04:00
|
|
|
```bash
|
2016-01-17 18:39:07 +01:00
|
|
|
openssl genrsa -out ryans-key.pem 2048
|
|
|
|
```
|
2010-12-08 13:22:12 -08:00
|
|
|
|
2021-10-10 21:55:04 -07:00
|
|
|
With TLS/SSL, all servers (and some clients) must have a _certificate_.
|
|
|
|
Certificates are _public keys_ that correspond to a private key, and that are
|
2016-05-23 12:46:10 -07:00
|
|
|
digitally signed either by a Certificate Authority or by the owner of the
|
|
|
|
private key (such certificates are referred to as "self-signed"). The first
|
2021-10-10 21:55:04 -07:00
|
|
|
step to obtaining a certificate is to create a _Certificate Signing Request_
|
2016-05-23 12:46:10 -07:00
|
|
|
(CSR) file.
|
|
|
|
|
|
|
|
The OpenSSL command-line interface can be used to generate a CSR for a private
|
|
|
|
key:
|
2010-12-08 13:22:12 -08:00
|
|
|
|
2020-05-22 02:33:40 -04:00
|
|
|
```bash
|
2016-01-17 18:39:07 +01:00
|
|
|
openssl req -new -sha256 -key ryans-key.pem -out ryans-csr.pem
|
|
|
|
```
|
2010-12-08 13:22:12 -08:00
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
Once the CSR file is generated, it can either be sent to a Certificate
|
|
|
|
Authority for signing or used to generate a self-signed certificate.
|
|
|
|
|
|
|
|
Creating a self-signed certificate using the OpenSSL command-line interface
|
|
|
|
is illustrated in the example below:
|
2010-12-08 13:22:12 -08:00
|
|
|
|
2020-05-22 02:33:40 -04:00
|
|
|
```bash
|
2016-01-17 18:39:07 +01:00
|
|
|
openssl x509 -req -in ryans-csr.pem -signkey ryans-key.pem -out ryans-cert.pem
|
|
|
|
```
|
2010-12-08 13:22:12 -08:00
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
Once the certificate is generated, it can be used to generate a `.pfx` or
|
|
|
|
`.p12` file:
|
2015-02-15 18:43:36 +01:00
|
|
|
|
2020-05-22 02:33:40 -04:00
|
|
|
```bash
|
2016-05-23 12:46:10 -07:00
|
|
|
openssl pkcs12 -export -in ryans-cert.pem -inkey ryans-key.pem \
|
|
|
|
-certfile ca-cert.pem -out ryans.pfx
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
2010-12-08 13:22:12 -08:00
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
Where:
|
|
|
|
|
|
|
|
* `in`: is the signed certificate
|
|
|
|
* `inkey`: is the associated private key
|
|
|
|
* `certfile`: is a concatenation of all Certificate Authority (CA) certs into
|
2021-10-10 21:55:04 -07:00
|
|
|
a single file, e.g. `cat ca1-cert.pem ca2-cert.pem > ca-cert.pem`
|
2016-05-23 12:46:10 -07:00
|
|
|
|
2020-06-14 14:49:34 -07:00
|
|
|
### Perfect forward secrecy
|
2016-05-23 12:46:10 -07:00
|
|
|
|
|
|
|
<!-- type=misc -->
|
|
|
|
|
2020-06-14 14:49:34 -07:00
|
|
|
The term _[forward secrecy][]_ or _perfect forward secrecy_ describes a feature
|
2019-10-02 00:31:57 -04:00
|
|
|
of key-agreement (i.e., key-exchange) methods. That is, the server and client
|
|
|
|
keys are used to negotiate new temporary keys that are used specifically and
|
|
|
|
only for the current communication session. Practically, this means that even
|
|
|
|
if the server's private key is compromised, communication can only be decrypted
|
|
|
|
by eavesdroppers if the attacker manages to obtain the key-pair specifically
|
2016-05-23 12:46:10 -07:00
|
|
|
generated for the session.
|
|
|
|
|
2020-06-14 14:49:34 -07:00
|
|
|
Perfect forward secrecy is achieved by randomly generating a key pair for
|
2016-05-23 12:46:10 -07:00
|
|
|
key-agreement on every TLS/SSL handshake (in contrast to using the same key for
|
|
|
|
all sessions). Methods implementing this technique are called "ephemeral".
|
|
|
|
|
2020-06-14 14:49:34 -07:00
|
|
|
Currently two methods are commonly used to achieve perfect forward secrecy (note
|
2016-05-23 12:46:10 -07:00
|
|
|
the character "E" appended to the traditional abbreviations):
|
|
|
|
|
2020-07-18 15:00:36 +01:00
|
|
|
* [ECDHE][]: An ephemeral version of the Elliptic Curve Diffie-Hellman
|
2016-05-23 12:46:10 -07:00
|
|
|
key-agreement protocol.
|
2023-03-12 19:35:55 +01:00
|
|
|
* [DHE][]: An ephemeral version of the Diffie-Hellman key-agreement protocol.
|
2016-05-23 12:46:10 -07:00
|
|
|
|
2023-03-12 19:35:55 +01:00
|
|
|
Perfect forward secrecy using ECDHE is enabled by default. The `ecdhCurve`
|
|
|
|
option can be used when creating a TLS server to customize the list of supported
|
|
|
|
ECDH curves to use. See [`tls.createServer()`][] for more info.
|
2012-05-14 01:08:23 +05:30
|
|
|
|
2023-03-12 19:35:55 +01:00
|
|
|
DHE is disabled by default but can be enabled alongside ECDHE by setting the
|
|
|
|
`dhparam` option to `'auto'`. Custom DHE parameters are also supported but
|
|
|
|
discouraged in favor of automatically selected, well-known parameters.
|
2012-05-14 01:08:23 +05:30
|
|
|
|
2023-01-08 14:12:35 +01:00
|
|
|
Perfect forward secrecy was optional up to TLSv1.2. As of TLSv1.3, (EC)DHE is
|
|
|
|
always used (with the exception of PSK-only connections).
|
tls: support TLSv1.3
This introduces TLS1.3 support and makes it the default max protocol,
but also supports CLI/NODE_OPTIONS switches to disable it if necessary.
TLS1.3 is a major update to the TLS protocol, with many security
enhancements. It should be preferred over TLS1.2 whenever possible.
TLS1.3 is different enough that even though the OpenSSL APIs are
technically API/ABI compatible, that when TLS1.3 is negotiated, the
timing of protocol records and of callbacks broke assumptions hard-coded
into the 'tls' module.
This change introduces no API incompatibilities when TLS1.2 is
negotiated. It is the intention that it be backported to current and LTS
release lines with the default maximum TLS protocol reset to 'TLSv1.2'.
This will allow users of those lines to explicitly enable TLS1.3 if they
want.
API incompatibilities between TLS1.2 and TLS1.3 are:
- Renegotiation is not supported by TLS1.3 protocol, attempts to call
`.renegotiate()` will always fail.
- Compiling against a system OpenSSL lower than 1.1.1 is no longer
supported (OpenSSL-1.1.0 used to be supported with configure flags).
- Variations of `conn.write('data'); conn.destroy()` have undefined
behaviour according to the streams API. They may or may not send the
'data', and may or may not cause a ERR_STREAM_DESTROYED error to be
emitted. This has always been true, but conditions under which the write
suceeds is slightly but observably different when TLS1.3 is negotiated
vs when TLS1.2 or below is negotiated.
- If TLS1.3 is negotiated, and a server calls `conn.end()` in its
'secureConnection' listener without any data being written, the client
will not receive session tickets (no 'session' events will be emitted,
and `conn.getSession()` will never return a resumable session).
- The return value of `conn.getSession()` API may not return a resumable
session if called right after the handshake. The effect will be that
clients using the legacy `getSession()` API will resume sessions if
TLS1.2 is negotiated, but will do full handshakes if TLS1.3 is
negotiated. See https://github.com/nodejs/node/pull/25831 for more
information.
PR-URL: https://github.com/nodejs/node/pull/26209
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
2018-11-28 17:58:08 -08:00
|
|
|
|
2018-03-17 05:13:47 +01:00
|
|
|
### ALPN and SNI
|
2015-11-05 15:04:26 -05:00
|
|
|
|
|
|
|
<!-- type=misc -->
|
|
|
|
|
2018-03-17 05:13:47 +01:00
|
|
|
ALPN (Application-Layer Protocol Negotiation Extension) and
|
|
|
|
SNI (Server Name Indication) are TLS handshake extensions:
|
2015-11-05 15:04:26 -05:00
|
|
|
|
2019-10-23 21:28:42 -07:00
|
|
|
* ALPN: Allows the use of one TLS server for multiple protocols (HTTP, HTTP/2)
|
|
|
|
* SNI: Allows the use of one TLS server for multiple hostnames with different
|
2022-01-16 04:51:23 +01:00
|
|
|
certificates.
|
2016-05-23 12:46:10 -07:00
|
|
|
|
2018-10-29 10:38:43 +02:00
|
|
|
### Pre-shared keys
|
|
|
|
|
|
|
|
<!-- type=misc -->
|
|
|
|
|
|
|
|
TLS-PSK support is available as an alternative to normal certificate-based
|
|
|
|
authentication. It uses a pre-shared key instead of certificates to
|
|
|
|
authenticate a TLS connection, providing mutual authentication.
|
|
|
|
TLS-PSK and public key infrastructure are not mutually exclusive. Clients and
|
|
|
|
servers can accommodate both, choosing either of them during the normal cipher
|
|
|
|
negotiation step.
|
|
|
|
|
|
|
|
TLS-PSK is only a good choice where means exist to securely share a
|
2022-01-24 20:50:37 +01:00
|
|
|
key with every connecting machine, so it does not replace the public key
|
|
|
|
infrastructure (PKI) for the majority of TLS uses.
|
2018-10-29 10:38:43 +02:00
|
|
|
The TLS-PSK implementation in OpenSSL has seen many security flaws in
|
|
|
|
recent years, mostly because it is used only by a minority of applications.
|
|
|
|
Please consider all alternative solutions before switching to PSK ciphers.
|
|
|
|
Upon generating PSK it is of critical importance to use sufficient entropy as
|
|
|
|
discussed in [RFC 4086][]. Deriving a shared secret from a password or other
|
|
|
|
low-entropy sources is not secure.
|
|
|
|
|
|
|
|
PSK ciphers are disabled by default, and using TLS-PSK thus requires explicitly
|
|
|
|
specifying a cipher suite with the `ciphers` option. The list of available
|
|
|
|
ciphers can be retrieved via `openssl ciphers -v 'PSK'`. All TLS 1.3
|
2023-05-25 00:22:59 +02:00
|
|
|
ciphers are eligible for PSK and can be retrieved via
|
|
|
|
`openssl ciphers -v -s -tls1_3 -psk`.
|
2024-05-25 20:33:34 +02:00
|
|
|
On the client connection, a custom `checkServerIdentity` should be passed
|
|
|
|
because the default one will fail in the absence of a certificate.
|
2018-10-29 10:38:43 +02:00
|
|
|
|
|
|
|
According to the [RFC 4279][], PSK identities up to 128 bytes in length and
|
|
|
|
PSKs up to 64 bytes in length must be supported. As of OpenSSL 1.1.0
|
|
|
|
maximum identity size is 128 bytes, and maximum PSK length is 256 bytes.
|
|
|
|
|
|
|
|
The current implementation doesn't support asynchronous PSK callbacks due to the
|
|
|
|
limitations of the underlying OpenSSL API.
|
|
|
|
|
2024-05-25 20:33:34 +02:00
|
|
|
To use TLS-PSK, client and server must specify the `pskCallback` option,
|
|
|
|
a function that returns the PSK to use (which must be compatible with
|
|
|
|
the selected cipher's digest).
|
|
|
|
|
|
|
|
It will be called first on the client:
|
|
|
|
|
|
|
|
* hint: {string} optional message sent from the server to help the client
|
|
|
|
decide which identity to use during negotiation.
|
|
|
|
Always `null` if TLS 1.3 is used.
|
|
|
|
* Returns: {Object} in the form
|
|
|
|
`{ psk: <Buffer|TypedArray|DataView>, identity: <string> }` or `null`.
|
|
|
|
|
|
|
|
Then on the server:
|
|
|
|
|
|
|
|
* socket: {tls.TLSSocket} the server socket instance, equivalent to `this`.
|
|
|
|
* identity: {string} identity parameter sent from the client.
|
|
|
|
* Returns: {Buffer|TypedArray|DataView} the PSK (or `null`).
|
|
|
|
|
|
|
|
A return value of `null` stops the negotiation process and sends an
|
|
|
|
`unknown_psk_identity` alert message to the other party.
|
|
|
|
If the server wishes to hide the fact that the PSK identity was not known,
|
|
|
|
the callback must provide some random data as `psk` to make the connection
|
|
|
|
fail with `decrypt_error` before negotiation is finished.
|
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
### Client-initiated renegotiation attack mitigation
|
2012-02-27 11:09:35 -08:00
|
|
|
|
|
|
|
<!-- type=misc -->
|
2010-12-08 13:22:12 -08:00
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
The TLS protocol allows clients to renegotiate certain aspects of the TLS
|
|
|
|
session. Unfortunately, session renegotiation requires a disproportionate amount
|
|
|
|
of server-side resources, making it a potential vector for denial-of-service
|
2012-02-15 19:26:43 +01:00
|
|
|
attacks.
|
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
To mitigate the risk, renegotiation is limited to three times every ten minutes.
|
|
|
|
An `'error'` event is emitted on the [`tls.TLSSocket`][] instance when this
|
|
|
|
threshold is exceeded. The limits are configurable:
|
2012-02-15 19:26:43 +01:00
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
* `tls.CLIENT_RENEG_LIMIT` {number} Specifies the number of renegotiation
|
2018-04-02 04:44:32 +03:00
|
|
|
requests. **Default:** `3`.
|
2016-05-23 12:46:10 -07:00
|
|
|
* `tls.CLIENT_RENEG_WINDOW` {number} Specifies the time renegotiation window
|
2018-04-02 04:44:32 +03:00
|
|
|
in seconds. **Default:** `600` (10 minutes).
|
2012-02-15 19:26:43 +01:00
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
The default renegotiation limits should not be modified without a full
|
2016-05-23 12:46:10 -07:00
|
|
|
understanding of the implications and risks.
|
2012-02-15 19:26:43 +01:00
|
|
|
|
tls: support TLSv1.3
This introduces TLS1.3 support and makes it the default max protocol,
but also supports CLI/NODE_OPTIONS switches to disable it if necessary.
TLS1.3 is a major update to the TLS protocol, with many security
enhancements. It should be preferred over TLS1.2 whenever possible.
TLS1.3 is different enough that even though the OpenSSL APIs are
technically API/ABI compatible, that when TLS1.3 is negotiated, the
timing of protocol records and of callbacks broke assumptions hard-coded
into the 'tls' module.
This change introduces no API incompatibilities when TLS1.2 is
negotiated. It is the intention that it be backported to current and LTS
release lines with the default maximum TLS protocol reset to 'TLSv1.2'.
This will allow users of those lines to explicitly enable TLS1.3 if they
want.
API incompatibilities between TLS1.2 and TLS1.3 are:
- Renegotiation is not supported by TLS1.3 protocol, attempts to call
`.renegotiate()` will always fail.
- Compiling against a system OpenSSL lower than 1.1.1 is no longer
supported (OpenSSL-1.1.0 used to be supported with configure flags).
- Variations of `conn.write('data'); conn.destroy()` have undefined
behaviour according to the streams API. They may or may not send the
'data', and may or may not cause a ERR_STREAM_DESTROYED error to be
emitted. This has always been true, but conditions under which the write
suceeds is slightly but observably different when TLS1.3 is negotiated
vs when TLS1.2 or below is negotiated.
- If TLS1.3 is negotiated, and a server calls `conn.end()` in its
'secureConnection' listener without any data being written, the client
will not receive session tickets (no 'session' events will be emitted,
and `conn.getSession()` will never return a resumable session).
- The return value of `conn.getSession()` API may not return a resumable
session if called right after the handshake. The effect will be that
clients using the legacy `getSession()` API will resume sessions if
TLS1.2 is negotiated, but will do full handshakes if TLS1.3 is
negotiated. See https://github.com/nodejs/node/pull/25831 for more
information.
PR-URL: https://github.com/nodejs/node/pull/26209
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
2018-11-28 17:58:08 -08:00
|
|
|
TLSv1.3 does not support renegotiation.
|
|
|
|
|
2020-06-14 14:49:34 -07:00
|
|
|
### Session resumption
|
2018-12-21 14:16:19 -08:00
|
|
|
|
|
|
|
Establishing a TLS session can be relatively slow. The process can be sped
|
|
|
|
up by saving and later reusing the session state. There are several mechanisms
|
|
|
|
to do so, discussed here from oldest to newest (and preferred).
|
|
|
|
|
2020-06-14 14:49:34 -07:00
|
|
|
#### Session identifiers
|
|
|
|
|
|
|
|
Servers generate a unique ID for new connections and
|
2018-12-21 14:16:19 -08:00
|
|
|
send it to the client. Clients and servers save the session state. When
|
|
|
|
reconnecting, clients send the ID of their saved session state and if the server
|
|
|
|
also has the state for that ID, it can agree to use it. Otherwise, the server
|
|
|
|
will create a new session. See [RFC 2246][] for more information, page 23 and
|
2021-10-10 21:55:04 -07:00
|
|
|
30\.
|
2018-12-21 14:16:19 -08:00
|
|
|
|
|
|
|
Resumption using session identifiers is supported by most web browsers when
|
|
|
|
making HTTPS requests.
|
|
|
|
|
2019-01-30 12:18:04 -08:00
|
|
|
For Node.js, clients wait for the [`'session'`][] event to get the session data,
|
|
|
|
and provide the data to the `session` option of a subsequent [`tls.connect()`][]
|
|
|
|
to reuse the session. Servers must
|
2018-12-21 14:16:19 -08:00
|
|
|
implement handlers for the [`'newSession'`][] and [`'resumeSession'`][] events
|
|
|
|
to save and restore the session data using the session ID as the lookup key to
|
|
|
|
reuse sessions. To reuse sessions across load balancers or cluster workers,
|
|
|
|
servers must use a shared session cache (such as Redis) in their session
|
|
|
|
handlers.
|
|
|
|
|
2020-06-14 14:49:34 -07:00
|
|
|
#### Session tickets
|
|
|
|
|
|
|
|
The servers encrypt the entire session state and send it
|
2018-12-21 14:16:19 -08:00
|
|
|
to the client as a "ticket". When reconnecting, the state is sent to the server
|
2022-04-09 13:41:37 +02:00
|
|
|
in the initial connection. This mechanism avoids the need for a server-side
|
2018-12-21 14:16:19 -08:00
|
|
|
session cache. If the server doesn't use the ticket, for any reason (failure
|
|
|
|
to decrypt it, it's too old, etc.), it will create a new session and send a new
|
|
|
|
ticket. See [RFC 5077][] for more information.
|
|
|
|
|
|
|
|
Resumption using session tickets is becoming commonly supported by many web
|
|
|
|
browsers when making HTTPS requests.
|
|
|
|
|
|
|
|
For Node.js, clients use the same APIs for resumption with session identifiers
|
|
|
|
as for resumption with session tickets. For debugging, if
|
|
|
|
[`tls.TLSSocket.getTLSTicket()`][] returns a value, the session data contains a
|
|
|
|
ticket, otherwise it contains client-side session state.
|
|
|
|
|
tls: support TLSv1.3
This introduces TLS1.3 support and makes it the default max protocol,
but also supports CLI/NODE_OPTIONS switches to disable it if necessary.
TLS1.3 is a major update to the TLS protocol, with many security
enhancements. It should be preferred over TLS1.2 whenever possible.
TLS1.3 is different enough that even though the OpenSSL APIs are
technically API/ABI compatible, that when TLS1.3 is negotiated, the
timing of protocol records and of callbacks broke assumptions hard-coded
into the 'tls' module.
This change introduces no API incompatibilities when TLS1.2 is
negotiated. It is the intention that it be backported to current and LTS
release lines with the default maximum TLS protocol reset to 'TLSv1.2'.
This will allow users of those lines to explicitly enable TLS1.3 if they
want.
API incompatibilities between TLS1.2 and TLS1.3 are:
- Renegotiation is not supported by TLS1.3 protocol, attempts to call
`.renegotiate()` will always fail.
- Compiling against a system OpenSSL lower than 1.1.1 is no longer
supported (OpenSSL-1.1.0 used to be supported with configure flags).
- Variations of `conn.write('data'); conn.destroy()` have undefined
behaviour according to the streams API. They may or may not send the
'data', and may or may not cause a ERR_STREAM_DESTROYED error to be
emitted. This has always been true, but conditions under which the write
suceeds is slightly but observably different when TLS1.3 is negotiated
vs when TLS1.2 or below is negotiated.
- If TLS1.3 is negotiated, and a server calls `conn.end()` in its
'secureConnection' listener without any data being written, the client
will not receive session tickets (no 'session' events will be emitted,
and `conn.getSession()` will never return a resumable session).
- The return value of `conn.getSession()` API may not return a resumable
session if called right after the handshake. The effect will be that
clients using the legacy `getSession()` API will resume sessions if
TLS1.2 is negotiated, but will do full handshakes if TLS1.3 is
negotiated. See https://github.com/nodejs/node/pull/25831 for more
information.
PR-URL: https://github.com/nodejs/node/pull/26209
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
2018-11-28 17:58:08 -08:00
|
|
|
With TLSv1.3, be aware that multiple tickets may be sent by the server,
|
|
|
|
resulting in multiple `'session'` events, see [`'session'`][] for more
|
|
|
|
information.
|
|
|
|
|
2018-12-21 14:16:19 -08:00
|
|
|
Single process servers need no specific implementation to use session tickets.
|
|
|
|
To use session tickets across server restarts or load balancers, servers must
|
|
|
|
all have the same ticket keys. There are three 16-byte keys internally, but the
|
|
|
|
tls API exposes them as a single 48-byte buffer for convenience.
|
|
|
|
|
2022-03-02 23:55:53 +09:00
|
|
|
It's possible to get the ticket keys by calling [`server.getTicketKeys()`][] on
|
2018-12-21 14:16:19 -08:00
|
|
|
one server instance and then distribute them, but it is more reasonable to
|
|
|
|
securely generate 48 bytes of secure random data and set them with the
|
|
|
|
`ticketKeys` option of [`tls.createServer()`][]. The keys should be regularly
|
|
|
|
regenerated and server's keys can be reset with
|
|
|
|
[`server.setTicketKeys()`][].
|
|
|
|
|
2021-10-10 21:55:04 -07:00
|
|
|
Session ticket keys are cryptographic keys, and they _**must be stored
|
|
|
|
securely**_. With TLS 1.2 and below, if they are compromised all sessions that
|
2018-12-21 14:16:19 -08:00
|
|
|
used tickets encrypted with them can be decrypted. They should not be stored
|
|
|
|
on disk, and they should be regenerated regularly.
|
|
|
|
|
|
|
|
If clients advertise support for tickets, the server will send them. The
|
|
|
|
server can disable tickets by supplying
|
2022-04-20 10:23:41 +02:00
|
|
|
`require('node:constants').SSL_OP_NO_TICKET` in `secureOptions`.
|
2018-12-21 14:16:19 -08:00
|
|
|
|
|
|
|
Both session identifiers and session tickets timeout, causing the server to
|
|
|
|
create new sessions. The timeout can be configured with the `sessionTimeout`
|
|
|
|
option of [`tls.createServer()`][].
|
|
|
|
|
|
|
|
For all the mechanisms, when resumption fails, servers will create new sessions.
|
|
|
|
Since failing to resume the session does not cause TLS/HTTPS connection
|
|
|
|
failures, it is easy to not notice unnecessarily poor TLS performance. The
|
|
|
|
OpenSSL CLI can be used to verify that servers are resuming sessions. Use the
|
|
|
|
`-reconnect` option to `openssl s_client`, for example:
|
|
|
|
|
2023-05-20 00:14:03 +02:00
|
|
|
```bash
|
|
|
|
openssl s_client -connect localhost:443 -reconnect
|
2018-12-21 14:16:19 -08:00
|
|
|
```
|
|
|
|
|
|
|
|
Read through the debug output. The first connection should say "New", for
|
|
|
|
example:
|
|
|
|
|
|
|
|
```text
|
|
|
|
New, TLSv1.2, Cipher is ECDHE-RSA-AES128-GCM-SHA256
|
|
|
|
```
|
|
|
|
|
|
|
|
Subsequent connections should say "Reused", for example:
|
|
|
|
|
|
|
|
```text
|
|
|
|
Reused, TLSv1.2, Cipher is ECDHE-RSA-AES128-GCM-SHA256
|
|
|
|
```
|
|
|
|
|
2020-06-14 14:49:34 -07:00
|
|
|
## Modifying the default TLS cipher suite
|
2015-08-17 15:51:51 -07:00
|
|
|
|
2020-06-03 12:56:58 +02:00
|
|
|
Node.js is built with a default suite of enabled and disabled TLS ciphers. This
|
|
|
|
default cipher list can be configured when building Node.js to allow
|
|
|
|
distributions to provide their own default list.
|
2015-08-17 15:51:51 -07:00
|
|
|
|
2020-06-03 12:56:58 +02:00
|
|
|
The following command can be used to show the default cipher suite:
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2020-06-03 12:56:58 +02:00
|
|
|
```console
|
|
|
|
node -p crypto.constants.defaultCoreCipherList | tr ':' '\n'
|
|
|
|
TLS_AES_256_GCM_SHA384
|
|
|
|
TLS_CHACHA20_POLY1305_SHA256
|
|
|
|
TLS_AES_128_GCM_SHA256
|
|
|
|
ECDHE-RSA-AES128-GCM-SHA256
|
|
|
|
ECDHE-ECDSA-AES128-GCM-SHA256
|
|
|
|
ECDHE-RSA-AES256-GCM-SHA384
|
|
|
|
ECDHE-ECDSA-AES256-GCM-SHA384
|
|
|
|
DHE-RSA-AES128-GCM-SHA256
|
|
|
|
ECDHE-RSA-AES128-SHA256
|
|
|
|
DHE-RSA-AES128-SHA256
|
|
|
|
ECDHE-RSA-AES256-SHA384
|
|
|
|
DHE-RSA-AES256-SHA384
|
|
|
|
ECDHE-RSA-AES256-SHA256
|
|
|
|
DHE-RSA-AES256-SHA256
|
|
|
|
HIGH
|
|
|
|
!aNULL
|
|
|
|
!eNULL
|
|
|
|
!EXPORT
|
|
|
|
!DES
|
|
|
|
!RC4
|
|
|
|
!MD5
|
|
|
|
!PSK
|
|
|
|
!SRP
|
2016-01-17 18:39:07 +01:00
|
|
|
!CAMELLIA
|
|
|
|
```
|
2015-08-17 15:51:51 -07:00
|
|
|
|
2020-09-14 17:28:27 -07:00
|
|
|
This default can be replaced entirely using the [`--tls-cipher-list`][]
|
|
|
|
command-line switch (directly, or via the [`NODE_OPTIONS`][] environment
|
|
|
|
variable). For instance, the following makes `ECDHE-RSA-AES128-GCM-SHA256:!RC4`
|
|
|
|
the default TLS cipher suite:
|
2015-08-17 15:51:51 -07:00
|
|
|
|
2020-05-22 02:33:40 -04:00
|
|
|
```bash
|
2020-06-03 13:20:48 +02:00
|
|
|
node --tls-cipher-list='ECDHE-RSA-AES128-GCM-SHA256:!RC4' server.js
|
2018-12-21 08:25:17 -08:00
|
|
|
|
2020-06-03 13:20:48 +02:00
|
|
|
export NODE_OPTIONS=--tls-cipher-list='ECDHE-RSA-AES128-GCM-SHA256:!RC4'
|
2018-12-21 08:25:17 -08:00
|
|
|
node server.js
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
2015-08-17 15:51:51 -07:00
|
|
|
|
2023-02-23 16:34:36 +00:00
|
|
|
To verify, use the following command to show the set cipher list, note the
|
|
|
|
difference between `defaultCoreCipherList` and `defaultCipherList`:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
node --tls-cipher-list='ECDHE-RSA-AES128-GCM-SHA256:!RC4' -p crypto.constants.defaultCipherList | tr ':' '\n'
|
|
|
|
ECDHE-RSA-AES128-GCM-SHA256
|
|
|
|
!RC4
|
|
|
|
```
|
|
|
|
|
|
|
|
i.e. the `defaultCoreCipherList` list is set at compilation time and the
|
|
|
|
`defaultCipherList` is set at runtime.
|
|
|
|
|
|
|
|
To modify the default cipher suites from within the runtime, modify the
|
|
|
|
`tls.DEFAULT_CIPHERS` variable, this must be performed before listening on any
|
|
|
|
sockets, it will not affect sockets already opened. For example:
|
|
|
|
|
|
|
|
```js
|
|
|
|
// Remove Obsolete CBC Ciphers and RSA Key Exchange based Ciphers as they don't provide Forward Secrecy
|
|
|
|
tls.DEFAULT_CIPHERS +=
|
|
|
|
':!ECDHE-RSA-AES128-SHA:!ECDHE-RSA-AES128-SHA256:!ECDHE-RSA-AES256-SHA:!ECDHE-RSA-AES256-SHA384' +
|
|
|
|
':!ECDHE-ECDSA-AES128-SHA:!ECDHE-ECDSA-AES128-SHA256:!ECDHE-ECDSA-AES256-SHA:!ECDHE-ECDSA-AES256-SHA384' +
|
|
|
|
':!kRSA';
|
|
|
|
```
|
|
|
|
|
2016-11-23 14:14:34 -08:00
|
|
|
The default can also be replaced on a per client or server basis using the
|
|
|
|
`ciphers` option from [`tls.createSecureContext()`][], which is also available
|
2019-10-02 00:31:57 -04:00
|
|
|
in [`tls.createServer()`][], [`tls.connect()`][], and when creating new
|
|
|
|
[`tls.TLSSocket`][]s.
|
2016-11-23 14:14:34 -08:00
|
|
|
|
tls: support TLSv1.3
This introduces TLS1.3 support and makes it the default max protocol,
but also supports CLI/NODE_OPTIONS switches to disable it if necessary.
TLS1.3 is a major update to the TLS protocol, with many security
enhancements. It should be preferred over TLS1.2 whenever possible.
TLS1.3 is different enough that even though the OpenSSL APIs are
technically API/ABI compatible, that when TLS1.3 is negotiated, the
timing of protocol records and of callbacks broke assumptions hard-coded
into the 'tls' module.
This change introduces no API incompatibilities when TLS1.2 is
negotiated. It is the intention that it be backported to current and LTS
release lines with the default maximum TLS protocol reset to 'TLSv1.2'.
This will allow users of those lines to explicitly enable TLS1.3 if they
want.
API incompatibilities between TLS1.2 and TLS1.3 are:
- Renegotiation is not supported by TLS1.3 protocol, attempts to call
`.renegotiate()` will always fail.
- Compiling against a system OpenSSL lower than 1.1.1 is no longer
supported (OpenSSL-1.1.0 used to be supported with configure flags).
- Variations of `conn.write('data'); conn.destroy()` have undefined
behaviour according to the streams API. They may or may not send the
'data', and may or may not cause a ERR_STREAM_DESTROYED error to be
emitted. This has always been true, but conditions under which the write
suceeds is slightly but observably different when TLS1.3 is negotiated
vs when TLS1.2 or below is negotiated.
- If TLS1.3 is negotiated, and a server calls `conn.end()` in its
'secureConnection' listener without any data being written, the client
will not receive session tickets (no 'session' events will be emitted,
and `conn.getSession()` will never return a resumable session).
- The return value of `conn.getSession()` API may not return a resumable
session if called right after the handshake. The effect will be that
clients using the legacy `getSession()` API will resume sessions if
TLS1.2 is negotiated, but will do full handshakes if TLS1.3 is
negotiated. See https://github.com/nodejs/node/pull/25831 for more
information.
PR-URL: https://github.com/nodejs/node/pull/26209
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
2018-11-28 17:58:08 -08:00
|
|
|
The ciphers list can contain a mixture of TLSv1.3 cipher suite names, the ones
|
|
|
|
that start with `'TLS_'`, and specifications for TLSv1.2 and below cipher
|
2020-06-20 16:46:33 -07:00
|
|
|
suites. The TLSv1.2 ciphers support a legacy specification format, consult
|
tls: support TLSv1.3
This introduces TLS1.3 support and makes it the default max protocol,
but also supports CLI/NODE_OPTIONS switches to disable it if necessary.
TLS1.3 is a major update to the TLS protocol, with many security
enhancements. It should be preferred over TLS1.2 whenever possible.
TLS1.3 is different enough that even though the OpenSSL APIs are
technically API/ABI compatible, that when TLS1.3 is negotiated, the
timing of protocol records and of callbacks broke assumptions hard-coded
into the 'tls' module.
This change introduces no API incompatibilities when TLS1.2 is
negotiated. It is the intention that it be backported to current and LTS
release lines with the default maximum TLS protocol reset to 'TLSv1.2'.
This will allow users of those lines to explicitly enable TLS1.3 if they
want.
API incompatibilities between TLS1.2 and TLS1.3 are:
- Renegotiation is not supported by TLS1.3 protocol, attempts to call
`.renegotiate()` will always fail.
- Compiling against a system OpenSSL lower than 1.1.1 is no longer
supported (OpenSSL-1.1.0 used to be supported with configure flags).
- Variations of `conn.write('data'); conn.destroy()` have undefined
behaviour according to the streams API. They may or may not send the
'data', and may or may not cause a ERR_STREAM_DESTROYED error to be
emitted. This has always been true, but conditions under which the write
suceeds is slightly but observably different when TLS1.3 is negotiated
vs when TLS1.2 or below is negotiated.
- If TLS1.3 is negotiated, and a server calls `conn.end()` in its
'secureConnection' listener without any data being written, the client
will not receive session tickets (no 'session' events will be emitted,
and `conn.getSession()` will never return a resumable session).
- The return value of `conn.getSession()` API may not return a resumable
session if called right after the handshake. The effect will be that
clients using the legacy `getSession()` API will resume sessions if
TLS1.2 is negotiated, but will do full handshakes if TLS1.3 is
negotiated. See https://github.com/nodejs/node/pull/25831 for more
information.
PR-URL: https://github.com/nodejs/node/pull/26209
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
2018-11-28 17:58:08 -08:00
|
|
|
the OpenSSL [cipher list format][] documentation for details, but those
|
2021-10-10 21:55:04 -07:00
|
|
|
specifications do _not_ apply to TLSv1.3 ciphers. The TLSv1.3 suites can only
|
tls: support TLSv1.3
This introduces TLS1.3 support and makes it the default max protocol,
but also supports CLI/NODE_OPTIONS switches to disable it if necessary.
TLS1.3 is a major update to the TLS protocol, with many security
enhancements. It should be preferred over TLS1.2 whenever possible.
TLS1.3 is different enough that even though the OpenSSL APIs are
technically API/ABI compatible, that when TLS1.3 is negotiated, the
timing of protocol records and of callbacks broke assumptions hard-coded
into the 'tls' module.
This change introduces no API incompatibilities when TLS1.2 is
negotiated. It is the intention that it be backported to current and LTS
release lines with the default maximum TLS protocol reset to 'TLSv1.2'.
This will allow users of those lines to explicitly enable TLS1.3 if they
want.
API incompatibilities between TLS1.2 and TLS1.3 are:
- Renegotiation is not supported by TLS1.3 protocol, attempts to call
`.renegotiate()` will always fail.
- Compiling against a system OpenSSL lower than 1.1.1 is no longer
supported (OpenSSL-1.1.0 used to be supported with configure flags).
- Variations of `conn.write('data'); conn.destroy()` have undefined
behaviour according to the streams API. They may or may not send the
'data', and may or may not cause a ERR_STREAM_DESTROYED error to be
emitted. This has always been true, but conditions under which the write
suceeds is slightly but observably different when TLS1.3 is negotiated
vs when TLS1.2 or below is negotiated.
- If TLS1.3 is negotiated, and a server calls `conn.end()` in its
'secureConnection' listener without any data being written, the client
will not receive session tickets (no 'session' events will be emitted,
and `conn.getSession()` will never return a resumable session).
- The return value of `conn.getSession()` API may not return a resumable
session if called right after the handshake. The effect will be that
clients using the legacy `getSession()` API will resume sessions if
TLS1.2 is negotiated, but will do full handshakes if TLS1.3 is
negotiated. See https://github.com/nodejs/node/pull/25831 for more
information.
PR-URL: https://github.com/nodejs/node/pull/26209
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
2018-11-28 17:58:08 -08:00
|
|
|
be enabled by including their full name in the cipher list. They cannot, for
|
|
|
|
example, be enabled or disabled by using the legacy TLSv1.2 `'EECDH'` or
|
|
|
|
`'!EECDH'` specification.
|
|
|
|
|
|
|
|
Despite the relative order of TLSv1.3 and TLSv1.2 cipher suites, the TLSv1.3
|
|
|
|
protocol is significantly more secure than TLSv1.2, and will always be chosen
|
|
|
|
over TLSv1.2 if the handshake indicates it is supported, and if any TLSv1.3
|
|
|
|
cipher suites are enabled.
|
2016-11-23 14:14:34 -08:00
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
The default cipher suite included within Node.js has been carefully
|
2015-08-17 15:51:51 -07:00
|
|
|
selected to reflect current security best practices and risk mitigation.
|
|
|
|
Changing the default cipher suite can have a significant impact on the security
|
2016-11-23 14:14:34 -08:00
|
|
|
of an application. The `--tls-cipher-list` switch and `ciphers` option should by
|
|
|
|
used only if absolutely necessary.
|
|
|
|
|
|
|
|
The default cipher suite prefers GCM ciphers for [Chrome's 'modern
|
2020-06-14 14:49:34 -07:00
|
|
|
cryptography' setting][] and also prefers ECDHE and DHE ciphers for perfect
|
2021-10-10 21:55:04 -07:00
|
|
|
forward secrecy, while offering _some_ backward compatibility.
|
2016-11-23 14:14:34 -08:00
|
|
|
|
|
|
|
Old clients that rely on insecure and deprecated RC4 or DES-based ciphers
|
|
|
|
(like Internet Explorer 6) cannot complete the handshaking process with
|
|
|
|
the default configuration. If these clients _must_ be supported, the
|
2019-10-02 00:31:57 -04:00
|
|
|
[TLS recommendations][] may offer a compatible cipher suite. For more details
|
tls: support TLSv1.3
This introduces TLS1.3 support and makes it the default max protocol,
but also supports CLI/NODE_OPTIONS switches to disable it if necessary.
TLS1.3 is a major update to the TLS protocol, with many security
enhancements. It should be preferred over TLS1.2 whenever possible.
TLS1.3 is different enough that even though the OpenSSL APIs are
technically API/ABI compatible, that when TLS1.3 is negotiated, the
timing of protocol records and of callbacks broke assumptions hard-coded
into the 'tls' module.
This change introduces no API incompatibilities when TLS1.2 is
negotiated. It is the intention that it be backported to current and LTS
release lines with the default maximum TLS protocol reset to 'TLSv1.2'.
This will allow users of those lines to explicitly enable TLS1.3 if they
want.
API incompatibilities between TLS1.2 and TLS1.3 are:
- Renegotiation is not supported by TLS1.3 protocol, attempts to call
`.renegotiate()` will always fail.
- Compiling against a system OpenSSL lower than 1.1.1 is no longer
supported (OpenSSL-1.1.0 used to be supported with configure flags).
- Variations of `conn.write('data'); conn.destroy()` have undefined
behaviour according to the streams API. They may or may not send the
'data', and may or may not cause a ERR_STREAM_DESTROYED error to be
emitted. This has always been true, but conditions under which the write
suceeds is slightly but observably different when TLS1.3 is negotiated
vs when TLS1.2 or below is negotiated.
- If TLS1.3 is negotiated, and a server calls `conn.end()` in its
'secureConnection' listener without any data being written, the client
will not receive session tickets (no 'session' events will be emitted,
and `conn.getSession()` will never return a resumable session).
- The return value of `conn.getSession()` API may not return a resumable
session if called right after the handshake. The effect will be that
clients using the legacy `getSession()` API will resume sessions if
TLS1.2 is negotiated, but will do full handshakes if TLS1.3 is
negotiated. See https://github.com/nodejs/node/pull/25831 for more
information.
PR-URL: https://github.com/nodejs/node/pull/26209
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
2018-11-28 17:58:08 -08:00
|
|
|
on the format, see the OpenSSL [cipher list format][] documentation.
|
|
|
|
|
2022-02-02 00:08:39 +01:00
|
|
|
There are only five TLSv1.3 cipher suites:
|
2019-09-06 01:42:22 -04:00
|
|
|
|
2019-09-13 00:22:29 -04:00
|
|
|
* `'TLS_AES_256_GCM_SHA384'`
|
|
|
|
* `'TLS_CHACHA20_POLY1305_SHA256'`
|
|
|
|
* `'TLS_AES_128_GCM_SHA256'`
|
|
|
|
* `'TLS_AES_128_CCM_SHA256'`
|
|
|
|
* `'TLS_AES_128_CCM_8_SHA256'`
|
tls: support TLSv1.3
This introduces TLS1.3 support and makes it the default max protocol,
but also supports CLI/NODE_OPTIONS switches to disable it if necessary.
TLS1.3 is a major update to the TLS protocol, with many security
enhancements. It should be preferred over TLS1.2 whenever possible.
TLS1.3 is different enough that even though the OpenSSL APIs are
technically API/ABI compatible, that when TLS1.3 is negotiated, the
timing of protocol records and of callbacks broke assumptions hard-coded
into the 'tls' module.
This change introduces no API incompatibilities when TLS1.2 is
negotiated. It is the intention that it be backported to current and LTS
release lines with the default maximum TLS protocol reset to 'TLSv1.2'.
This will allow users of those lines to explicitly enable TLS1.3 if they
want.
API incompatibilities between TLS1.2 and TLS1.3 are:
- Renegotiation is not supported by TLS1.3 protocol, attempts to call
`.renegotiate()` will always fail.
- Compiling against a system OpenSSL lower than 1.1.1 is no longer
supported (OpenSSL-1.1.0 used to be supported with configure flags).
- Variations of `conn.write('data'); conn.destroy()` have undefined
behaviour according to the streams API. They may or may not send the
'data', and may or may not cause a ERR_STREAM_DESTROYED error to be
emitted. This has always been true, but conditions under which the write
suceeds is slightly but observably different when TLS1.3 is negotiated
vs when TLS1.2 or below is negotiated.
- If TLS1.3 is negotiated, and a server calls `conn.end()` in its
'secureConnection' listener without any data being written, the client
will not receive session tickets (no 'session' events will be emitted,
and `conn.getSession()` will never return a resumable session).
- The return value of `conn.getSession()` API may not return a resumable
session if called right after the handshake. The effect will be that
clients using the legacy `getSession()` API will resume sessions if
TLS1.2 is negotiated, but will do full handshakes if TLS1.3 is
negotiated. See https://github.com/nodejs/node/pull/25831 for more
information.
PR-URL: https://github.com/nodejs/node/pull/26209
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
2018-11-28 17:58:08 -08:00
|
|
|
|
2022-02-02 00:08:39 +01:00
|
|
|
The first three are enabled by default. The two `CCM`-based suites are supported
|
tls: support TLSv1.3
This introduces TLS1.3 support and makes it the default max protocol,
but also supports CLI/NODE_OPTIONS switches to disable it if necessary.
TLS1.3 is a major update to the TLS protocol, with many security
enhancements. It should be preferred over TLS1.2 whenever possible.
TLS1.3 is different enough that even though the OpenSSL APIs are
technically API/ABI compatible, that when TLS1.3 is negotiated, the
timing of protocol records and of callbacks broke assumptions hard-coded
into the 'tls' module.
This change introduces no API incompatibilities when TLS1.2 is
negotiated. It is the intention that it be backported to current and LTS
release lines with the default maximum TLS protocol reset to 'TLSv1.2'.
This will allow users of those lines to explicitly enable TLS1.3 if they
want.
API incompatibilities between TLS1.2 and TLS1.3 are:
- Renegotiation is not supported by TLS1.3 protocol, attempts to call
`.renegotiate()` will always fail.
- Compiling against a system OpenSSL lower than 1.1.1 is no longer
supported (OpenSSL-1.1.0 used to be supported with configure flags).
- Variations of `conn.write('data'); conn.destroy()` have undefined
behaviour according to the streams API. They may or may not send the
'data', and may or may not cause a ERR_STREAM_DESTROYED error to be
emitted. This has always been true, but conditions under which the write
suceeds is slightly but observably different when TLS1.3 is negotiated
vs when TLS1.2 or below is negotiated.
- If TLS1.3 is negotiated, and a server calls `conn.end()` in its
'secureConnection' listener without any data being written, the client
will not receive session tickets (no 'session' events will be emitted,
and `conn.getSession()` will never return a resumable session).
- The return value of `conn.getSession()` API may not return a resumable
session if called right after the handshake. The effect will be that
clients using the legacy `getSession()` API will resume sessions if
TLS1.2 is negotiated, but will do full handshakes if TLS1.3 is
negotiated. See https://github.com/nodejs/node/pull/25831 for more
information.
PR-URL: https://github.com/nodejs/node/pull/26209
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
2018-11-28 17:58:08 -08:00
|
|
|
by TLSv1.3 because they may be more performant on constrained systems, but they
|
|
|
|
are not enabled by default since they offer less security.
|
2012-02-17 23:58:42 +01:00
|
|
|
|
2024-07-10 20:41:34 +10:00
|
|
|
## OpenSSL security level
|
|
|
|
|
|
|
|
The OpenSSL library enforces security levels to control the minimum acceptable
|
|
|
|
level of security for cryptographic operations. OpenSSL's security levels range
|
|
|
|
from 0 to 5, with each level imposing stricter security requirements. The default
|
|
|
|
security level is 1, which is generally suitable for most modern applications.
|
|
|
|
However, some legacy features and protocols, such as TLSv1, require a lower
|
|
|
|
security level (`SECLEVEL=0`) to function properly. For more detailed information,
|
|
|
|
please refer to the [OpenSSL documentation on security levels][].
|
|
|
|
|
|
|
|
### Setting security levels
|
|
|
|
|
|
|
|
To adjust the security level in your Node.js application, you can include `@SECLEVEL=X`
|
|
|
|
within a cipher string, where `X` is the desired security level. For example,
|
|
|
|
to set the security level to 0 while using the default OpenSSL cipher list, you could use:
|
|
|
|
|
2024-12-13 14:09:28 -03:00
|
|
|
```mjs
|
|
|
|
import { createServer, connect } from 'node:tls';
|
|
|
|
const port = 443;
|
|
|
|
|
|
|
|
createServer({ ciphers: 'DEFAULT@SECLEVEL=0', minVersion: 'TLSv1' }, function(socket) {
|
|
|
|
console.log('Client connected with protocol:', socket.getProtocol());
|
|
|
|
socket.end();
|
|
|
|
this.close();
|
|
|
|
})
|
|
|
|
.listen(port, () => {
|
|
|
|
connect(port, { ciphers: 'DEFAULT@SECLEVEL=0', maxVersion: 'TLSv1' });
|
|
|
|
});
|
|
|
|
```
|
|
|
|
|
|
|
|
```cjs
|
|
|
|
const { createServer, connect } = require('node:tls');
|
2024-07-10 20:41:34 +10:00
|
|
|
const port = 443;
|
|
|
|
|
2024-12-13 14:09:28 -03:00
|
|
|
createServer({ ciphers: 'DEFAULT@SECLEVEL=0', minVersion: 'TLSv1' }, function(socket) {
|
2024-07-10 20:41:34 +10:00
|
|
|
console.log('Client connected with protocol:', socket.getProtocol());
|
|
|
|
socket.end();
|
|
|
|
this.close();
|
2024-11-20 19:10:38 +09:00
|
|
|
})
|
|
|
|
.listen(port, () => {
|
2024-12-13 14:09:28 -03:00
|
|
|
connect(port, { ciphers: 'DEFAULT@SECLEVEL=0', maxVersion: 'TLSv1' });
|
2024-07-10 20:41:34 +10:00
|
|
|
});
|
|
|
|
```
|
|
|
|
|
|
|
|
This approach sets the security level to 0, allowing the use of legacy features while still
|
|
|
|
leveraging the default OpenSSL ciphers.
|
|
|
|
|
|
|
|
### Using [`--tls-cipher-list`][]
|
|
|
|
|
|
|
|
You can also set the security level and ciphers from the command line using the
|
|
|
|
`--tls-cipher-list=DEFAULT@SECLEVEL=X` as described in [Modifying the default TLS cipher suite][].
|
|
|
|
However, it is generally discouraged to use the command line option for setting ciphers and it is
|
|
|
|
preferable to configure the ciphers for individual contexts within your application code,
|
|
|
|
as this approach provides finer control and reduces the risk of globally downgrading the security level.
|
|
|
|
|
2022-02-03 21:20:52 +01:00
|
|
|
## X509 certificate error codes
|
2021-01-27 10:59:53 +01:00
|
|
|
|
|
|
|
Multiple functions can fail due to certificate errors that are reported by
|
|
|
|
OpenSSL. In such a case, the function provides an {Error} via its callback that
|
|
|
|
has the property `code` which can take one of the following values:
|
|
|
|
|
|
|
|
<!--
|
|
|
|
values are taken from src/crypto/crypto_common.cc
|
|
|
|
description are taken from deps/openssl/openssl/crypto/x509/x509_txt.c
|
|
|
|
-->
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2021-01-27 10:59:53 +01:00
|
|
|
* `'UNABLE_TO_GET_ISSUER_CERT'`: Unable to get issuer certificate.
|
|
|
|
* `'UNABLE_TO_GET_CRL'`: Unable to get certificate CRL.
|
|
|
|
* `'UNABLE_TO_DECRYPT_CERT_SIGNATURE'`: Unable to decrypt certificate's
|
|
|
|
signature.
|
|
|
|
* `'UNABLE_TO_DECRYPT_CRL_SIGNATURE'`: Unable to decrypt CRL's signature.
|
|
|
|
* `'UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY'`: Unable to decode issuer public key.
|
|
|
|
* `'CERT_SIGNATURE_FAILURE'`: Certificate signature failure.
|
|
|
|
* `'CRL_SIGNATURE_FAILURE'`: CRL signature failure.
|
|
|
|
* `'CERT_NOT_YET_VALID'`: Certificate is not yet valid.
|
|
|
|
* `'CERT_HAS_EXPIRED'`: Certificate has expired.
|
|
|
|
* `'CRL_NOT_YET_VALID'`: CRL is not yet valid.
|
|
|
|
* `'CRL_HAS_EXPIRED'`: CRL has expired.
|
|
|
|
* `'ERROR_IN_CERT_NOT_BEFORE_FIELD'`: Format error in certificate's notBefore
|
|
|
|
field.
|
|
|
|
* `'ERROR_IN_CERT_NOT_AFTER_FIELD'`: Format error in certificate's notAfter
|
|
|
|
field.
|
|
|
|
* `'ERROR_IN_CRL_LAST_UPDATE_FIELD'`: Format error in CRL's lastUpdate field.
|
|
|
|
* `'ERROR_IN_CRL_NEXT_UPDATE_FIELD'`: Format error in CRL's nextUpdate field.
|
|
|
|
* `'OUT_OF_MEM'`: Out of memory.
|
|
|
|
* `'DEPTH_ZERO_SELF_SIGNED_CERT'`: Self signed certificate.
|
|
|
|
* `'SELF_SIGNED_CERT_IN_CHAIN'`: Self signed certificate in certificate chain.
|
|
|
|
* `'UNABLE_TO_GET_ISSUER_CERT_LOCALLY'`: Unable to get local issuer certificate.
|
|
|
|
* `'UNABLE_TO_VERIFY_LEAF_SIGNATURE'`: Unable to verify the first certificate.
|
|
|
|
* `'CERT_CHAIN_TOO_LONG'`: Certificate chain too long.
|
|
|
|
* `'CERT_REVOKED'`: Certificate revoked.
|
|
|
|
* `'INVALID_CA'`: Invalid CA certificate.
|
|
|
|
* `'PATH_LENGTH_EXCEEDED'`: Path length constraint exceeded.
|
|
|
|
* `'INVALID_PURPOSE'`: Unsupported certificate purpose.
|
|
|
|
* `'CERT_UNTRUSTED'`: Certificate not trusted.
|
|
|
|
* `'CERT_REJECTED'`: Certificate rejected.
|
|
|
|
* `'HOSTNAME_MISMATCH'`: Hostname mismatch.
|
|
|
|
|
2025-03-12 18:51:22 +05:30
|
|
|
When certificate errors like `UNABLE_TO_VERIFY_LEAF_SIGNATURE`,
|
|
|
|
`DEPTH_ZERO_SELF_SIGNED_CERT`, or `UNABLE_TO_GET_ISSUER_CERT` occur, Node.js
|
|
|
|
appends a hint suggesting that if the root CA is installed locally,
|
|
|
|
try running with the `--use-system-ca` flag to direct developers towards a
|
|
|
|
secure solution, to prevent unsafe workarounds.
|
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
## Class: `tls.Server`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.3.2
|
|
|
|
-->
|
2015-05-08 19:54:34 +01:00
|
|
|
|
2019-08-21 13:40:46 -07:00
|
|
|
* Extends: {net.Server}
|
|
|
|
|
|
|
|
Accepts encrypted connections using TLS or SSL.
|
2015-05-08 19:54:34 +01:00
|
|
|
|
2020-07-27 20:08:38 +02:00
|
|
|
### Event: `'connection'`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2020-07-27 20:08:38 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.3.2
|
|
|
|
-->
|
|
|
|
|
|
|
|
* `socket` {stream.Duplex}
|
|
|
|
|
|
|
|
This event is emitted when a new TCP stream is established, before the TLS
|
2022-02-12 05:49:03 -06:00
|
|
|
handshake begins. `socket` is typically an object of type [`net.Socket`][] but
|
|
|
|
will not receive events unlike the socket created from the [`net.Server`][]
|
|
|
|
`'connection'` event. Usually users will not want to access this event.
|
2020-07-27 20:08:38 +02:00
|
|
|
|
|
|
|
This event can also be explicitly emitted by users to inject connections
|
|
|
|
into the TLS server. In that case, any [`Duplex`][] stream can be passed.
|
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### Event: `'keylog'`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2019-05-11 23:07:06 +02:00
|
|
|
<!-- YAML
|
2020-04-24 18:43:06 +02:00
|
|
|
added:
|
|
|
|
- v12.3.0
|
|
|
|
- v10.20.0
|
2019-05-11 23:07:06 +02:00
|
|
|
-->
|
|
|
|
|
|
|
|
* `line` {Buffer} Line of ASCII text, in NSS `SSLKEYLOGFILE` format.
|
|
|
|
* `tlsSocket` {tls.TLSSocket} The `tls.TLSSocket` instance on which it was
|
|
|
|
generated.
|
|
|
|
|
|
|
|
The `keylog` event is emitted when key material is generated or received by
|
|
|
|
a connection to this server (typically before handshake has completed, but not
|
|
|
|
necessarily). This keying material can be stored for debugging, as it allows
|
|
|
|
captured TLS traffic to be decrypted. It may be emitted multiple times for
|
|
|
|
each socket.
|
|
|
|
|
|
|
|
A typical use case is to append received lines to a common text file, which
|
|
|
|
is later used by software (such as Wireshark) to decrypt the traffic:
|
|
|
|
|
|
|
|
```js
|
|
|
|
const logFile = fs.createWriteStream('/tmp/ssl-keys.log', { flags: 'a' });
|
|
|
|
// ...
|
|
|
|
server.on('keylog', (line, tlsSocket) => {
|
|
|
|
if (tlsSocket.remoteAddress !== '...')
|
|
|
|
return; // Only log keys for a particular IP
|
|
|
|
logFile.write(line);
|
|
|
|
});
|
|
|
|
```
|
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### Event: `'newSession'`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.9.2
|
2020-07-10 13:09:46 +02:00
|
|
|
changes:
|
|
|
|
- version: v0.11.12
|
|
|
|
pr-url: https://github.com/nodejs/node-v0.x-archive/pull/7118
|
|
|
|
description: The `callback` argument is now supported.
|
2016-05-27 10:33:17 -04:00
|
|
|
-->
|
2014-08-27 18:00:13 +09:00
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
The `'newSession'` event is emitted upon creation of a new TLS session. This may
|
2018-12-21 14:16:19 -08:00
|
|
|
be used to store sessions in external storage. The data should be provided to
|
|
|
|
the [`'resumeSession'`][] callback.
|
|
|
|
|
|
|
|
The listener callback is passed three arguments when called:
|
2012-12-03 18:29:01 +01:00
|
|
|
|
2018-12-21 14:16:19 -08:00
|
|
|
* `sessionId` {Buffer} The TLS session identifier
|
|
|
|
* `sessionData` {Buffer} The TLS session data
|
2016-05-23 12:46:10 -07:00
|
|
|
* `callback` {Function} A callback function taking no arguments that must be
|
|
|
|
invoked in order for data to be sent or received over the secure connection.
|
2012-12-03 18:29:01 +01:00
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
Listening for this event will have an effect only on connections established
|
|
|
|
after the addition of the event listener.
|
2012-02-09 17:14:39 +01:00
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### Event: `'OCSPRequest'`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.13
|
|
|
|
-->
|
2011-10-16 01:26:38 +09:00
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
The `'OCSPRequest'` event is emitted when the client sends a certificate status
|
|
|
|
request. The listener callback is passed three arguments when called:
|
2011-10-16 01:26:38 +09:00
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
* `certificate` {Buffer} The server certificate
|
|
|
|
* `issuer` {Buffer} The issuer's certificate
|
|
|
|
* `callback` {Function} A callback function that must be invoked to provide
|
|
|
|
the results of the OCSP request.
|
2011-10-16 01:26:38 +09:00
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
The server's current certificate can be parsed to obtain the OCSP URL
|
|
|
|
and certificate ID; after obtaining an OCSP response, `callback(null, resp)` is
|
|
|
|
then invoked, where `resp` is a `Buffer` instance containing the OCSP response.
|
|
|
|
Both `certificate` and `issuer` are `Buffer` DER-representations of the
|
|
|
|
primary and issuer's certificates. These can be used to obtain the OCSP
|
|
|
|
certificate ID and OCSP endpoint URL.
|
|
|
|
|
|
|
|
Alternatively, `callback(null, null)` may be called, indicating that there was
|
|
|
|
no OCSP response.
|
2015-04-23 15:25:15 +09:00
|
|
|
|
2015-11-05 15:04:26 -05:00
|
|
|
Calling `callback(err)` will result in a `socket.destroy(err)` call.
|
2011-10-16 01:26:38 +09:00
|
|
|
|
2022-04-03 15:45:13 +02:00
|
|
|
The typical flow of an OCSP request is as follows:
|
2013-03-18 19:40:41 +05:30
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
1. Client connects to the server and sends an `'OCSPRequest'` (via the status
|
2016-03-14 22:52:28 +00:00
|
|
|
info extension in ClientHello).
|
2016-05-23 12:46:10 -07:00
|
|
|
2. Server receives the request and emits the `'OCSPRequest'` event, calling the
|
|
|
|
listener if registered.
|
2016-03-14 22:52:28 +00:00
|
|
|
3. Server extracts the OCSP URL from either the `certificate` or `issuer` and
|
2019-10-02 00:31:57 -04:00
|
|
|
performs an [OCSP request][] to the CA.
|
2018-04-09 19:30:22 +03:00
|
|
|
4. Server receives `'OCSPResponse'` from the CA and sends it back to the client
|
2016-03-14 22:52:28 +00:00
|
|
|
via the `callback` argument
|
|
|
|
5. Client validates the response and either destroys the socket or performs a
|
2015-11-05 15:04:26 -05:00
|
|
|
handshake.
|
2014-02-04 01:32:13 +04:00
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
The `issuer` can be `null` if the certificate is either self-signed or the
|
|
|
|
issuer is not in the root certificates list. (An issuer may be provided
|
2016-05-23 12:46:10 -07:00
|
|
|
via the `ca` option when establishing the TLS connection.)
|
2014-02-04 01:32:13 +04:00
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
Listening for this event will have an effect only on connections established
|
|
|
|
after the addition of the event listener.
|
2011-10-16 01:26:38 +09:00
|
|
|
|
2019-10-02 00:31:57 -04:00
|
|
|
An npm module like [asn1.js][] may be used to parse the certificates.
|
2013-07-25 23:21:52 +02:00
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### Event: `'resumeSession'`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.9.2
|
|
|
|
-->
|
2011-10-16 01:26:38 +09:00
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
The `'resumeSession'` event is emitted when the client requests to resume a
|
|
|
|
previous TLS session. The listener callback is passed two arguments when
|
|
|
|
called:
|
|
|
|
|
2018-12-21 14:16:19 -08:00
|
|
|
* `sessionId` {Buffer} The TLS session identifier
|
2016-05-23 12:46:10 -07:00
|
|
|
* `callback` {Function} A callback function to be called when the prior session
|
2018-12-21 14:16:19 -08:00
|
|
|
has been recovered: `callback([err[, sessionData]])`
|
|
|
|
* `err` {Error}
|
|
|
|
* `sessionData` {Buffer}
|
|
|
|
|
|
|
|
The event listener should perform a lookup in external storage for the
|
|
|
|
`sessionData` saved by the [`'newSession'`][] event handler using the given
|
|
|
|
`sessionId`. If found, call `callback(null, sessionData)` to resume the session.
|
|
|
|
If not found, the session cannot be resumed. `callback()` must be called
|
|
|
|
without `sessionData` so that the handshake can continue and a new session can
|
|
|
|
be created. It is possible to call `callback(err)` to terminate the incoming
|
|
|
|
connection and destroy the socket.
|
2011-10-16 16:31:41 +09:00
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
Listening for this event will have an effect only on connections established
|
|
|
|
after the addition of the event listener.
|
2011-10-16 16:31:41 +09:00
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
The following illustrates resuming a TLS session:
|
2011-10-16 01:26:38 +09:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
2016-05-23 12:46:10 -07:00
|
|
|
const tlsSessionStore = {};
|
2016-01-17 18:39:07 +01:00
|
|
|
server.on('newSession', (id, data, cb) => {
|
|
|
|
tlsSessionStore[id.toString('hex')] = data;
|
|
|
|
cb();
|
|
|
|
});
|
|
|
|
server.on('resumeSession', (id, cb) => {
|
|
|
|
cb(null, tlsSessionStore[id.toString('hex')] || null);
|
|
|
|
});
|
|
|
|
```
|
2011-10-16 01:26:38 +09:00
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### Event: `'secureConnection'`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.3.2
|
|
|
|
-->
|
2012-05-14 01:08:23 +05:30
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
The `'secureConnection'` event is emitted after the handshaking process for a
|
|
|
|
new connection has successfully completed. The listener callback is passed a
|
|
|
|
single argument when called:
|
2012-05-14 01:08:23 +05:30
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
* `tlsSocket` {tls.TLSSocket} The established TLS socket.
|
2011-10-16 01:26:38 +09:00
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
The `tlsSocket.authorized` property is a `boolean` indicating whether the
|
|
|
|
client has been verified by one of the supplied Certificate Authorities for the
|
|
|
|
server. If `tlsSocket.authorized` is `false`, then `socket.authorizationError`
|
2019-06-20 13:37:44 -06:00
|
|
|
is set to describe how authorization failed. Depending on the settings
|
2016-05-23 12:46:10 -07:00
|
|
|
of the TLS server, unauthorized connections may still be accepted.
|
2012-05-14 01:08:23 +05:30
|
|
|
|
2018-03-17 05:13:47 +01:00
|
|
|
The `tlsSocket.alpnProtocol` property is a string that contains the selected
|
2022-08-13 09:25:23 +02:00
|
|
|
ALPN protocol. When ALPN has no selected protocol because the client or the
|
|
|
|
server did not send an ALPN extension, `tlsSocket.alpnProtocol` equals `false`.
|
2016-05-23 12:46:10 -07:00
|
|
|
|
|
|
|
The `tlsSocket.servername` property is a string containing the server name
|
|
|
|
requested via SNI.
|
2011-10-27 02:34:56 +09:00
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### Event: `'tlsClientError'`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2017-02-13 04:49:35 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v6.0.0
|
|
|
|
-->
|
|
|
|
|
|
|
|
The `'tlsClientError'` event is emitted when an error occurs before a secure
|
|
|
|
connection is established. The listener callback is passed two arguments when
|
|
|
|
called:
|
|
|
|
|
|
|
|
* `exception` {Error} The `Error` object describing the error
|
|
|
|
* `tlsSocket` {tls.TLSSocket} The `tls.TLSSocket` instance from which the
|
|
|
|
error originated.
|
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `server.addContext(hostname, context)`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.5.3
|
|
|
|
-->
|
2010-12-11 02:26:48 -08:00
|
|
|
|
2020-01-12 07:57:16 -08:00
|
|
|
* `hostname` {string} A SNI host name or wildcard (e.g. `'*'`)
|
2023-04-26 14:39:00 +08:00
|
|
|
* `context` {Object|tls.SecureContext} An object containing any of the possible
|
|
|
|
properties from the [`tls.createSecureContext()`][] `options` arguments
|
|
|
|
(e.g. `key`, `cert`, `ca`, etc), or a TLS context object created with
|
|
|
|
[`tls.createSecureContext()`][] itself.
|
2016-05-23 12:46:10 -07:00
|
|
|
|
|
|
|
The `server.addContext()` method adds a secure context that will be used if
|
2018-05-24 14:14:27 +03:00
|
|
|
the client request's SNI name matches the supplied `hostname` (or wildcard).
|
2010-12-11 02:26:48 -08:00
|
|
|
|
2020-08-06 00:32:07 +02:00
|
|
|
When there are multiple matching contexts, the most recently added one is
|
|
|
|
used.
|
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `server.address()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.6.0
|
|
|
|
-->
|
2010-12-11 02:26:48 -08:00
|
|
|
|
2018-04-11 21:07:14 +03:00
|
|
|
* Returns: {Object}
|
|
|
|
|
2016-03-14 22:52:28 +00:00
|
|
|
Returns the bound address, the address family name, and port of the
|
2018-04-02 08:38:48 +03:00
|
|
|
server as reported by the operating system. See [`net.Server.address()`][] for
|
2015-11-05 15:04:26 -05:00
|
|
|
more information.
|
2015-02-18 17:55:11 +01:00
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `server.close([callback])`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.3.2
|
|
|
|
-->
|
2011-12-07 22:47:06 +09:00
|
|
|
|
2018-08-26 19:12:53 -07:00
|
|
|
* `callback` {Function} A listener callback that will be registered to listen
|
2020-11-09 05:44:32 -08:00
|
|
|
for the server instance's `'close'` event.
|
2018-10-31 16:53:38 +08:00
|
|
|
* Returns: {tls.Server}
|
2016-05-23 12:46:10 -07:00
|
|
|
|
|
|
|
The `server.close()` method stops the server from accepting new connections.
|
|
|
|
|
|
|
|
This function operates asynchronously. The `'close'` event will be emitted
|
2016-11-17 12:24:43 -08:00
|
|
|
when the server has no more open connections.
|
2015-04-23 15:25:15 +09:00
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `server.getTicketKeys()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v3.0.0
|
|
|
|
-->
|
2015-03-09 14:46:22 +01:00
|
|
|
|
2018-12-21 14:16:19 -08:00
|
|
|
* Returns: {Buffer} A 48-byte buffer containing the session ticket keys.
|
2018-04-11 21:07:14 +03:00
|
|
|
|
2018-12-21 14:16:19 -08:00
|
|
|
Returns the session ticket keys.
|
|
|
|
|
|
|
|
See [Session Resumption][] for more information.
|
2013-05-15 13:14:20 -06:00
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `server.listen()`
|
2010-12-11 02:26:48 -08:00
|
|
|
|
2017-10-06 11:50:47 -07:00
|
|
|
Starts the server listening for encrypted connections.
|
|
|
|
This method is identical to [`server.listen()`][] from [`net.Server`][].
|
2010-12-11 02:26:48 -08:00
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `server.setSecureContext(options)`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2018-10-13 14:18:31 -04:00
|
|
|
<!-- YAML
|
2018-10-02 16:01:19 -07:00
|
|
|
added: v11.0.0
|
2018-10-13 14:18:31 -04:00
|
|
|
-->
|
|
|
|
|
|
|
|
* `options` {Object} An object containing any of the possible properties from
|
|
|
|
the [`tls.createSecureContext()`][] `options` arguments (e.g. `key`, `cert`,
|
|
|
|
`ca`, etc).
|
|
|
|
|
|
|
|
The `server.setSecureContext()` method replaces the secure context of an
|
|
|
|
existing server. Existing connections to the server are not interrupted.
|
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `server.setTicketKeys(keys)`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v3.0.0
|
|
|
|
-->
|
2011-10-16 01:26:38 +09:00
|
|
|
|
2021-04-20 11:59:02 +02:00
|
|
|
* `keys` {Buffer|TypedArray|DataView} A 48-byte buffer containing the session
|
|
|
|
ticket keys.
|
2011-10-16 01:26:38 +09:00
|
|
|
|
2018-12-21 14:16:19 -08:00
|
|
|
Sets the session ticket keys.
|
2014-07-16 22:04:34 +08:00
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
Changes to the ticket keys are effective only for future server connections.
|
|
|
|
Existing or currently pending server connections will use the previous keys.
|
2012-05-14 01:08:23 +05:30
|
|
|
|
2018-12-21 14:16:19 -08:00
|
|
|
See [Session Resumption][] for more information.
|
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
## Class: `tls.TLSSocket`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.4
|
|
|
|
-->
|
2012-05-14 01:08:23 +05:30
|
|
|
|
2019-08-21 13:40:46 -07:00
|
|
|
* Extends: {net.Socket}
|
|
|
|
|
|
|
|
Performs transparent encryption of written data and all required TLS
|
|
|
|
negotiation.
|
2010-12-08 13:22:12 -08:00
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
Instances of `tls.TLSSocket` implement the duplex [Stream][] interface.
|
2013-07-03 11:46:01 +04:00
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
Methods that return TLS connection metadata (e.g.
|
2022-09-04 18:00:43 +02:00
|
|
|
[`tls.TLSSocket.getPeerCertificate()`][]) will only return data while the
|
2016-01-31 15:51:08 +03:00
|
|
|
connection is open.
|
2013-07-03 11:46:01 +04:00
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `new tls.TLSSocket(socket[, options])`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.4
|
2017-02-21 23:38:49 +01:00
|
|
|
changes:
|
2019-05-06 14:40:25 +02:00
|
|
|
- version: v12.2.0
|
2019-04-30 11:46:56 -04:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/27497
|
|
|
|
description: The `enableTrace` option is now supported.
|
2017-02-21 23:38:49 +01:00
|
|
|
- version: v5.0.0
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/2564
|
|
|
|
description: ALPN options are supported now.
|
2016-05-27 10:33:17 -04:00
|
|
|
-->
|
2013-07-03 11:46:01 +04:00
|
|
|
|
2017-12-11 04:37:47 +01:00
|
|
|
* `socket` {net.Socket|stream.Duplex}
|
|
|
|
On the server side, any `Duplex` stream. On the client side, any
|
|
|
|
instance of [`net.Socket`][] (for generic `Duplex` stream support
|
|
|
|
on the client side, [`tls.connect()`][] must be used).
|
2016-05-23 12:46:10 -07:00
|
|
|
* `options` {Object}
|
2019-04-30 11:46:56 -04:00
|
|
|
* `enableTrace`: See [`tls.createServer()`][]
|
2017-10-03 01:10:44 +09:00
|
|
|
* `isServer`: The SSL/TLS protocol is asymmetrical, TLSSockets must know if
|
2016-11-23 14:14:34 -08:00
|
|
|
they are to behave as a server or a client. If `true` the TLS socket will be
|
2018-04-02 04:44:32 +03:00
|
|
|
instantiated as a server. **Default:** `false`.
|
2018-08-26 19:12:53 -07:00
|
|
|
* `server` {net.Server} A [`net.Server`][] instance.
|
2016-11-23 14:14:34 -08:00
|
|
|
* `requestCert`: Whether to authenticate the remote peer by requesting a
|
2021-10-10 21:55:04 -07:00
|
|
|
certificate. Clients always request a server certificate. Servers
|
|
|
|
(`isServer` is true) may set `requestCert` to true to request a client
|
|
|
|
certificate.
|
2018-08-26 19:12:53 -07:00
|
|
|
* `rejectUnauthorized`: See [`tls.createServer()`][]
|
|
|
|
* `ALPNProtocols`: See [`tls.createServer()`][]
|
|
|
|
* `SNICallback`: See [`tls.createServer()`][]
|
|
|
|
* `session` {Buffer} A `Buffer` instance containing a TLS session.
|
2016-05-23 12:46:10 -07:00
|
|
|
* `requestOCSP` {boolean} If `true`, specifies that the OCSP status request
|
|
|
|
extension will be added to the client hello and an `'OCSPResponse'` event
|
|
|
|
will be emitted on the socket before establishing a secure communication
|
2018-08-26 19:12:53 -07:00
|
|
|
* `secureContext`: TLS context object created with
|
2016-11-23 14:14:34 -08:00
|
|
|
[`tls.createSecureContext()`][]. If a `secureContext` is _not_ provided, one
|
2017-01-16 19:36:42 -08:00
|
|
|
will be created by passing the entire `options` object to
|
2017-05-20 16:15:58 -04:00
|
|
|
`tls.createSecureContext()`.
|
2018-08-26 19:12:53 -07:00
|
|
|
* ...: [`tls.createSecureContext()`][] options that are used if the
|
|
|
|
`secureContext` option is missing. Otherwise, they are ignored.
|
2016-12-30 09:14:10 -08:00
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
Construct a new `tls.TLSSocket` object from an existing TCP socket.
|
2014-04-14 21:15:57 +04:00
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### Event: `'keylog'`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2019-05-11 23:07:06 +02:00
|
|
|
<!-- YAML
|
2020-04-24 18:43:06 +02:00
|
|
|
added:
|
|
|
|
- v12.3.0
|
|
|
|
- v10.20.0
|
2019-05-11 23:07:06 +02:00
|
|
|
-->
|
|
|
|
|
|
|
|
* `line` {Buffer} Line of ASCII text, in NSS `SSLKEYLOGFILE` format.
|
|
|
|
|
2020-05-12 14:53:12 +02:00
|
|
|
The `keylog` event is emitted on a `tls.TLSSocket` when key material
|
2019-05-11 23:07:06 +02:00
|
|
|
is generated or received by the socket. This keying material can be stored
|
|
|
|
for debugging, as it allows captured TLS traffic to be decrypted. It may
|
|
|
|
be emitted multiple times, before or after the handshake completes.
|
|
|
|
|
|
|
|
A typical use case is to append received lines to a common text file, which
|
|
|
|
is later used by software (such as Wireshark) to decrypt the traffic:
|
|
|
|
|
|
|
|
```js
|
|
|
|
const logFile = fs.createWriteStream('/tmp/ssl-keys.log', { flags: 'a' });
|
|
|
|
// ...
|
|
|
|
tlsSocket.on('keylog', (line) => logFile.write(line));
|
|
|
|
```
|
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### Event: `'OCSPResponse'`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.13
|
|
|
|
-->
|
2014-06-25 14:11:09 +04:00
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
The `'OCSPResponse'` event is emitted if the `requestOCSP` option was set
|
|
|
|
when the `tls.TLSSocket` was created and an OCSP response has been received.
|
|
|
|
The listener callback is passed a single argument when called:
|
2014-06-25 14:11:09 +04:00
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
* `response` {Buffer} The server's OCSP response
|
2014-06-25 14:11:09 +04:00
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
Typically, the `response` is a digitally signed object from the server's CA that
|
2015-11-05 15:04:26 -05:00
|
|
|
contains information about server's certificate revocation status.
|
2014-06-25 14:11:09 +04:00
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### Event: `'secureConnect'`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.4
|
|
|
|
-->
|
2014-06-25 14:11:09 +04:00
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
The `'secureConnect'` event is emitted after the handshaking process for a new
|
|
|
|
connection has successfully completed. The listener callback will be called
|
|
|
|
regardless of whether or not the server's certificate has been authorized. It
|
|
|
|
is the client's responsibility to check the `tlsSocket.authorized` property to
|
|
|
|
determine if the server certificate was signed by one of the specified CAs. If
|
|
|
|
`tlsSocket.authorized === false`, then the error can be found by examining the
|
2018-03-17 05:13:47 +01:00
|
|
|
`tlsSocket.authorizationError` property. If ALPN was used, the
|
|
|
|
`tlsSocket.alpnProtocol` property can be checked to determine the negotiated
|
|
|
|
protocol.
|
2014-06-25 14:11:09 +04:00
|
|
|
|
2021-04-27 19:21:53 -07:00
|
|
|
The `'secureConnect'` event is not emitted when a {tls.TLSSocket} is created
|
|
|
|
using the `new tls.TLSSocket()` constructor.
|
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### Event: `'session'`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2019-01-30 12:18:04 -08:00
|
|
|
<!-- YAML
|
2019-02-14 14:37:22 +01:00
|
|
|
added: v11.10.0
|
2019-01-30 12:18:04 -08:00
|
|
|
-->
|
|
|
|
|
|
|
|
* `session` {Buffer}
|
|
|
|
|
|
|
|
The `'session'` event is emitted on a client `tls.TLSSocket` when a new session
|
|
|
|
or TLS ticket is available. This may or may not be before the handshake is
|
|
|
|
complete, depending on the TLS protocol version that was negotiated. The event
|
|
|
|
is not emitted on the server, or if a new session was not created, for example,
|
|
|
|
when the connection was resumed. For some TLS protocol versions the event may be
|
|
|
|
emitted multiple times, in which case all the sessions can be used for
|
|
|
|
resumption.
|
|
|
|
|
|
|
|
On the client, the `session` can be provided to the `session` option of
|
|
|
|
[`tls.connect()`][] to resume the connection.
|
|
|
|
|
|
|
|
See [Session Resumption][] for more information.
|
|
|
|
|
2019-11-30 19:18:01 -08:00
|
|
|
For TLSv1.2 and below, [`tls.TLSSocket.getSession()`][] can be called once
|
2020-06-20 16:46:33 -07:00
|
|
|
the handshake is complete. For TLSv1.3, only ticket-based resumption is allowed
|
2019-01-30 12:18:04 -08:00
|
|
|
by the protocol, multiple tickets are sent, and the tickets aren't sent until
|
2019-11-30 19:18:01 -08:00
|
|
|
after the handshake completes. So it is necessary to wait for the
|
2020-06-20 16:46:33 -07:00
|
|
|
`'session'` event to get a resumable session. Applications
|
2019-11-30 19:18:01 -08:00
|
|
|
should use the `'session'` event instead of `getSession()` to ensure
|
2020-06-20 16:46:33 -07:00
|
|
|
they will work for all TLS versions. Applications that only expect to
|
2019-11-30 19:18:01 -08:00
|
|
|
get or use one session should listen for this event only once:
|
2019-01-30 12:18:04 -08:00
|
|
|
|
|
|
|
```js
|
|
|
|
tlsSocket.once('session', (session) => {
|
|
|
|
// The session can be used immediately or later.
|
|
|
|
tls.connect({
|
|
|
|
session: session,
|
|
|
|
// Other connect options...
|
|
|
|
});
|
|
|
|
});
|
|
|
|
```
|
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `tlsSocket.address()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.4
|
2022-04-22 00:31:09 +02:00
|
|
|
changes:
|
2022-06-12 20:14:37 -04:00
|
|
|
- version: v18.4.0
|
2022-05-10 11:10:03 +02:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/43054
|
|
|
|
description: The `family` property now returns a string instead of a number.
|
2022-04-22 00:31:09 +02:00
|
|
|
- version: v18.0.0
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/41431
|
|
|
|
description: The `family` property now returns a number instead of a string.
|
2016-05-27 10:33:17 -04:00
|
|
|
-->
|
2011-03-29 09:58:50 -07:00
|
|
|
|
2018-04-11 21:07:14 +03:00
|
|
|
* Returns: {Object}
|
|
|
|
|
2018-04-29 14:16:44 +03:00
|
|
|
Returns the bound `address`, the address `family` name, and `port` of the
|
|
|
|
underlying socket as reported by the operating system:
|
2022-05-10 11:10:03 +02:00
|
|
|
`{ port: 12346, family: 'IPv4', address: '127.0.0.1' }`.
|
2011-03-29 09:58:50 -07:00
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `tlsSocket.authorizationError`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.4
|
|
|
|
-->
|
2011-08-02 22:17:16 -04:00
|
|
|
|
2017-02-13 04:49:35 +02:00
|
|
|
Returns the reason why the peer's certificate was not been verified. This
|
|
|
|
property is set only when `tlsSocket.authorized === false`.
|
2011-08-02 22:17:16 -04:00
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `tlsSocket.authorized`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.4
|
|
|
|
-->
|
2011-08-02 22:17:16 -04:00
|
|
|
|
2022-04-10 02:42:57 +02:00
|
|
|
* {boolean}
|
2018-04-11 21:07:14 +03:00
|
|
|
|
2022-04-10 02:42:57 +02:00
|
|
|
This property is `true` if the peer certificate was signed by one of the CAs
|
|
|
|
specified when creating the `tls.TLSSocket` instance, otherwise `false`.
|
2011-08-02 22:17:16 -04:00
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `tlsSocket.disableRenegotiation()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-11-04 12:37:36 -07:00
|
|
|
<!-- YAML
|
2017-08-13 22:33:49 +02:00
|
|
|
added: v8.4.0
|
2016-11-04 12:37:36 -07:00
|
|
|
-->
|
|
|
|
|
|
|
|
Disables TLS renegotiation for this `TLSSocket` instance. Once called, attempts
|
|
|
|
to renegotiate will trigger an `'error'` event on the `TLSSocket`.
|
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `tlsSocket.enableTrace()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2019-02-13 14:54:07 -08:00
|
|
|
<!-- YAML
|
2019-05-06 14:40:25 +02:00
|
|
|
added: v12.2.0
|
2019-02-13 14:54:07 -08:00
|
|
|
-->
|
|
|
|
|
|
|
|
When enabled, TLS packet trace information is written to `stderr`. This can be
|
|
|
|
used to debug TLS connection problems.
|
|
|
|
|
2021-10-10 21:55:04 -07:00
|
|
|
The format of the output is identical to the output of
|
|
|
|
`openssl s_client -trace` or `openssl s_server -trace`. While it is produced by
|
|
|
|
OpenSSL's `SSL_trace()` function, the format is undocumented, can change
|
|
|
|
without notice, and should not be relied on.
|
2019-02-13 14:54:07 -08:00
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `tlsSocket.encrypted`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.4
|
|
|
|
-->
|
2015-05-05 12:41:16 +05:00
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
Always returns `true`. This may be used to distinguish TLS sockets from regular
|
|
|
|
`net.Socket` instances.
|
2011-08-02 22:17:16 -04:00
|
|
|
|
2021-01-25 16:38:51 -08:00
|
|
|
### `tlsSocket.exportKeyingMaterial(length, label[, context])`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2021-01-25 16:38:51 -08:00
|
|
|
<!-- YAML
|
|
|
|
added:
|
|
|
|
- v13.10.0
|
|
|
|
- v12.17.0
|
|
|
|
-->
|
|
|
|
|
|
|
|
* `length` {number} number of bytes to retrieve from keying material
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2021-01-25 16:38:51 -08:00
|
|
|
* `label` {string} an application specific label, typically this will be a
|
|
|
|
value from the
|
|
|
|
[IANA Exporter Label Registry](https://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml#exporter-labels).
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2021-01-25 16:38:51 -08:00
|
|
|
* `context` {Buffer} Optionally provide a context.
|
|
|
|
|
|
|
|
* Returns: {Buffer} requested bytes of the keying material
|
|
|
|
|
|
|
|
Keying material is used for validations to prevent different kind of attacks in
|
|
|
|
network protocols, for example in the specifications of IEEE 802.1X.
|
|
|
|
|
|
|
|
Example
|
|
|
|
|
|
|
|
```js
|
|
|
|
const keyingMaterial = tlsSocket.exportKeyingMaterial(
|
|
|
|
128,
|
|
|
|
'client finished');
|
|
|
|
|
2021-12-07 06:35:08 -08:00
|
|
|
/*
|
2021-01-25 16:38:51 -08:00
|
|
|
Example return value of keyingMaterial:
|
|
|
|
<Buffer 76 26 af 99 c5 56 8e 42 09 91 ef 9f 93 cb ad 6c 7b 65 f8 53 f1 d8 d9
|
|
|
|
12 5a 33 b8 b5 25 df 7b 37 9f e0 e2 4f b8 67 83 a3 2f cd 5d 41 42 4c 91
|
|
|
|
74 ef 2c ... 78 more bytes>
|
|
|
|
*/
|
|
|
|
```
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2021-01-25 16:38:51 -08:00
|
|
|
See the OpenSSL [`SSL_export_keying_material`][] documentation for more
|
|
|
|
information.
|
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `tlsSocket.getCertificate()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2018-11-08 13:40:46 -08:00
|
|
|
<!-- YAML
|
2018-11-14 01:57:14 +01:00
|
|
|
added: v11.2.0
|
2018-11-08 13:40:46 -08:00
|
|
|
-->
|
|
|
|
|
|
|
|
* Returns: {Object}
|
|
|
|
|
|
|
|
Returns an object representing the local certificate. The returned object has
|
|
|
|
some properties corresponding to the fields of the certificate.
|
|
|
|
|
|
|
|
See [`tls.TLSSocket.getPeerCertificate()`][] for an example of the certificate
|
|
|
|
structure.
|
|
|
|
|
|
|
|
If there is no local certificate, an empty object will be returned. If the
|
|
|
|
socket has been destroyed, `null` will be returned.
|
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `tlsSocket.getCipher()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.4
|
2019-03-12 12:09:24 -07:00
|
|
|
changes:
|
2020-04-24 18:43:06 +02:00
|
|
|
- version:
|
|
|
|
- v13.4.0
|
|
|
|
- v12.16.0
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/30637
|
|
|
|
description: Return the IETF cipher name as `standardName`.
|
2019-03-22 13:19:46 +00:00
|
|
|
- version: v12.0.0
|
2019-03-12 12:09:24 -07:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/26625
|
|
|
|
description: Return the minimum cipher version, instead of a fixed string
|
|
|
|
(`'TLSv1/SSLv3'`).
|
2016-05-27 10:33:17 -04:00
|
|
|
-->
|
2016-01-31 01:28:41 -05:00
|
|
|
|
2018-04-11 21:07:14 +03:00
|
|
|
* Returns: {Object}
|
2019-06-03 11:48:25 -07:00
|
|
|
* `name` {string} OpenSSL name for the cipher suite.
|
|
|
|
* `standardName` {string} IETF name for the cipher suite.
|
2019-03-12 12:09:24 -07:00
|
|
|
* `version` {string} The minimum TLS protocol version supported by this cipher
|
2022-08-04 01:46:23 +02:00
|
|
|
suite. For the actual negotiated protocol, see [`tls.TLSSocket.getProtocol()`][].
|
2018-04-11 21:07:14 +03:00
|
|
|
|
2019-03-12 12:09:24 -07:00
|
|
|
Returns an object containing information on the negotiated cipher suite.
|
2013-06-13 15:36:00 +02:00
|
|
|
|
2022-08-04 01:46:23 +02:00
|
|
|
For example, a TLSv1.2 protocol with AES256-SHA cipher:
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2019-06-03 11:48:25 -07:00
|
|
|
```json
|
|
|
|
{
|
2022-08-04 01:46:23 +02:00
|
|
|
"name": "AES256-SHA",
|
|
|
|
"standardName": "TLS_RSA_WITH_AES_256_CBC_SHA",
|
|
|
|
"version": "SSLv3"
|
2019-06-03 11:48:25 -07:00
|
|
|
}
|
|
|
|
```
|
2012-02-27 11:09:35 -08:00
|
|
|
|
2019-03-12 12:09:24 -07:00
|
|
|
See
|
2021-10-30 15:40:34 -07:00
|
|
|
[SSL\_CIPHER\_get\_name](https://www.openssl.org/docs/man1.1.1/man3/SSL_CIPHER_get_name.html)
|
2019-09-18 16:48:44 +02:00
|
|
|
for more information.
|
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `tlsSocket.getEphemeralKeyInfo()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v5.0.0
|
|
|
|
-->
|
2011-08-02 22:17:16 -04:00
|
|
|
|
2018-04-11 21:07:14 +03:00
|
|
|
* Returns: {Object}
|
|
|
|
|
2016-03-14 22:52:28 +00:00
|
|
|
Returns an object representing the type, name, and size of parameter of
|
2020-06-14 14:49:34 -07:00
|
|
|
an ephemeral key exchange in [perfect forward secrecy][] on a client
|
2015-11-05 15:04:26 -05:00
|
|
|
connection. It returns an empty object when the key exchange is not
|
2016-05-23 12:46:10 -07:00
|
|
|
ephemeral. As this is only supported on a client socket; `null` is returned
|
|
|
|
if called on a server socket. The supported types are `'DH'` and `'ECDH'`. The
|
2018-04-29 20:46:41 +03:00
|
|
|
`name` property is available only when type is `'ECDH'`.
|
2011-08-02 22:17:16 -04:00
|
|
|
|
2018-04-29 14:16:44 +03:00
|
|
|
For example: `{ type: 'ECDH', name: 'prime256v1', size: 256 }`.
|
2010-12-08 13:22:12 -08:00
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `tlsSocket.getFinished()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2018-03-02 21:46:34 +02:00
|
|
|
<!-- YAML
|
2018-03-18 14:45:41 +01:00
|
|
|
added: v9.9.0
|
2018-03-02 21:46:34 +02:00
|
|
|
-->
|
|
|
|
|
|
|
|
* Returns: {Buffer|undefined} The latest `Finished` message that has been
|
2020-11-09 05:44:32 -08:00
|
|
|
sent to the socket as part of a SSL/TLS handshake, or `undefined` if
|
|
|
|
no `Finished` message has been sent yet.
|
2018-03-02 21:46:34 +02:00
|
|
|
|
|
|
|
As the `Finished` messages are message digests of the complete handshake
|
|
|
|
(with a total of 192 bits for TLS 1.0 and more for SSL 3.0), they can
|
|
|
|
be used for external authentication procedures when the authentication
|
|
|
|
provided by SSL/TLS is not desired or is not enough.
|
|
|
|
|
|
|
|
Corresponds to the `SSL_get_finished` routine in OpenSSL and may be used
|
|
|
|
to implement the `tls-unique` channel binding from [RFC 5929][].
|
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `tlsSocket.getPeerCertificate([detailed])`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.4
|
|
|
|
-->
|
2010-12-08 13:22:12 -08:00
|
|
|
|
2016-12-20 14:16:18 -08:00
|
|
|
* `detailed` {boolean} Include the full certificate chain if `true`, otherwise
|
|
|
|
include just the peer's certificate.
|
2018-11-13 16:10:31 -08:00
|
|
|
* Returns: {Object} A certificate object.
|
2016-05-23 12:46:10 -07:00
|
|
|
|
2018-11-13 16:10:31 -08:00
|
|
|
Returns an object representing the peer's certificate. If the peer does not
|
|
|
|
provide a certificate, an empty object will be returned. If the socket has been
|
|
|
|
destroyed, `null` will be returned.
|
2010-12-08 13:22:12 -08:00
|
|
|
|
2018-04-29 20:46:41 +03:00
|
|
|
If the full certificate chain was requested, each certificate will include an
|
2016-12-20 14:16:18 -08:00
|
|
|
`issuerCertificate` property containing an object representing its issuer's
|
|
|
|
certificate.
|
|
|
|
|
2020-06-14 14:49:34 -07:00
|
|
|
#### Certificate object
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2018-11-09 15:05:34 -08:00
|
|
|
<!-- YAML
|
|
|
|
changes:
|
2023-01-05, Version 18.13.0 'Hydrogen' (LTS)
Notable changes:
Add support for externally shared js builtins:
By default Node.js is built so that all dependencies are bundled into the
Node.js binary itself. Some Node.js distributions prefer to manage dependencies
externally. There are existing build options that allow dependencies with
native code to be externalized. This commit adds additional options so that
dependencies with JavaScript code (including WASM) can also be externalized.
This addition does not affect binaries shipped by the Node.js project but
will allow other distributions to externalize additional dependencies when
needed.
Contributed by Michael Dawson in https://github.com/nodejs/node/pull/44376
Introduce `File`:
The File class is part of the [FileAPI](https://w3c.github.io/FileAPI/).
It can be used anywhere a Blob can, for example in `URL.createObjectURL`
and `FormData`. It contains two properties that Blobs do not have: `lastModified`,
the last time the file was modified in ms, and `name`, the name of the file.
Contributed by Khafra in https://github.com/nodejs/node/pull/45139
Support function mocking on Node.js test runner:
The `node:test` module supports mocking during testing via a top-level `mock`
object.
```js
test('spies on an object method', (t) => {
const number = {
value: 5,
add(a) {
return this.value + a;
},
};
t.mock.method(number, 'add');
assert.strictEqual(number.add(3), 8);
assert.strictEqual(number.add.mock.calls.length, 1);
});
```
Contributed by Colin Ihrig in https://github.com/nodejs/node/pull/45326
Other notable changes:
build:
* disable v8 snapshot compression by default (Joyee Cheung) https://github.com/nodejs/node/pull/45716
crypto:
* update root certificates (Luigi Pinca) https://github.com/nodejs/node/pull/45490
deps:
* update ICU to 72.1 (Michaël Zasso) https://github.com/nodejs/node/pull/45068
doc:
* add doc-only deprecation for headers/trailers setters (Rich Trott) https://github.com/nodejs/node/pull/45697
* add Rafael to the tsc (Michael Dawson) https://github.com/nodejs/node/pull/45691
* deprecate use of invalid ports in `url.parse` (Antoine du Hamel) https://github.com/nodejs/node/pull/45576
* add lukekarrys to collaborators (Luke Karrys) https://github.com/nodejs/node/pull/45180
* add anonrig to collaborators (Yagiz Nizipli) https://github.com/nodejs/node/pull/45002
* deprecate url.parse() (Rich Trott) https://github.com/nodejs/node/pull/44919
lib:
* drop fetch experimental warning (Matteo Collina) https://github.com/nodejs/node/pull/45287
net:
* (SEMVER-MINOR) add autoSelectFamily and autoSelectFamilyAttemptTimeout options (Paolo Insogna) https://github.com/nodejs/node/pull/44731
* src:
* (SEMVER-MINOR) add uvwasi version (Jithil P Ponnan) https://github.com/nodejs/node/pull/45639
* (SEMVER-MINOR) add initial shadow realm support (Chengzhong Wu) https://github.com/nodejs/node/pull/42869
test_runner:
* (SEMVER-MINOR) add t.after() hook (Colin Ihrig) https://github.com/nodejs/node/pull/45792
* (SEMVER-MINOR) don't use a symbol for runHook() (Colin Ihrig) https://github.com/nodejs/node/pull/45792
tls:
* (SEMVER-MINOR) add "ca" property to certificate object (Ben Noordhuis) https://github.com/nodejs/node/pull/44935
* remove trustcor root ca certificates (Ben Noordhuis) https://github.com/nodejs/node/pull/45776
tools:
* update certdata.txt (Luigi Pinca) https://github.com/nodejs/node/pull/45490
util:
* add fast path for utf8 encoding (Yagiz Nizipli) https://github.com/nodejs/node/pull/45412
* improve textdecoder decode performance (Yagiz Nizipli) https://github.com/nodejs/node/pull/45294
* (SEMVER-MINOR) add MIME utilities (#21128) (Bradley Farias) https://github.com/nodejs/node/pull/21128
PR-URL: https://github.com/nodejs/node/pull/46025
2022-12-30 15:18:44 -05:00
|
|
|
- version:
|
|
|
|
- v19.1.0
|
|
|
|
- v18.13.0
|
2022-11-09 10:29:17 +01:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/44935
|
|
|
|
description: Add "ca" property.
|
2022-02-01 00:34:51 -05:00
|
|
|
- version:
|
|
|
|
- v17.2.0
|
|
|
|
- v16.14.0
|
2021-08-30 15:31:28 +09:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/39809
|
|
|
|
description: Add fingerprint512.
|
2018-12-05 21:29:36 +01:00
|
|
|
- version: v11.4.0
|
2018-11-09 15:05:34 -08:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/24358
|
|
|
|
description: Support Elliptic Curve public key info.
|
|
|
|
-->
|
2018-11-13 16:10:31 -08:00
|
|
|
|
|
|
|
A certificate object has properties corresponding to the fields of the
|
|
|
|
certificate.
|
|
|
|
|
2022-11-09 10:29:17 +01:00
|
|
|
* `ca` {boolean} `true` if a Certificate Authority (CA), `false` otherwise.
|
2018-11-13 16:10:31 -08:00
|
|
|
* `raw` {Buffer} The DER encoded X.509 certificate data.
|
|
|
|
* `subject` {Object} The certificate subject, described in terms of
|
2022-01-11 15:06:49 +01:00
|
|
|
Country (`C`), StateOrProvince (`ST`), Locality (`L`), Organization (`O`),
|
2021-10-10 21:55:04 -07:00
|
|
|
OrganizationalUnit (`OU`), and CommonName (`CN`). The CommonName is typically
|
|
|
|
a DNS name with TLS certificates. Example:
|
|
|
|
`{C: 'UK', ST: 'BC', L: 'Metro', O: 'Node Fans', OU: 'Docs', CN: 'example.com'}`.
|
2018-11-13 16:10:31 -08:00
|
|
|
* `issuer` {Object} The certificate issuer, described in the same terms as the
|
2021-10-10 21:55:04 -07:00
|
|
|
`subject`.
|
2018-11-13 16:10:31 -08:00
|
|
|
* `valid_from` {string} The date-time the certificate is valid from.
|
|
|
|
* `valid_to` {string} The date-time the certificate is valid to.
|
|
|
|
* `serialNumber` {string} The certificate serial number, as a hex string.
|
2021-10-10 21:55:04 -07:00
|
|
|
Example: `'B9B0D332A1AA5635'`.
|
2018-11-13 16:10:31 -08:00
|
|
|
* `fingerprint` {string} The SHA-1 digest of the DER encoded certificate. It is
|
|
|
|
returned as a `:` separated hexadecimal string. Example: `'2A:7A:C2:DD:...'`.
|
|
|
|
* `fingerprint256` {string} The SHA-256 digest of the DER encoded certificate.
|
2021-10-10 21:55:04 -07:00
|
|
|
It is returned as a `:` separated hexadecimal string. Example:
|
|
|
|
`'2A:7A:C2:DD:...'`.
|
2021-08-30 15:31:28 +09:00
|
|
|
* `fingerprint512` {string} The SHA-512 digest of the DER encoded certificate.
|
|
|
|
It is returned as a `:` separated hexadecimal string. Example:
|
|
|
|
`'2A:7A:C2:DD:...'`.
|
2018-11-13 16:10:31 -08:00
|
|
|
* `ext_key_usage` {Array} (Optional) The extended key usage, a set of OIDs.
|
2019-05-17 23:17:19 +01:00
|
|
|
* `subjectaltname` {string} (Optional) A string containing concatenated names
|
2021-10-10 21:55:04 -07:00
|
|
|
for the subject, an alternative to the `subject` names.
|
2018-11-13 16:10:31 -08:00
|
|
|
* `infoAccess` {Array} (Optional) An array describing the AuthorityInfoAccess,
|
2021-10-10 21:55:04 -07:00
|
|
|
used with OCSP.
|
2019-03-26 12:55:21 -07:00
|
|
|
* `issuerCertificate` {Object} (Optional) The issuer certificate object. For
|
2021-10-10 21:55:04 -07:00
|
|
|
self-signed certificates, this may be a circular reference.
|
2018-11-13 16:10:31 -08:00
|
|
|
|
|
|
|
The certificate may contain information about the public key, depending on
|
|
|
|
the key type.
|
|
|
|
|
|
|
|
For RSA keys, the following properties may be defined:
|
2019-09-06 01:42:22 -04:00
|
|
|
|
2018-11-15 10:11:29 -08:00
|
|
|
* `bits` {number} The RSA bit size. Example: `1024`.
|
2018-11-13 16:10:31 -08:00
|
|
|
* `exponent` {string} The RSA exponent, as a string in hexadecimal number
|
2018-11-24 17:42:09 +09:00
|
|
|
notation. Example: `'0x010001'`.
|
2018-11-13 16:10:31 -08:00
|
|
|
* `modulus` {string} The RSA modulus, as a hexadecimal string. Example:
|
2021-10-10 21:55:04 -07:00
|
|
|
`'B56CE45CB7...'`.
|
2018-11-13 16:10:31 -08:00
|
|
|
* `pubkey` {Buffer} The public key.
|
|
|
|
|
2018-11-09 15:05:34 -08:00
|
|
|
For EC keys, the following properties may be defined:
|
2019-09-06 01:42:22 -04:00
|
|
|
|
2018-11-09 15:05:34 -08:00
|
|
|
* `pubkey` {Buffer} The public key.
|
|
|
|
* `bits` {number} The key size in bits. Example: `256`.
|
|
|
|
* `asn1Curve` {string} (Optional) The ASN.1 name of the OID of the elliptic
|
|
|
|
curve. Well-known curves are identified by an OID. While it is unusual, it is
|
|
|
|
possible that the curve is identified by its mathematical properties, in which
|
|
|
|
case it will not have an OID. Example: `'prime256v1'`.
|
|
|
|
* `nistCurve` {string} (Optional) The NIST name for the elliptic curve, if it
|
|
|
|
has one (not all well-known curves have been assigned names by NIST). Example:
|
|
|
|
`'P-256'`.
|
|
|
|
|
|
|
|
Example certificate:
|
2019-08-29 09:28:03 -04:00
|
|
|
|
2020-09-03 07:06:08 -07:00
|
|
|
<!-- eslint-skip -->
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2020-09-03 07:06:08 -07:00
|
|
|
```js
|
2016-01-17 18:39:07 +01:00
|
|
|
{ subject:
|
2018-11-13 16:10:31 -08:00
|
|
|
{ OU: [ 'Domain Control Validated', 'PositiveSSL Wildcard' ],
|
|
|
|
CN: '*.nodejs.org' },
|
2016-12-20 14:16:18 -08:00
|
|
|
issuer:
|
2018-11-13 16:10:31 -08:00
|
|
|
{ C: 'GB',
|
|
|
|
ST: 'Greater Manchester',
|
|
|
|
L: 'Salford',
|
|
|
|
O: 'COMODO CA Limited',
|
|
|
|
CN: 'COMODO RSA Domain Validation Secure Server CA' },
|
|
|
|
subjectaltname: 'DNS:*.nodejs.org, DNS:nodejs.org',
|
|
|
|
infoAccess:
|
|
|
|
{ 'CA Issuers - URI':
|
|
|
|
[ 'http://crt.comodoca.com/COMODORSADomainValidationSecureServerCA.crt' ],
|
|
|
|
'OCSP - URI': [ 'http://ocsp.comodoca.com' ] },
|
|
|
|
modulus: 'B56CE45CB740B09A13F64AC543B712FF9EE8E4C284B542A1708A27E82A8D151CA178153E12E6DDA15BF70FFD96CB8A88618641BDFCCA03527E665B70D779C8A349A6F88FD4EF6557180BD4C98192872BCFE3AF56E863C09DDD8BC1EC58DF9D94F914F0369102B2870BECFA1348A0838C9C49BD1C20124B442477572347047506B1FCD658A80D0C44BCC16BC5C5496CFE6E4A8428EF654CD3D8972BF6E5BFAD59C93006830B5EB1056BBB38B53D1464FA6E02BFDF2FF66CD949486F0775EC43034EC2602AEFBF1703AD221DAA2A88353C3B6A688EFE8387811F645CEED7B3FE46E1F8B9F59FAD028F349B9BC14211D5830994D055EEA3D547911E07A0ADDEB8A82B9188E58720D95CD478EEC9AF1F17BE8141BE80906F1A339445A7EB5B285F68039B0F294598A7D1C0005FC22B5271B0752F58CCDEF8C8FD856FB7AE21C80B8A2CE983AE94046E53EDE4CB89F42502D31B5360771C01C80155918637490550E3F555E2EE75CC8C636DDE3633CFEDD62E91BF0F7688273694EEEBA20C2FC9F14A2A435517BC1D7373922463409AB603295CEB0BB53787A334C9CA3CA8B30005C5A62FC0715083462E00719A8FA3ED0A9828C3871360A73F8B04A4FC1E71302844E9BB9940B77E745C9D91F226D71AFCAD4B113AAF68D92B24DDB4A2136B55A1CD1ADF39605B63CB639038ED0F4C987689866743A68769CC55847E4A06D6E2E3F1',
|
|
|
|
exponent: '0x10001',
|
|
|
|
pubkey: <Buffer ... >,
|
|
|
|
valid_from: 'Aug 14 00:00:00 2017 GMT',
|
|
|
|
valid_to: 'Nov 20 23:59:59 2019 GMT',
|
|
|
|
fingerprint: '01:02:59:D9:C3:D2:0D:08:F7:82:4E:44:A4:B4:53:C5:E2:3A:87:4D',
|
|
|
|
fingerprint256: '69:AE:1A:6A:D4:3D:C6:C1:1B:EA:C6:23:DE:BA:2A:14:62:62:93:5C:7A:EA:06:41:9B:0B:BC:87:CE:48:4E:02',
|
2021-08-30 15:31:28 +09:00
|
|
|
fingerprint512: '19:2B:3E:C3:B3:5B:32:E8:AE:BB:78:97:27:E4:BA:6C:39:C9:92:79:4F:31:46:39:E2:70:E5:5F:89:42:17:C9:E8:64:CA:FF:BB:72:56:73:6E:28:8A:92:7E:A3:2A:15:8B:C2:E0:45:CA:C3:BC:EA:40:52:EC:CA:A2:68:CB:32',
|
2018-11-13 16:10:31 -08:00
|
|
|
ext_key_usage: [ '1.3.6.1.5.5.7.3.1', '1.3.6.1.5.5.7.3.2' ],
|
|
|
|
serialNumber: '66593D57F20CBC573E433381B5FEC280',
|
|
|
|
raw: <Buffer ... > }
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
2010-12-08 13:22:12 -08:00
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `tlsSocket.getPeerFinished()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2018-03-02 21:46:34 +02:00
|
|
|
<!-- YAML
|
2018-03-18 14:45:41 +01:00
|
|
|
added: v9.9.0
|
2018-03-02 21:46:34 +02:00
|
|
|
-->
|
|
|
|
|
|
|
|
* Returns: {Buffer|undefined} The latest `Finished` message that is expected
|
2020-11-09 05:44:32 -08:00
|
|
|
or has actually been received from the socket as part of a SSL/TLS handshake,
|
|
|
|
or `undefined` if there is no `Finished` message so far.
|
2018-03-02 21:46:34 +02:00
|
|
|
|
|
|
|
As the `Finished` messages are message digests of the complete handshake
|
|
|
|
(with a total of 192 bits for TLS 1.0 and more for SSL 3.0), they can
|
|
|
|
be used for external authentication procedures when the authentication
|
|
|
|
provided by SSL/TLS is not desired or is not enough.
|
|
|
|
|
|
|
|
Corresponds to the `SSL_get_peer_finished` routine in OpenSSL and may be used
|
|
|
|
to implement the `tls-unique` channel binding from [RFC 5929][].
|
|
|
|
|
2021-01-25 16:38:51 -08:00
|
|
|
### `tlsSocket.getPeerX509Certificate()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2021-01-25 16:38:51 -08:00
|
|
|
<!-- YAML
|
2021-02-17 08:16:22 -05:00
|
|
|
added: v15.9.0
|
2021-01-25 16:38:51 -08:00
|
|
|
-->
|
|
|
|
|
|
|
|
* Returns: {X509Certificate}
|
|
|
|
|
|
|
|
Returns the peer certificate as an {X509Certificate} object.
|
|
|
|
|
|
|
|
If there is no peer certificate, or the socket has been destroyed,
|
|
|
|
`undefined` will be returned.
|
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `tlsSocket.getProtocol()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v5.7.0
|
|
|
|
-->
|
2016-01-31 01:26:41 -05:00
|
|
|
|
2018-11-20 13:42:15 -08:00
|
|
|
* Returns: {string|null}
|
2018-04-11 21:07:14 +03:00
|
|
|
|
2016-01-31 01:26:41 -05:00
|
|
|
Returns a string containing the negotiated SSL/TLS protocol version of the
|
2016-05-23 12:46:10 -07:00
|
|
|
current connection. The value `'unknown'` will be returned for connected
|
|
|
|
sockets that have not completed the handshaking process. The value `null` will
|
|
|
|
be returned for server sockets or disconnected client sockets.
|
2016-01-31 01:26:41 -05:00
|
|
|
|
2018-11-20 13:42:15 -08:00
|
|
|
Protocol versions are:
|
2016-05-23 12:46:10 -07:00
|
|
|
|
tls: support TLSv1.3
This introduces TLS1.3 support and makes it the default max protocol,
but also supports CLI/NODE_OPTIONS switches to disable it if necessary.
TLS1.3 is a major update to the TLS protocol, with many security
enhancements. It should be preferred over TLS1.2 whenever possible.
TLS1.3 is different enough that even though the OpenSSL APIs are
technically API/ABI compatible, that when TLS1.3 is negotiated, the
timing of protocol records and of callbacks broke assumptions hard-coded
into the 'tls' module.
This change introduces no API incompatibilities when TLS1.2 is
negotiated. It is the intention that it be backported to current and LTS
release lines with the default maximum TLS protocol reset to 'TLSv1.2'.
This will allow users of those lines to explicitly enable TLS1.3 if they
want.
API incompatibilities between TLS1.2 and TLS1.3 are:
- Renegotiation is not supported by TLS1.3 protocol, attempts to call
`.renegotiate()` will always fail.
- Compiling against a system OpenSSL lower than 1.1.1 is no longer
supported (OpenSSL-1.1.0 used to be supported with configure flags).
- Variations of `conn.write('data'); conn.destroy()` have undefined
behaviour according to the streams API. They may or may not send the
'data', and may or may not cause a ERR_STREAM_DESTROYED error to be
emitted. This has always been true, but conditions under which the write
suceeds is slightly but observably different when TLS1.3 is negotiated
vs when TLS1.2 or below is negotiated.
- If TLS1.3 is negotiated, and a server calls `conn.end()` in its
'secureConnection' listener without any data being written, the client
will not receive session tickets (no 'session' events will be emitted,
and `conn.getSession()` will never return a resumable session).
- The return value of `conn.getSession()` API may not return a resumable
session if called right after the handshake. The effect will be that
clients using the legacy `getSession()` API will resume sessions if
TLS1.2 is negotiated, but will do full handshakes if TLS1.3 is
negotiated. See https://github.com/nodejs/node/pull/25831 for more
information.
PR-URL: https://github.com/nodejs/node/pull/26209
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
2018-11-28 17:58:08 -08:00
|
|
|
* `'SSLv3'`
|
2018-11-20 13:42:15 -08:00
|
|
|
* `'TLSv1'`
|
|
|
|
* `'TLSv1.1'`
|
|
|
|
* `'TLSv1.2'`
|
tls: support TLSv1.3
This introduces TLS1.3 support and makes it the default max protocol,
but also supports CLI/NODE_OPTIONS switches to disable it if necessary.
TLS1.3 is a major update to the TLS protocol, with many security
enhancements. It should be preferred over TLS1.2 whenever possible.
TLS1.3 is different enough that even though the OpenSSL APIs are
technically API/ABI compatible, that when TLS1.3 is negotiated, the
timing of protocol records and of callbacks broke assumptions hard-coded
into the 'tls' module.
This change introduces no API incompatibilities when TLS1.2 is
negotiated. It is the intention that it be backported to current and LTS
release lines with the default maximum TLS protocol reset to 'TLSv1.2'.
This will allow users of those lines to explicitly enable TLS1.3 if they
want.
API incompatibilities between TLS1.2 and TLS1.3 are:
- Renegotiation is not supported by TLS1.3 protocol, attempts to call
`.renegotiate()` will always fail.
- Compiling against a system OpenSSL lower than 1.1.1 is no longer
supported (OpenSSL-1.1.0 used to be supported with configure flags).
- Variations of `conn.write('data'); conn.destroy()` have undefined
behaviour according to the streams API. They may or may not send the
'data', and may or may not cause a ERR_STREAM_DESTROYED error to be
emitted. This has always been true, but conditions under which the write
suceeds is slightly but observably different when TLS1.3 is negotiated
vs when TLS1.2 or below is negotiated.
- If TLS1.3 is negotiated, and a server calls `conn.end()` in its
'secureConnection' listener without any data being written, the client
will not receive session tickets (no 'session' events will be emitted,
and `conn.getSession()` will never return a resumable session).
- The return value of `conn.getSession()` API may not return a resumable
session if called right after the handshake. The effect will be that
clients using the legacy `getSession()` API will resume sessions if
TLS1.2 is negotiated, but will do full handshakes if TLS1.3 is
negotiated. See https://github.com/nodejs/node/pull/25831 for more
information.
PR-URL: https://github.com/nodejs/node/pull/26209
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
2018-11-28 17:58:08 -08:00
|
|
|
* `'TLSv1.3'`
|
2016-01-31 01:26:41 -05:00
|
|
|
|
2019-07-06 10:46:48 -04:00
|
|
|
See the OpenSSL [`SSL_get_version`][] documentation for more information.
|
2015-04-23 15:25:15 +09:00
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `tlsSocket.getSession()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.4
|
|
|
|
-->
|
2010-12-08 13:22:12 -08:00
|
|
|
|
2018-12-21 14:16:19 -08:00
|
|
|
* {Buffer}
|
|
|
|
|
|
|
|
Returns the TLS session data or `undefined` if no session was
|
|
|
|
negotiated. On the client, the data can be provided to the `session` option of
|
|
|
|
[`tls.connect()`][] to resume the connection. On the server, it may be useful
|
|
|
|
for debugging.
|
|
|
|
|
|
|
|
See [Session Resumption][] for more information.
|
2010-12-08 13:22:12 -08:00
|
|
|
|
tls: support TLSv1.3
This introduces TLS1.3 support and makes it the default max protocol,
but also supports CLI/NODE_OPTIONS switches to disable it if necessary.
TLS1.3 is a major update to the TLS protocol, with many security
enhancements. It should be preferred over TLS1.2 whenever possible.
TLS1.3 is different enough that even though the OpenSSL APIs are
technically API/ABI compatible, that when TLS1.3 is negotiated, the
timing of protocol records and of callbacks broke assumptions hard-coded
into the 'tls' module.
This change introduces no API incompatibilities when TLS1.2 is
negotiated. It is the intention that it be backported to current and LTS
release lines with the default maximum TLS protocol reset to 'TLSv1.2'.
This will allow users of those lines to explicitly enable TLS1.3 if they
want.
API incompatibilities between TLS1.2 and TLS1.3 are:
- Renegotiation is not supported by TLS1.3 protocol, attempts to call
`.renegotiate()` will always fail.
- Compiling against a system OpenSSL lower than 1.1.1 is no longer
supported (OpenSSL-1.1.0 used to be supported with configure flags).
- Variations of `conn.write('data'); conn.destroy()` have undefined
behaviour according to the streams API. They may or may not send the
'data', and may or may not cause a ERR_STREAM_DESTROYED error to be
emitted. This has always been true, but conditions under which the write
suceeds is slightly but observably different when TLS1.3 is negotiated
vs when TLS1.2 or below is negotiated.
- If TLS1.3 is negotiated, and a server calls `conn.end()` in its
'secureConnection' listener without any data being written, the client
will not receive session tickets (no 'session' events will be emitted,
and `conn.getSession()` will never return a resumable session).
- The return value of `conn.getSession()` API may not return a resumable
session if called right after the handshake. The effect will be that
clients using the legacy `getSession()` API will resume sessions if
TLS1.2 is negotiated, but will do full handshakes if TLS1.3 is
negotiated. See https://github.com/nodejs/node/pull/25831 for more
information.
PR-URL: https://github.com/nodejs/node/pull/26209
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
2018-11-28 17:58:08 -08:00
|
|
|
Note: `getSession()` works only for TLSv1.2 and below. For TLSv1.3, applications
|
|
|
|
must use the [`'session'`][] event (it also works for TLSv1.2 and below).
|
2019-01-30 12:18:04 -08:00
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `tlsSocket.getSharedSigalgs()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2019-09-23 16:57:03 +03:00
|
|
|
<!-- YAML
|
|
|
|
added: v12.11.0
|
|
|
|
-->
|
|
|
|
|
|
|
|
* Returns: {Array} List of signature algorithms shared between the server and
|
2020-11-09 05:44:32 -08:00
|
|
|
the client in the order of decreasing preference.
|
2019-09-23 16:57:03 +03:00
|
|
|
|
|
|
|
See
|
2021-10-30 15:40:34 -07:00
|
|
|
[SSL\_get\_shared\_sigalgs](https://www.openssl.org/docs/man1.1.1/man3/SSL_get_shared_sigalgs.html)
|
2019-09-23 16:57:03 +03:00
|
|
|
for more information.
|
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `tlsSocket.getTLSTicket()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.4
|
|
|
|
-->
|
2011-12-18 02:09:16 +09:00
|
|
|
|
2018-12-21 14:16:19 -08:00
|
|
|
* {Buffer}
|
|
|
|
|
|
|
|
For a client, returns the TLS session ticket if one is available, or
|
|
|
|
`undefined`. For a server, always returns `undefined`.
|
|
|
|
|
|
|
|
It may be useful for debugging.
|
2011-12-18 02:09:16 +09:00
|
|
|
|
2018-12-21 14:16:19 -08:00
|
|
|
See [Session Resumption][] for more information.
|
2011-12-18 02:09:16 +09:00
|
|
|
|
2021-01-25 16:38:51 -08:00
|
|
|
### `tlsSocket.getX509Certificate()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2021-01-25 16:38:51 -08:00
|
|
|
<!-- YAML
|
2021-02-17 08:16:22 -05:00
|
|
|
added: v15.9.0
|
2021-01-25 16:38:51 -08:00
|
|
|
-->
|
|
|
|
|
|
|
|
* Returns: {X509Certificate}
|
|
|
|
|
|
|
|
Returns the local certificate as an {X509Certificate} object.
|
|
|
|
|
|
|
|
If there is no local certificate, or the socket has been destroyed,
|
|
|
|
`undefined` will be returned.
|
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `tlsSocket.isSessionReused()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2019-01-09 12:44:55 -08:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.5.6
|
|
|
|
-->
|
|
|
|
|
|
|
|
* Returns: {boolean} `true` if the session was reused, `false` otherwise.
|
|
|
|
|
|
|
|
See [Session Resumption][] for more information.
|
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `tlsSocket.localAddress`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.4
|
|
|
|
-->
|
2012-07-07 16:20:23 -04:00
|
|
|
|
2018-04-11 21:07:14 +03:00
|
|
|
* {string}
|
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
Returns the string representation of the local IP address.
|
2012-07-07 16:20:23 -04:00
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `tlsSocket.localPort`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.4
|
|
|
|
-->
|
2013-06-17 12:11:13 +02:00
|
|
|
|
2022-02-02 22:03:56 +01:00
|
|
|
* {integer}
|
2018-04-11 21:07:14 +03:00
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
Returns the numeric representation of the local port.
|
2013-06-17 12:11:13 +02:00
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `tlsSocket.remoteAddress`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.4
|
|
|
|
-->
|
2013-06-17 12:11:13 +02:00
|
|
|
|
2018-04-11 21:07:14 +03:00
|
|
|
* {string}
|
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
Returns the string representation of the remote IP address. For example,
|
2015-11-05 15:04:26 -05:00
|
|
|
`'74.125.127.100'` or `'2001:4860:a005::68'`.
|
2013-06-17 12:11:13 +02:00
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `tlsSocket.remoteFamily`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.4
|
|
|
|
-->
|
2013-06-17 12:11:13 +02:00
|
|
|
|
2018-04-11 21:07:14 +03:00
|
|
|
* {string}
|
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
Returns the string representation of the remote IP family. `'IPv4'` or `'IPv6'`.
|
2013-06-17 12:11:13 +02:00
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `tlsSocket.remotePort`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.4
|
|
|
|
-->
|
2013-06-17 12:11:13 +02:00
|
|
|
|
2022-02-02 22:03:56 +01:00
|
|
|
* {integer}
|
2018-04-11 21:07:14 +03:00
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
Returns the numeric representation of the remote port. For example, `443`.
|
2013-06-17 12:11:13 +02:00
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `tlsSocket.renegotiate(options, callback)`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.8
|
2022-01-24 19:39:16 +03:30
|
|
|
changes:
|
2022-04-19, Version 18.0.0 (Current)
Notable Changes:
Deprecations and Removals:
- (SEMVER-MAJOR) fs: runtime deprecate string coercion in `fs.write`,
`fs.writeFileSync`
(Livia Medeiros) (https://github.com/nodejs/node/pull/42607)
- (SEMVER-MAJOR) dns: remove `dns.lookup` and `dnsPromises.lookup`
options type coercion
(Antoine du Hamel) (https://github.com/nodejs/node/pull/41431)
- (SEMVER-MAJOR) process: runtime deprecate multipleResolves
(Benjamin Gruenbaum) (https://github.com/nodejs/node/pull/41896)
- (SEMVER-MAJOR) stream: remove thenable support (Robert Nagy)
(https://github.com/nodejs/node/pull/40773)
- (SEMVER-MAJOR) tls: move tls.parseCertString to end-of-life
(Tobias Nießen) (https://github.com/nodejs/node/pull/41479)
fetch (experimental):
An experimental fetch API is available on the global scope by default.
The implementation is based upon https://undici.nodejs.org/#/,
an HTTP/1.1 client written for Node.js by contributors to the project.
Through this addition, the following globals are made available: `fetch`
, `FormData`, `Headers`, `Request`, `Response`.
Disable this API with the `--no-experimental-fetch` command-line flag.
Contributed by Michaël Zasso in https://github.com/nodejs/node/pull/41811.
HTTP Timeouts:
`server.headersTimeout`, which limits the amount of time the parser will
wait to receive the complete HTTP headers, is now set to `60000` (60
seconds) by default.
`server.requestTimeout`, which sets the timeout value in milliseconds
for receiving the entire request from the client, is now set to `300000`
(5 minutes) by default.
If these timeouts expire, the server responds with status 408 without
forwarding the request to the request listener and then closes the
connection.
Both timeouts must be set to a non-zero value to protect against
potential Denial-of-Service attacks in case the server is deployed
without a reverse proxy in front.
Contributed by Paolo Insogna in https://github.com/nodejs/node/pull/41263.
Test Runner module (experimental):
The `node:test` module facilitates the creation of JavaScript tests that
report results in TAP format. This module is only available under the
`node:` scheme.
Contributed by Colin Ihrig in https://github.com/nodejs/node/pull/42325.
Toolchain and Compiler Upgrades:
- Prebuilt binaries for Linux are now built on Red Hat Enterprise Linux
(RHEL) 8 and are compatible with Linux distributions based on glibc
2.28 or later, for example, Debian 10, RHEL 8, Ubuntu 20.04.
- Prebuilt binaries for macOS now require macOS 10.15 or later.
- For AIX the minimum supported architecture has been raised from Power
7 to Power 8.
Prebuilt binaries for 32-bit Windows will initially not be available due
to issues building the V8 dependency in Node.js. We hope to restore
32-bit Windows binaries for Node.js 18 with a future V8 update.
Node.js does not support running on operating systems that are no longer
supported by their vendor. For operating systems where their vendor has
planned to end support earlier than April 2025, such as Windows 8.1
(January 2023) and Windows Server 2012 R2 (October 2023), support for
Node.js 18 will end at the earlier date.
Full details about the supported toolchains and compilers are documented
in the Node.js `BUILDING.md` file.
Contributed by Richard Lau in https://github.com/nodejs/node/pull/42292,
https://github.com/nodejs/node/pull/42604 and https://github.com/nodejs/node/pull/42659
, and Michaël Zasso in https://github.com/nodejs/node/pull/42105 and
https://github.com/nodejs/node/pull/42666.
V8 10.1:
The V8 engine is updated to version 10.1, which is part of Chromium 101.
Compared to the version included in Node.js 17.9.0, the following new
features are included:
- The `findLast` and `findLastIndex` array methods.
- Improvements to the `Intl.Locale` API.
- The `Intl.supportedValuesOf` function.
- Improved performance of class fields and private class methods (the
initialization of them is now as fast as ordinary property stores).
The data format returned by the serialization API (`v8.serialize(value)`)
has changed, and cannot be deserialized by earlier versions of Node.js.
On the other hand, it is still possible to deserialize the previous
format, as the API is backwards-compatible.
Contributed by Michaël Zasso in https://github.com/nodejs/node/pull/42657.
Web Streams API (experimental):
Node.js now exposes the experimental implementation of the Web Streams
API on the global scope. This means the following APIs are now globally
available:
- `ReadableStream`, `ReadableStreamDefaultReader`,
`ReadableStreamBYOBReader`, `ReadableStreamBYOBRequest`,
`ReadableByteStreamController`, `ReadableStreamDefaultController`,
`TransformStream`, `TransformStreamDefaultController`, `WritableStream`,
`WritableStreamDefaultWriter`, `WritableStreamDefaultController`,
`ByteLengthQueuingStrategy`, `CountQueuingStrategy`, `TextEncoderStream`,
`TextDecoderStream`, `CompressionStream`, `DecompressionStream`.
Contributed James Snell in https://github.com/nodejs/node/pull/39062,
and Antoine du Hamel in https://github.com/nodejs/node/pull/42225.
Other Notable Changes:
- (SEMVER-MAJOR) buffer: expose Blob as a global
(James M Snell) (https://github.com/nodejs/node/pull/41270)
- (SEMVER-MAJOR) child\_process: improve argument validation
(Rich Trott) (https://github.com/nodejs/node/pull/41305)
- doc: add RafaelGSS to collaborators
(RafaelGSS) (https://github.com/nodejs/node/pull/42718)
- (SEMVER-MAJOR) http: make TCP noDelay enabled by default
(Paolo Insogna) (https://github.com/nodejs/node/pull/42163)
- (SEMVER-MAJOR) net: make `server.address()` return an integer for
`family`
(Antoine du Hamel) (https://github.com/nodejs/node/pull/41431)
- (SEMVER-MAJOR) worker: expose BroadcastChannel as a global
(James M Snell) (https://github.com/nodejs/node/pull/41271)
- (SEMVER-MAJOR) worker: graduate BroadcastChannel to supported
(James M Snell) (https://github.com/nodejs/node/pull/41271)
Semver-Major Commits:
- (SEMVER-MAJOR) assert,util: compare RegExp.lastIndex while using deep
equal checks
(Ruben Bridgewater) (https://github.com/nodejs/node/pull/41020)
- (SEMVER-MAJOR) buffer: refactor `byteLength` to remove outdated
optimizations
(Rongjian Zhang) (https://github.com/nodejs/node/pull/38545)
- (SEMVER-MAJOR) buffer: expose Blob as a global
(James M Snell) (https://github.com/nodejs/node/pull/41270)
- (SEMVER-MAJOR) buffer: graduate Blob from experimental
(James M Snell) (https://github.com/nodejs/node/pull/41270)
- (SEMVER-MAJOR) build: make x86 Windows support temporarily
experimental
(Michaël Zasso) (https://github.com/nodejs/node/pull/42666)
- (SEMVER-MAJOR) build: bump macOS deployment target to 10.15
(Richard Lau) (https://github.com/nodejs/node/pull/42292)
- (SEMVER-MAJOR) build: downgrade Windows 8.1 and server 2012 R2 to
experimental
(Michaël Zasso) (https://github.com/nodejs/node/pull/42105)
- (SEMVER-MAJOR) child\_process: improve argument validation
(Rich Trott) (https://github.com/nodejs/node/pull/41305)
- (SEMVER-MAJOR) cluster: make `kill` to be just `process.kill`
(Bar Admoni) (https://github.com/nodejs/node/pull/34312)
- (SEMVER-MAJOR) crypto: cleanup validation
(Mohammed Keyvanzadeh) (https://github.com/nodejs/node/pull/39841)
- (SEMVER-MAJOR) crypto: prettify othername in PrintGeneralName
(Tobias Nießen) (https://github.com/nodejs/node/pull/42123)
- (SEMVER-MAJOR) crypto: fix X509Certificate toLegacyObject
(Tobias Nießen) (https://github.com/nodejs/node/pull/42124)
- (SEMVER-MAJOR) crypto: use RFC2253 format in PrintGeneralName
(Tobias Nießen) (https://github.com/nodejs/node/pull/42002)
- (SEMVER-MAJOR) crypto: change default check(Host|Email) behavior
(Tobias Nießen) (https://github.com/nodejs/node/pull/41600)
- (SEMVER-MAJOR) deps: V8: cherry-pick semver-major commits from 10.2
(Michaël Zasso) (https://github.com/nodejs/node/pull/42657)
- (SEMVER-MAJOR) deps: update V8 to 10.1.124.6
(Michaël Zasso) (https://github.com/nodejs/node/pull/42657)
- (SEMVER-MAJOR) deps: update V8 to 9.8.177.9
(Michaël Zasso) (https://github.com/nodejs/node/pull/41610)
- (SEMVER-MAJOR) deps: update V8 to 9.7.106.18
(Michaël Zasso) (https://github.com/nodejs/node/pull/40907)
- (SEMVER-MAJOR) dns: remove `dns.lookup` and `dnsPromises.lookup`
options type coercion
(Antoine du Hamel) (https://github.com/nodejs/node/pull/41431)
- (SEMVER-MAJOR) doc: update minimum glibc requirements for Linux
(Richard Lau) (https://github.com/nodejs/node/pull/42659)
- (SEMVER-MAJOR) doc: update AIX minimum supported arch
(Richard Lau) (https://github.com/nodejs/node/pull/42604)
- (SEMVER-MAJOR) fs: runtime deprecate string coercion in `fs.write`,
`fs.writeFileSync`
(Livia Medeiros) (https://github.com/nodejs/node/pull/42607)
- (SEMVER-MAJOR) http: refactor headersTimeout and requestTimeout logic
(Paolo Insogna) (https://github.com/nodejs/node/pull/41263)
- (SEMVER-MAJOR) http: make TCP noDelay enabled by default
(Paolo Insogna) (https://github.com/nodejs/node/pull/42163)
- (SEMVER-MAJOR) lib: enable fetch by default
(Michaël Zasso) (https://github.com/nodejs/node/pull/41811)
- (SEMVER-MAJOR) lib: replace validator and error
(Mohammed Keyvanzadeh) (https://github.com/nodejs/node/pull/41678)
- (SEMVER-MAJOR) module,repl: support 'node:'-only core modules
(Colin Ihrig) (https://github.com/nodejs/node/pull/42325)
- (SEMVER-MAJOR) net: make `server.address()` return an integer for
`family`
(Antoine du Hamel) (https://github.com/nodejs/node/pull/41431)
- (SEMVER-MAJOR) process: disallow some uses of Object.defineProperty()
on process.env
(Himself65) (https://github.com/nodejs/node/pull/28006)
- (SEMVER-MAJOR) process: runtime deprecate multipleResolves
(Benjamin Gruenbaum) (https://github.com/nodejs/node/pull/41896)
- (SEMVER-MAJOR) readline: fix question still called after closed
(Xuguang Mei) (https://github.com/nodejs/node/pull/42464)
- (SEMVER-MAJOR) stream: remove thenable support
(Robert Nagy) (https://github.com/nodejs/node/pull/40773)
- (SEMVER-MAJOR) stream: expose web streams globals, remove runtime
experimental warning
(Antoine du Hamel) (https://github.com/nodejs/node/pull/42225)
- (SEMVER-MAJOR) stream: need to cleanup event listeners if last stream
is readable
(Xuguang Mei) (https://github.com/nodejs/node/pull/41954)
- (SEMVER-MAJOR) stream: revert revert `map` spec compliance
(Benjamin Gruenbaum) (https://github.com/nodejs/node/pull/41933)
- (SEMVER-MAJOR) stream: throw invalid arg type from End Of Stream
(Jithil P Ponnan) (https://github.com/nodejs/node/pull/41766)
- (SEMVER-MAJOR) stream: don't emit finish after destroy
(Robert Nagy) (https://github.com/nodejs/node/pull/40852)
- (SEMVER-MAJOR) stream: add errored and closed props
(Robert Nagy) (https://github.com/nodejs/node/pull/40696)
- (SEMVER-MAJOR) test: add initial test module
(Colin Ihrig) (https://github.com/nodejs/node/pull/42325)
- (SEMVER-MAJOR) timers: refactor internal classes to ES2015 syntax
(Rabbit) (https://github.com/nodejs/node/pull/37408)
- (SEMVER-MAJOR) tls: represent registeredID numerically always
(Tobias Nießen) (https://github.com/nodejs/node/pull/41561)
- (SEMVER-MAJOR) tls: move tls.parseCertString to end-of-life
(Tobias Nießen) (https://github.com/nodejs/node/pull/41479)
- (SEMVER-MAJOR) url: throw on NULL in IPv6 hostname
(Rich Trott) (https://github.com/nodejs/node/pull/42313)
- (SEMVER-MAJOR) v8: make v8.writeHeapSnapshot() error codes consistent
(Darshan Sen) (https://github.com/nodejs/node/pull/42577)
- (SEMVER-MAJOR) v8: make writeHeapSnapshot throw if fopen fails
(Antonio Román) (https://github.com/nodejs/node/pull/41373)
- (SEMVER-MAJOR) worker: expose BroadcastChannel as a global
(James M Snell) (https://github.com/nodejs/node/pull/41271)
- (SEMVER-MAJOR) worker: graduate BroadcastChannel to supported
(James M Snell) (https://github.com/nodejs/node/pull/41271)
PR-URL: https://github.com/nodejs/node/pull/42262
2022-03-08 01:39:47 +00:00
|
|
|
- version: v18.0.0
|
2022-01-24 19:39:16 +03:30
|
|
|
pr-url: https://github.com/nodejs/node/pull/41678
|
|
|
|
description: Passing an invalid callback to the `callback` argument
|
|
|
|
now throws `ERR_INVALID_ARG_TYPE` instead of
|
|
|
|
`ERR_INVALID_CALLBACK`.
|
2016-05-27 10:33:17 -04:00
|
|
|
-->
|
2013-06-17 12:11:13 +02:00
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
* `options` {Object}
|
2018-02-12 02:31:55 -05:00
|
|
|
* `rejectUnauthorized` {boolean} If not `false`, the server certificate is
|
|
|
|
verified against the list of supplied CAs. An `'error'` event is emitted if
|
2018-04-02 04:44:32 +03:00
|
|
|
verification fails; `err.code` contains the OpenSSL error code. **Default:**
|
2016-03-27 16:09:08 +03:00
|
|
|
`true`.
|
2016-05-23 12:46:10 -07:00
|
|
|
* `requestCert`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
tls: support TLSv1.3
This introduces TLS1.3 support and makes it the default max protocol,
but also supports CLI/NODE_OPTIONS switches to disable it if necessary.
TLS1.3 is a major update to the TLS protocol, with many security
enhancements. It should be preferred over TLS1.2 whenever possible.
TLS1.3 is different enough that even though the OpenSSL APIs are
technically API/ABI compatible, that when TLS1.3 is negotiated, the
timing of protocol records and of callbacks broke assumptions hard-coded
into the 'tls' module.
This change introduces no API incompatibilities when TLS1.2 is
negotiated. It is the intention that it be backported to current and LTS
release lines with the default maximum TLS protocol reset to 'TLSv1.2'.
This will allow users of those lines to explicitly enable TLS1.3 if they
want.
API incompatibilities between TLS1.2 and TLS1.3 are:
- Renegotiation is not supported by TLS1.3 protocol, attempts to call
`.renegotiate()` will always fail.
- Compiling against a system OpenSSL lower than 1.1.1 is no longer
supported (OpenSSL-1.1.0 used to be supported with configure flags).
- Variations of `conn.write('data'); conn.destroy()` have undefined
behaviour according to the streams API. They may or may not send the
'data', and may or may not cause a ERR_STREAM_DESTROYED error to be
emitted. This has always been true, but conditions under which the write
suceeds is slightly but observably different when TLS1.3 is negotiated
vs when TLS1.2 or below is negotiated.
- If TLS1.3 is negotiated, and a server calls `conn.end()` in its
'secureConnection' listener without any data being written, the client
will not receive session tickets (no 'session' events will be emitted,
and `conn.getSession()` will never return a resumable session).
- The return value of `conn.getSession()` API may not return a resumable
session if called right after the handshake. The effect will be that
clients using the legacy `getSession()` API will resume sessions if
TLS1.2 is negotiated, but will do full handshakes if TLS1.3 is
negotiated. See https://github.com/nodejs/node/pull/25831 for more
information.
PR-URL: https://github.com/nodejs/node/pull/26209
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
2018-11-28 17:58:08 -08:00
|
|
|
* `callback` {Function} If `renegotiate()` returned `true`, callback is
|
2021-10-10 21:55:04 -07:00
|
|
|
attached once to the `'secure'` event. If `renegotiate()` returned `false`,
|
|
|
|
`callback` will be called in the next tick with an error, unless the
|
|
|
|
`tlsSocket` has been destroyed, in which case `callback` will not be called
|
|
|
|
at all.
|
tls: support TLSv1.3
This introduces TLS1.3 support and makes it the default max protocol,
but also supports CLI/NODE_OPTIONS switches to disable it if necessary.
TLS1.3 is a major update to the TLS protocol, with many security
enhancements. It should be preferred over TLS1.2 whenever possible.
TLS1.3 is different enough that even though the OpenSSL APIs are
technically API/ABI compatible, that when TLS1.3 is negotiated, the
timing of protocol records and of callbacks broke assumptions hard-coded
into the 'tls' module.
This change introduces no API incompatibilities when TLS1.2 is
negotiated. It is the intention that it be backported to current and LTS
release lines with the default maximum TLS protocol reset to 'TLSv1.2'.
This will allow users of those lines to explicitly enable TLS1.3 if they
want.
API incompatibilities between TLS1.2 and TLS1.3 are:
- Renegotiation is not supported by TLS1.3 protocol, attempts to call
`.renegotiate()` will always fail.
- Compiling against a system OpenSSL lower than 1.1.1 is no longer
supported (OpenSSL-1.1.0 used to be supported with configure flags).
- Variations of `conn.write('data'); conn.destroy()` have undefined
behaviour according to the streams API. They may or may not send the
'data', and may or may not cause a ERR_STREAM_DESTROYED error to be
emitted. This has always been true, but conditions under which the write
suceeds is slightly but observably different when TLS1.3 is negotiated
vs when TLS1.2 or below is negotiated.
- If TLS1.3 is negotiated, and a server calls `conn.end()` in its
'secureConnection' listener without any data being written, the client
will not receive session tickets (no 'session' events will be emitted,
and `conn.getSession()` will never return a resumable session).
- The return value of `conn.getSession()` API may not return a resumable
session if called right after the handshake. The effect will be that
clients using the legacy `getSession()` API will resume sessions if
TLS1.2 is negotiated, but will do full handshakes if TLS1.3 is
negotiated. See https://github.com/nodejs/node/pull/25831 for more
information.
PR-URL: https://github.com/nodejs/node/pull/26209
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
2018-11-28 17:58:08 -08:00
|
|
|
|
|
|
|
* Returns: {boolean} `true` if renegotiation was initiated, `false` otherwise.
|
2016-05-23 12:46:10 -07:00
|
|
|
|
|
|
|
The `tlsSocket.renegotiate()` method initiates a TLS renegotiation process.
|
|
|
|
Upon completion, the `callback` function will be passed a single argument
|
|
|
|
that is either an `Error` (if the request failed) or `null`.
|
2015-10-06 20:50:45 +02:00
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
This method can be used to request a peer's certificate after the secure
|
|
|
|
connection has been established.
|
2013-06-17 12:11:13 +02:00
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
When running as the server, the socket will be destroyed with an error after
|
|
|
|
`handshakeTimeout` timeout.
|
2014-04-14 21:15:57 +04:00
|
|
|
|
tls: support TLSv1.3
This introduces TLS1.3 support and makes it the default max protocol,
but also supports CLI/NODE_OPTIONS switches to disable it if necessary.
TLS1.3 is a major update to the TLS protocol, with many security
enhancements. It should be preferred over TLS1.2 whenever possible.
TLS1.3 is different enough that even though the OpenSSL APIs are
technically API/ABI compatible, that when TLS1.3 is negotiated, the
timing of protocol records and of callbacks broke assumptions hard-coded
into the 'tls' module.
This change introduces no API incompatibilities when TLS1.2 is
negotiated. It is the intention that it be backported to current and LTS
release lines with the default maximum TLS protocol reset to 'TLSv1.2'.
This will allow users of those lines to explicitly enable TLS1.3 if they
want.
API incompatibilities between TLS1.2 and TLS1.3 are:
- Renegotiation is not supported by TLS1.3 protocol, attempts to call
`.renegotiate()` will always fail.
- Compiling against a system OpenSSL lower than 1.1.1 is no longer
supported (OpenSSL-1.1.0 used to be supported with configure flags).
- Variations of `conn.write('data'); conn.destroy()` have undefined
behaviour according to the streams API. They may or may not send the
'data', and may or may not cause a ERR_STREAM_DESTROYED error to be
emitted. This has always been true, but conditions under which the write
suceeds is slightly but observably different when TLS1.3 is negotiated
vs when TLS1.2 or below is negotiated.
- If TLS1.3 is negotiated, and a server calls `conn.end()` in its
'secureConnection' listener without any data being written, the client
will not receive session tickets (no 'session' events will be emitted,
and `conn.getSession()` will never return a resumable session).
- The return value of `conn.getSession()` API may not return a resumable
session if called right after the handshake. The effect will be that
clients using the legacy `getSession()` API will resume sessions if
TLS1.2 is negotiated, but will do full handshakes if TLS1.3 is
negotiated. See https://github.com/nodejs/node/pull/25831 for more
information.
PR-URL: https://github.com/nodejs/node/pull/26209
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
2018-11-28 17:58:08 -08:00
|
|
|
For TLSv1.3, renegotiation cannot be initiated, it is not supported by the
|
|
|
|
protocol.
|
|
|
|
|
2024-07-15 11:17:59 -04:00
|
|
|
### `tlsSocket.setKeyCert(context)`
|
|
|
|
|
|
|
|
<!-- YAML
|
2024-08-19 10:01:30 +02:00
|
|
|
added:
|
|
|
|
- v22.5.0
|
|
|
|
- v20.17.0
|
2024-07-15 11:17:59 -04:00
|
|
|
-->
|
|
|
|
|
|
|
|
* `context` {Object|tls.SecureContext} An object containing at least `key` and
|
|
|
|
`cert` properties from the [`tls.createSecureContext()`][] `options`, or a
|
|
|
|
TLS context object created with [`tls.createSecureContext()`][] itself.
|
|
|
|
|
|
|
|
The `tlsSocket.setKeyCert()` method sets the private key and certificate to use
|
|
|
|
for the socket. This is mainly useful if you wish to select a server certificate
|
|
|
|
from a TLS server's `ALPNCallback`.
|
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
### `tlsSocket.setMaxSendFragment(size)`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.11
|
|
|
|
-->
|
2014-04-14 21:15:57 +04:00
|
|
|
|
2018-04-02 04:44:32 +03:00
|
|
|
* `size` {number} The maximum TLS fragment size. The maximum value is `16384`.
|
|
|
|
**Default:** `16384`.
|
2018-04-11 21:07:14 +03:00
|
|
|
* Returns: {boolean}
|
2016-05-23 12:46:10 -07:00
|
|
|
|
|
|
|
The `tlsSocket.setMaxSendFragment()` method sets the maximum TLS fragment size.
|
|
|
|
Returns `true` if setting the limit succeeded; `false` otherwise.
|
2014-04-14 21:15:57 +04:00
|
|
|
|
2016-03-14 22:52:28 +00:00
|
|
|
Smaller fragment sizes decrease the buffering latency on the client: larger
|
2015-11-05 15:04:26 -05:00
|
|
|
fragments are buffered by the TLS layer until the entire fragment is received
|
2016-03-14 22:52:28 +00:00
|
|
|
and its integrity is verified; large fragments can span multiple roundtrips
|
2015-11-05 15:04:26 -05:00
|
|
|
and their processing can be delayed due to packet loss or reordering. However,
|
|
|
|
smaller fragments add extra TLS framing bytes and CPU overhead, which may
|
|
|
|
decrease overall server throughput.
|
2014-04-14 21:15:57 +04:00
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
## `tls.checkServerIdentity(hostname, cert)`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2017-11-22 12:28:59 -08:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.8.4
|
tls: drop support for URI alternative names
Previously, Node.js incorrectly accepted uniformResourceIdentifier (URI)
subject alternative names in checkServerIdentity regardless of the
application protocol. This was incorrect even in the most common cases.
For example, RFC 2818 specifies (and RFC 6125 confirms) that HTTP over
TLS only uses dNSName and iPAddress subject alternative names, but not
uniformResourceIdentifier subject alternative names.
Additionally, name constrained certificate authorities might not be
constrained to specific URIs, allowing them to issue certificates for
URIs that specify hosts that they would not be allowed to issue dNSName
certificates for.
Even for application protocols that make use of URI subject alternative
names (such as SIP, see RFC 5922), Node.js did not implement the
required checks correctly, for example, because checkServerIdentity
ignores the URI scheme.
As a side effect, this also fixes an edge case. When a hostname is not
an IP address and no dNSName subject alternative name exists, the
subject's Common Name should be considered even when an iPAddress
subject alternative name exists.
It remains possible for users to pass a custom checkServerIdentity
function to the TLS implementation in order to implement custom identity
verification logic.
This addresses CVE-2021-44531.
CVE-ID: CVE-2021-44531
PR-URL: https://github.com/nodejs-private/node-private/pull/300
Reviewed-By: Michael Dawson <midawson@redhat.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
2021-12-07 02:14:49 +00:00
|
|
|
changes:
|
2022-01-10, Version 14.18.3 'Fermium' (LTS)
This is a security release.
Notable changes:
Improper handling of URI Subject Alternative Names (Medium)(CVE-2021-44531)
- Accepting arbitrary Subject Alternative Name (SAN) types, unless a PKI
is specifically defined to use a particular SAN type, can result in
bypassing name-constrained intermediates. Node.js was accepting URI SAN
types, which PKIs are often not defined to use. Additionally, when a
protocol allows URI SANs, Node.js did not match the URI correctly.
- Versions of Node.js with the fix for this disable the URI SAN type when
checking a certificate against a hostname. This behavior can be
reverted through the `--security-revert` command-line option.
- More details will be available at
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44531
Certificate Verification Bypass via String Injection (Medium)(CVE-2021-44532)
- Node.js converts SANs (Subject Alternative Names) to a string format.
It uses this string to check peer certificates against hostnames when
validating connections. The string format was subject to an injection
vulnerability when name constraints were used within a certificate
chain, allowing the bypass of these name constraints.
- Versions of Node.js with the fix for this escape SANs containing the
problematic characters in order to prevent the injection. This
behavior can be reverted through the `--security-revert` command-line
option.
- More details will be available at
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44532
Incorrect handling of certificate subject and issuer fields (Medium)(CVE-2021-44533)
- Node.js did not handle multi-value Relative Distinguished Names
correctly. Attackers could craft certificate subjects containing a
single-value Relative Distinguished Name that would be interpreted as a
multi-value Relative Distinguished Name, for example, in order to inject
a Common Name that would allow bypassing the certificate subject
verification.
- Affected versions of Node.js do not accept multi-value Relative
Distinguished Names and are thus not vulnerable to such attacks
themselves. However, third-party code that uses node's ambiguous
presentation of certificate subjects may be vulnerable.
- More details will be available at
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44533
Prototype pollution via `console.table` properties (Low)(CVE-2022-21824)
- Due to the formatting logic of the `console.table()` function it was
not safe to allow user controlled input to be passed to the `properties`
parameter while simultaneously passing a plain object with at least one
property as the first parameter, which could be `__proto__`. The
prototype pollution has very limited control, in that it only allows an
empty string to be assigned numerical keys of the object prototype.
- Versions of Node.js with the fix for this use a null protoype for the
object these properties are being assigned to.
- More details will be available at
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21824
PR-URL: https://github.com/nodejs-private/node-private/pull/310
2022-01-07 14:55:47 +00:00
|
|
|
- version:
|
2022-01-10, Version 17.3.1 (Current)
This is a security release.
Notable changes:
Improper handling of URI Subject Alternative Names (Medium)(CVE-2021-44531)
- Accepting arbitrary Subject Alternative Name (SAN) types, unless a PKI
is specifically defined to use a particular SAN type, can result in
bypassing name-constrained intermediates. Node.js was accepting URI SAN
types, which PKIs are often not defined to use. Additionally, when a
protocol allows URI SANs, Node.js did not match the URI correctly.
- Versions of Node.js with the fix for this disable the URI SAN type when
checking a certificate against a hostname. This behavior can be
reverted through the `--security-revert` command-line option.
- More details will be available at
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44531
Certificate Verification Bypass via String Injection (Medium)(CVE-2021-44532)
- Node.js converts SANs (Subject Alternative Names) to a string format.
It uses this string to check peer certificates against hostnames when
validating connections. The string format was subject to an injection
vulnerability when name constraints were used within a certificate
chain, allowing the bypass of these name constraints.
- Versions of Node.js with the fix for this escape SANs containing the
problematic characters in order to prevent the injection. This
behavior can be reverted through the `--security-revert` command-line
option.
- More details will be available at
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44532
Incorrect handling of certificate subject and issuer fields (Medium)(CVE-2021-44533)
- Node.js did not handle multi-value Relative Distinguished Names
correctly. Attackers could craft certificate subjects containing a
single-value Relative Distinguished Name that would be interpreted as a
multi-value Relative Distinguished Name, for example, in order to inject
a Common Name that would allow bypassing the certificate subject
verification.
- Affected versions of Node.js do not accept multi-value Relative
Distinguished Names and are thus not vulnerable to such attacks
themselves. However, third-party code that uses node's ambiguous
presentation of certificate subjects may be vulnerable.
- More details will be available at
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44533
Prototype pollution via `console.table` properties (Low)(CVE-2022-21824)
- Due to the formatting logic of the `console.table()` function it was
not safe to allow user controlled input to be passed to the `properties`
parameter while simultaneously passing a plain object with at least one
property as the first parameter, which could be `__proto__`. The
prototype pollution has very limited control, in that it only allows an
empty string to be assigned numerical keys of the object prototype.
- Versions of Node.js with the fix for this use a null protoype for the
object these properties are being assigned to.
- More details will be available at
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21824
PR-URL: https://github.com/nodejs-private/node-private/pull/311
2022-01-08 01:38:03 +00:00
|
|
|
- v17.3.1
|
2022-01-10, Version 16.13.2 'Gallium' (LTS)
This is a security release.
Notable changes:
Improper handling of URI Subject Alternative Names (Medium)(CVE-2021-44531)
- Accepting arbitrary Subject Alternative Name (SAN) types, unless a PKI
is specifically defined to use a particular SAN type, can result in
bypassing name-constrained intermediates. Node.js was accepting URI SAN
types, which PKIs are often not defined to use. Additionally, when a
protocol allows URI SANs, Node.js did not match the URI correctly.
- Versions of Node.js with the fix for this disable the URI SAN type when
checking a certificate against a hostname. This behavior can be
reverted through the `--security-revert` command-line option.
- More details will be available at
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44531
Certificate Verification Bypass via String Injection (Medium)(CVE-2021-44532)
- Node.js converts SANs (Subject Alternative Names) to a string format.
It uses this string to check peer certificates against hostnames when
validating connections. The string format was subject to an injection
vulnerability when name constraints were used within a certificate
chain, allowing the bypass of these name constraints.
- Versions of Node.js with the fix for this escape SANs containing the
problematic characters in order to prevent the injection. This
behavior can be reverted through the `--security-revert` command-line
option.
- More details will be available at
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44532
Incorrect handling of certificate subject and issuer fields (Medium)(CVE-2021-44533)
- Node.js did not handle multi-value Relative Distinguished Names
correctly. Attackers could craft certificate subjects containing a
single-value Relative Distinguished Name that would be interpreted as a
multi-value Relative Distinguished Name, for example, in order to inject
a Common Name that would allow bypassing the certificate subject
verification.
- Affected versions of Node.js do not accept multi-value Relative
Distinguished Names and are thus not vulnerable to such attacks
themselves. However, third-party code that uses node's ambiguous
presentation of certificate subjects may be vulnerable.
- More details will be available at
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44533
Prototype pollution via `console.table` properties (Low)(CVE-2022-21824)
- Due to the formatting logic of the `console.table()` function it was
not safe to allow user controlled input to be passed to the `properties`
parameter while simultaneously passing a plain object with at least one
property as the first parameter, which could be `__proto__`. The
prototype pollution has very limited control, in that it only allows an
empty string to be assigned numerical keys of the object prototype.
- Versions of Node.js with the fix for this use a null protoype for the
object these properties are being assigned to.
- More details will be available at
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21824
PR-URL: https://github.com/nodejs-private/node-private/pull/312
2022-01-10 09:34:34 -05:00
|
|
|
- v16.13.2
|
2022-01-10, Version 14.18.3 'Fermium' (LTS)
This is a security release.
Notable changes:
Improper handling of URI Subject Alternative Names (Medium)(CVE-2021-44531)
- Accepting arbitrary Subject Alternative Name (SAN) types, unless a PKI
is specifically defined to use a particular SAN type, can result in
bypassing name-constrained intermediates. Node.js was accepting URI SAN
types, which PKIs are often not defined to use. Additionally, when a
protocol allows URI SANs, Node.js did not match the URI correctly.
- Versions of Node.js with the fix for this disable the URI SAN type when
checking a certificate against a hostname. This behavior can be
reverted through the `--security-revert` command-line option.
- More details will be available at
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44531
Certificate Verification Bypass via String Injection (Medium)(CVE-2021-44532)
- Node.js converts SANs (Subject Alternative Names) to a string format.
It uses this string to check peer certificates against hostnames when
validating connections. The string format was subject to an injection
vulnerability when name constraints were used within a certificate
chain, allowing the bypass of these name constraints.
- Versions of Node.js with the fix for this escape SANs containing the
problematic characters in order to prevent the injection. This
behavior can be reverted through the `--security-revert` command-line
option.
- More details will be available at
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44532
Incorrect handling of certificate subject and issuer fields (Medium)(CVE-2021-44533)
- Node.js did not handle multi-value Relative Distinguished Names
correctly. Attackers could craft certificate subjects containing a
single-value Relative Distinguished Name that would be interpreted as a
multi-value Relative Distinguished Name, for example, in order to inject
a Common Name that would allow bypassing the certificate subject
verification.
- Affected versions of Node.js do not accept multi-value Relative
Distinguished Names and are thus not vulnerable to such attacks
themselves. However, third-party code that uses node's ambiguous
presentation of certificate subjects may be vulnerable.
- More details will be available at
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44533
Prototype pollution via `console.table` properties (Low)(CVE-2022-21824)
- Due to the formatting logic of the `console.table()` function it was
not safe to allow user controlled input to be passed to the `properties`
parameter while simultaneously passing a plain object with at least one
property as the first parameter, which could be `__proto__`. The
prototype pollution has very limited control, in that it only allows an
empty string to be assigned numerical keys of the object prototype.
- Versions of Node.js with the fix for this use a null protoype for the
object these properties are being assigned to.
- More details will be available at
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21824
PR-URL: https://github.com/nodejs-private/node-private/pull/310
2022-01-07 14:55:47 +00:00
|
|
|
- v14.18.3
|
|
|
|
- v12.22.9
|
tls: drop support for URI alternative names
Previously, Node.js incorrectly accepted uniformResourceIdentifier (URI)
subject alternative names in checkServerIdentity regardless of the
application protocol. This was incorrect even in the most common cases.
For example, RFC 2818 specifies (and RFC 6125 confirms) that HTTP over
TLS only uses dNSName and iPAddress subject alternative names, but not
uniformResourceIdentifier subject alternative names.
Additionally, name constrained certificate authorities might not be
constrained to specific URIs, allowing them to issue certificates for
URIs that specify hosts that they would not be allowed to issue dNSName
certificates for.
Even for application protocols that make use of URI subject alternative
names (such as SIP, see RFC 5922), Node.js did not implement the
required checks correctly, for example, because checkServerIdentity
ignores the URI scheme.
As a side effect, this also fixes an edge case. When a hostname is not
an IP address and no dNSName subject alternative name exists, the
subject's Common Name should be considered even when an iPAddress
subject alternative name exists.
It remains possible for users to pass a custom checkServerIdentity
function to the TLS implementation in order to implement custom identity
verification logic.
This addresses CVE-2021-44531.
CVE-ID: CVE-2021-44531
PR-URL: https://github.com/nodejs-private/node-private/pull/300
Reviewed-By: Michael Dawson <midawson@redhat.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
2021-12-07 02:14:49 +00:00
|
|
|
pr-url: https://github.com/nodejs-private/node-private/pull/300
|
|
|
|
description: Support for `uniformResourceIdentifier` subject alternative
|
|
|
|
names has been disabled in response to CVE-2021-44531.
|
2017-11-22 12:28:59 -08:00
|
|
|
-->
|
|
|
|
|
2018-11-06 09:58:42 -08:00
|
|
|
* `hostname` {string} The host name or IP address to verify the certificate
|
|
|
|
against.
|
2018-11-13 16:10:31 -08:00
|
|
|
* `cert` {Object} A [certificate object][] representing the peer's certificate.
|
2018-04-11 21:07:14 +03:00
|
|
|
* Returns: {Error|undefined}
|
2017-11-22 12:28:59 -08:00
|
|
|
|
2018-05-24 14:14:27 +03:00
|
|
|
Verifies the certificate `cert` is issued to `hostname`.
|
2017-11-22 12:28:59 -08:00
|
|
|
|
2018-11-06 09:58:42 -08:00
|
|
|
Returns {Error} object, populating it with `reason`, `host`, and `cert` on
|
2017-12-04 23:49:38 -08:00
|
|
|
failure. On success, returns {undefined}.
|
2017-11-22 12:28:59 -08:00
|
|
|
|
2022-03-29 19:55:41 +02:00
|
|
|
This function is intended to be used in combination with the
|
|
|
|
`checkServerIdentity` option that can be passed to [`tls.connect()`][] and as
|
|
|
|
such operates on a [certificate object][]. For other purposes, consider using
|
|
|
|
[`x509.checkHost()`][] instead.
|
|
|
|
|
2021-11-26 09:58:32 +01:00
|
|
|
This function can be overwritten by providing an alternative function as the
|
|
|
|
`options.checkServerIdentity` option that is passed to `tls.connect()`. The
|
2018-02-05 21:55:16 -08:00
|
|
|
overwriting function can call `tls.checkServerIdentity()` of course, to augment
|
2017-11-22 12:28:59 -08:00
|
|
|
the checks done with additional verification.
|
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
This function is only called if the certificate passed all other checks, such as
|
2017-11-22 12:28:59 -08:00
|
|
|
being issued by trusted CA (`options.ca`).
|
|
|
|
|
tls: drop support for URI alternative names
Previously, Node.js incorrectly accepted uniformResourceIdentifier (URI)
subject alternative names in checkServerIdentity regardless of the
application protocol. This was incorrect even in the most common cases.
For example, RFC 2818 specifies (and RFC 6125 confirms) that HTTP over
TLS only uses dNSName and iPAddress subject alternative names, but not
uniformResourceIdentifier subject alternative names.
Additionally, name constrained certificate authorities might not be
constrained to specific URIs, allowing them to issue certificates for
URIs that specify hosts that they would not be allowed to issue dNSName
certificates for.
Even for application protocols that make use of URI subject alternative
names (such as SIP, see RFC 5922), Node.js did not implement the
required checks correctly, for example, because checkServerIdentity
ignores the URI scheme.
As a side effect, this also fixes an edge case. When a hostname is not
an IP address and no dNSName subject alternative name exists, the
subject's Common Name should be considered even when an iPAddress
subject alternative name exists.
It remains possible for users to pass a custom checkServerIdentity
function to the TLS implementation in order to implement custom identity
verification logic.
This addresses CVE-2021-44531.
CVE-ID: CVE-2021-44531
PR-URL: https://github.com/nodejs-private/node-private/pull/300
Reviewed-By: Michael Dawson <midawson@redhat.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
2021-12-07 02:14:49 +00:00
|
|
|
Earlier versions of Node.js incorrectly accepted certificates for a given
|
|
|
|
`hostname` if a matching `uniformResourceIdentifier` subject alternative name
|
|
|
|
was present (see [CVE-2021-44531][]). Applications that wish to accept
|
|
|
|
`uniformResourceIdentifier` subject alternative names can use a custom
|
|
|
|
`options.checkServerIdentity` function that implements the desired behavior.
|
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
## `tls.connect(options[, callback])`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.3
|
2017-02-21 23:38:49 +01:00
|
|
|
changes:
|
2021-09-04 15:29:35 +02:00
|
|
|
- version:
|
|
|
|
- v15.1.0
|
|
|
|
- v14.18.0
|
2020-10-22 12:04:35 +03:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/35753
|
|
|
|
description: Added `onread` option.
|
2020-04-28 13:54:04 +02:00
|
|
|
- version:
|
2021-09-04 15:29:35 +02:00
|
|
|
- v14.1.0
|
|
|
|
- v13.14.0
|
2020-04-12 02:07:35 +08:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/32786
|
|
|
|
description: The `highWaterMark` option is accepted now.
|
2020-04-24 18:43:06 +02:00
|
|
|
- version:
|
2021-09-04 15:29:35 +02:00
|
|
|
- v13.6.0
|
|
|
|
- v12.16.0
|
2018-10-29 10:38:43 +02:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/23188
|
|
|
|
description: The `pskCallback` option is now supported.
|
2019-08-19 21:14:22 +02:00
|
|
|
- version: v12.9.0
|
2019-05-23 11:48:52 +02:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/27836
|
|
|
|
description: Support the `allowHalfOpen` option.
|
2019-06-03 14:10:53 +02:00
|
|
|
- version: v12.4.0
|
2019-05-22 10:27:16 +02:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/27816
|
|
|
|
description: The `hints` option is now supported.
|
2019-05-06 14:40:25 +02:00
|
|
|
- version: v12.2.0
|
2019-04-30 11:46:56 -04:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/27497
|
|
|
|
description: The `enableTrace` option is now supported.
|
2020-04-24 18:43:06 +02:00
|
|
|
- version:
|
2021-09-04 15:29:35 +02:00
|
|
|
- v11.8.0
|
|
|
|
- v10.16.0
|
2019-01-15 16:12:12 +01:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/25517
|
|
|
|
description: The `timeout` option is supported now.
|
2017-03-15 20:26:14 -07:00
|
|
|
- version: v8.0.0
|
2017-05-04 19:05:35 -04:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/12839
|
|
|
|
description: The `lookup` option is supported now.
|
2017-03-15 20:26:14 -07:00
|
|
|
- version: v8.0.0
|
2017-03-22 07:42:04 +01:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/11984
|
2018-10-01 22:52:30 -04:00
|
|
|
description: The `ALPNProtocols` option can be a `TypedArray` or
|
|
|
|
`DataView` now.
|
2020-10-01 20:23:33 +02:00
|
|
|
- version:
|
2021-09-04 15:29:35 +02:00
|
|
|
- v5.3.0
|
|
|
|
- v4.7.0
|
2017-02-21 23:38:49 +01:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/4246
|
|
|
|
description: The `secureContext` option is supported now.
|
|
|
|
- version: v5.0.0
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/2564
|
|
|
|
description: ALPN options are supported now.
|
2016-05-27 10:33:17 -04:00
|
|
|
-->
|
2011-10-26 21:12:23 +09:00
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
* `options` {Object}
|
2019-04-30 11:46:56 -04:00
|
|
|
* `enableTrace`: See [`tls.createServer()`][]
|
2018-04-02 04:44:32 +03:00
|
|
|
* `host` {string} Host the client should connect to. **Default:**
|
|
|
|
`'localhost'`.
|
2016-05-23 12:46:10 -07:00
|
|
|
* `port` {number} Port the client should connect to.
|
2019-07-06 09:49:58 -04:00
|
|
|
* `path` {string} Creates Unix socket connection to path. If this option is
|
2016-05-23 12:46:10 -07:00
|
|
|
specified, `host` and `port` are ignored.
|
2017-12-11 04:37:47 +01:00
|
|
|
* `socket` {stream.Duplex} Establish secure connection on a given socket
|
|
|
|
rather than creating a new socket. Typically, this is an instance of
|
|
|
|
[`net.Socket`][], but any `Duplex` stream is allowed.
|
2022-05-08 02:24:05 +02:00
|
|
|
If this option is specified, `path`, `host`, and `port` are ignored,
|
2018-04-02 08:38:48 +03:00
|
|
|
except for certificate validation. Usually, a socket is already connected
|
2019-06-20 13:37:44 -06:00
|
|
|
when passed to `tls.connect()`, but it can be connected later.
|
|
|
|
Connection/disconnection/destruction of `socket` is the user's
|
|
|
|
responsibility; calling `tls.connect()` will not cause `net.connect()` to be
|
2016-11-23 14:14:34 -08:00
|
|
|
called.
|
2021-04-22 19:13:08 +02:00
|
|
|
* `allowHalfOpen` {boolean} If set to `false`, then the socket will
|
|
|
|
automatically end the writable side when the readable side ends. If the
|
|
|
|
`socket` option is set, this option has no effect. See the `allowHalfOpen`
|
|
|
|
option of [`net.Socket`][] for details. **Default:** `false`.
|
2018-02-12 02:31:55 -05:00
|
|
|
* `rejectUnauthorized` {boolean} If not `false`, the server certificate is
|
|
|
|
verified against the list of supplied CAs. An `'error'` event is emitted if
|
2018-04-02 04:44:32 +03:00
|
|
|
verification fails; `err.code` contains the OpenSSL error code. **Default:**
|
2016-05-23 12:46:10 -07:00
|
|
|
`true`.
|
2024-05-25 20:33:34 +02:00
|
|
|
* `pskCallback` {Function} For TLS-PSK negotiation, see [Pre-shared keys][].
|
2021-10-10 21:55:04 -07:00
|
|
|
* `ALPNProtocols`: {string\[]|Buffer\[]|TypedArray\[]|DataView\[]|Buffer|
|
2018-10-01 22:52:30 -04:00
|
|
|
TypedArray|DataView}
|
2022-05-08 02:24:05 +02:00
|
|
|
An array of strings, `Buffer`s, `TypedArray`s, or `DataView`s, or a
|
|
|
|
single `Buffer`, `TypedArray`, or `DataView` containing the supported ALPN
|
2018-10-01 22:52:30 -04:00
|
|
|
protocols. `Buffer`s should have the format `[len][name][len][name]...`
|
2018-11-07 13:16:50 -08:00
|
|
|
e.g. `'\x08http/1.1\x08http/1.0'`, where the `len` byte is the length of the
|
|
|
|
next protocol name. Passing an array is usually much simpler, e.g.
|
|
|
|
`['http/1.1', 'http/1.0']`. Protocols earlier in the list have higher
|
|
|
|
preference than those later.
|
2016-05-23 12:46:10 -07:00
|
|
|
* `servername`: {string} Server name for the SNI (Server Name Indication) TLS
|
2018-11-07 13:25:52 -08:00
|
|
|
extension. It is the name of the host being connected to, and must be a host
|
|
|
|
name, and not an IP address. It can be used by a multi-homed server to
|
|
|
|
choose the correct certificate to present to the client, see the
|
|
|
|
`SNICallback` option to [`tls.createServer()`][].
|
2016-05-23 12:46:10 -07:00
|
|
|
* `checkServerIdentity(servername, cert)` {Function} A callback function
|
2018-01-02 01:39:17 +02:00
|
|
|
to be used (instead of the builtin `tls.checkServerIdentity()` function)
|
2020-01-12 07:57:16 -08:00
|
|
|
when checking the server's host name (or the provided `servername` when
|
2017-11-22 12:28:59 -08:00
|
|
|
explicitly set) against the certificate. This should return an {Error} if
|
|
|
|
verification fails. The method should return `undefined` if the `servername`
|
|
|
|
and `cert` are verified.
|
2016-05-23 12:46:10 -07:00
|
|
|
* `session` {Buffer} A `Buffer` instance, containing TLS session.
|
|
|
|
* `minDHSize` {number} Minimum size of the DH parameter in bits to accept a
|
|
|
|
TLS connection. When a server offers a DH parameter with a size less
|
|
|
|
than `minDHSize`, the TLS connection is destroyed and an error is thrown.
|
2018-04-02 04:44:32 +03:00
|
|
|
**Default:** `1024`.
|
2020-04-12 02:07:35 +08:00
|
|
|
* `highWaterMark`: {number} Consistent with the readable stream `highWaterMark` parameter.
|
|
|
|
**Default:** `16 * 1024`.
|
2018-08-26 19:12:53 -07:00
|
|
|
* `secureContext`: TLS context object created with
|
2016-11-23 14:14:34 -08:00
|
|
|
[`tls.createSecureContext()`][]. If a `secureContext` is _not_ provided, one
|
|
|
|
will be created by passing the entire `options` object to
|
2017-05-20 16:15:58 -04:00
|
|
|
`tls.createSecureContext()`.
|
2020-10-22 12:04:35 +03:00
|
|
|
* `onread` {Object} If the `socket` option is missing, incoming data is
|
|
|
|
stored in a single `buffer` and passed to the supplied `callback` when
|
|
|
|
data arrives on the socket, otherwise the option is ignored. See the
|
|
|
|
`onread` option of [`net.Socket`][] for details.
|
2018-08-26 19:12:53 -07:00
|
|
|
* ...: [`tls.createSecureContext()`][] options that are used if the
|
2017-05-20 16:15:58 -04:00
|
|
|
`secureContext` option is missing, otherwise they are ignored.
|
2019-05-22 10:27:16 +02:00
|
|
|
* ...: Any [`socket.connect()`][] option not already listed.
|
2016-05-23 12:46:10 -07:00
|
|
|
* `callback` {Function}
|
2018-10-31 16:53:38 +08:00
|
|
|
* Returns: {tls.TLSSocket}
|
2016-05-23 12:46:10 -07:00
|
|
|
|
|
|
|
The `callback` function, if specified, will be added as a listener for the
|
2015-11-27 18:30:32 -05:00
|
|
|
[`'secureConnect'`][] event.
|
2015-07-22 13:52:23 -07:00
|
|
|
|
2016-02-19 16:54:37 +03:00
|
|
|
`tls.connect()` returns a [`tls.TLSSocket`][] object.
|
2011-07-30 21:03:05 +07:00
|
|
|
|
2020-06-12 13:25:04 +02:00
|
|
|
Unlike the `https` API, `tls.connect()` does not enable the
|
|
|
|
SNI (Server Name Indication) extension by default, which may cause some
|
|
|
|
servers to return an incorrect certificate or reject the connection
|
|
|
|
altogether. To enable SNI, set the `servername` option in addition
|
|
|
|
to `host`.
|
|
|
|
|
2018-11-07 14:18:10 -08:00
|
|
|
The following illustrates a client for the echo server example from
|
2018-10-03 16:24:29 +08:00
|
|
|
[`tls.createServer()`][]:
|
2010-12-08 13:22:12 -08:00
|
|
|
|
2024-12-13 14:09:28 -03:00
|
|
|
```mjs
|
2018-11-07 14:18:10 -08:00
|
|
|
// Assumes an echo server that is listening on port 8000.
|
2024-12-13 14:09:28 -03:00
|
|
|
import { connect } from 'node:tls';
|
|
|
|
import { readFileSync } from 'node:fs';
|
|
|
|
import { stdin } from 'node:process';
|
|
|
|
|
|
|
|
const options = {
|
|
|
|
// Necessary only if the server requires client certificate authentication.
|
|
|
|
key: readFileSync('client-key.pem'),
|
|
|
|
cert: readFileSync('client-cert.pem'),
|
|
|
|
|
|
|
|
// Necessary only if the server uses a self-signed certificate.
|
|
|
|
ca: [ readFileSync('server-cert.pem') ],
|
|
|
|
|
|
|
|
// Necessary only if the server's cert isn't for "localhost".
|
|
|
|
checkServerIdentity: () => { return null; },
|
|
|
|
};
|
|
|
|
|
|
|
|
const socket = connect(8000, options, () => {
|
|
|
|
console.log('client connected',
|
|
|
|
socket.authorized ? 'authorized' : 'unauthorized');
|
|
|
|
stdin.pipe(socket);
|
|
|
|
stdin.resume();
|
|
|
|
});
|
|
|
|
socket.setEncoding('utf8');
|
|
|
|
socket.on('data', (data) => {
|
|
|
|
console.log(data);
|
|
|
|
});
|
|
|
|
socket.on('end', () => {
|
|
|
|
console.log('server ends connection');
|
|
|
|
});
|
|
|
|
```
|
|
|
|
|
|
|
|
```cjs
|
|
|
|
// Assumes an echo server that is listening on port 8000.
|
|
|
|
const { connect } = require('node:tls');
|
|
|
|
const { readFileSync } = require('node:fs');
|
2016-01-17 18:39:07 +01:00
|
|
|
|
|
|
|
const options = {
|
2018-11-07 14:18:10 -08:00
|
|
|
// Necessary only if the server requires client certificate authentication.
|
2024-12-13 14:09:28 -03:00
|
|
|
key: readFileSync('client-key.pem'),
|
|
|
|
cert: readFileSync('client-cert.pem'),
|
2016-01-17 18:39:07 +01:00
|
|
|
|
2018-11-07 14:18:10 -08:00
|
|
|
// Necessary only if the server uses a self-signed certificate.
|
2024-12-13 14:09:28 -03:00
|
|
|
ca: [ readFileSync('server-cert.pem') ],
|
2016-01-17 18:39:07 +01:00
|
|
|
|
2018-11-07 14:18:10 -08:00
|
|
|
// Necessary only if the server's cert isn't for "localhost".
|
|
|
|
checkServerIdentity: () => { return null; },
|
2016-01-17 18:39:07 +01:00
|
|
|
};
|
|
|
|
|
2024-12-13 14:09:28 -03:00
|
|
|
const socket = connect(8000, options, () => {
|
2016-01-17 18:39:07 +01:00
|
|
|
console.log('client connected',
|
|
|
|
socket.authorized ? 'authorized' : 'unauthorized');
|
|
|
|
process.stdin.pipe(socket);
|
|
|
|
process.stdin.resume();
|
|
|
|
});
|
|
|
|
socket.setEncoding('utf8');
|
|
|
|
socket.on('data', (data) => {
|
|
|
|
console.log(data);
|
|
|
|
});
|
|
|
|
socket.on('end', () => {
|
2018-11-07 14:18:10 -08:00
|
|
|
console.log('server ends connection');
|
2016-01-17 18:39:07 +01:00
|
|
|
});
|
|
|
|
```
|
2013-01-23 15:17:04 -08:00
|
|
|
|
2024-12-13 14:09:28 -03:00
|
|
|
To generate the certificate and key for this example, run:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
openssl req -x509 -newkey rsa:2048 -nodes -sha256 -subj '/CN=localhost' \
|
|
|
|
-keyout client-key.pem -out client-cert.pem
|
|
|
|
```
|
|
|
|
|
|
|
|
Then, to generate the `server-cert.pem` certificate for this example, run:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
openssl pkcs12 -certpbe AES-256-CBC -export -out server-cert.pem \
|
|
|
|
-inkey client-key.pem -in client-cert.pem
|
|
|
|
```
|
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
## `tls.connect(path[, options][, callback])`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2017-02-13 04:49:35 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.3
|
|
|
|
-->
|
|
|
|
|
|
|
|
* `path` {string} Default value for `options.path`.
|
|
|
|
* `options` {Object} See [`tls.connect()`][].
|
|
|
|
* `callback` {Function} See [`tls.connect()`][].
|
2018-10-31 16:53:38 +08:00
|
|
|
* Returns: {tls.TLSSocket}
|
2017-02-13 04:49:35 +02:00
|
|
|
|
|
|
|
Same as [`tls.connect()`][] except that `path` can be provided
|
|
|
|
as an argument instead of an option.
|
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
A path option, if specified, will take precedence over the path argument.
|
2017-02-13 04:49:35 +02:00
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
## `tls.connect(port[, host][, options][, callback])`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2017-02-13 04:49:35 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.3
|
|
|
|
-->
|
|
|
|
|
|
|
|
* `port` {number} Default value for `options.port`.
|
2018-08-26 19:12:53 -07:00
|
|
|
* `host` {string} Default value for `options.host`.
|
2017-02-13 04:49:35 +02:00
|
|
|
* `options` {Object} See [`tls.connect()`][].
|
|
|
|
* `callback` {Function} See [`tls.connect()`][].
|
2018-10-31 16:53:38 +08:00
|
|
|
* Returns: {tls.TLSSocket}
|
2017-02-13 04:49:35 +02:00
|
|
|
|
|
|
|
Same as [`tls.connect()`][] except that `port` and `host` can be provided
|
|
|
|
as arguments instead of options.
|
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
A port or host option, if specified, will take precedence over any port or host
|
|
|
|
argument.
|
2017-02-13 04:49:35 +02:00
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
## `tls.createSecureContext([options])`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.13
|
2017-02-21 23:38:49 +01:00
|
|
|
changes:
|
2024-09-30 10:57:59 +02:00
|
|
|
- version:
|
|
|
|
- v22.9.0
|
|
|
|
- v20.18.0
|
2024-09-05 16:31:24 +02:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/54790
|
|
|
|
description: The `allowPartialTrustChain` option has been added.
|
2024-07-19 15:32:30 +02:00
|
|
|
- version:
|
|
|
|
- v22.4.0
|
|
|
|
- v20.16.0
|
2024-06-07 17:10:47 +01:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/53329
|
|
|
|
description: The `clientCertEngine`, `privateKeyEngine` and
|
|
|
|
`privateKeyIdentifier` options depend on custom engine
|
|
|
|
support in OpenSSL which is deprecated in OpenSSL 3.
|
2023-04-10 23:02:28 -04:00
|
|
|
- version:
|
|
|
|
- v19.8.0
|
|
|
|
- v18.16.0
|
2023-03-12 19:35:55 +01:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/46978
|
|
|
|
description: The `dhparam` option can now be set to `'auto'` to
|
|
|
|
enable DHE with appropriate well-known parameters.
|
2019-10-10 14:31:33 +02:00
|
|
|
- version: v12.12.0
|
2019-08-05 12:03:23 +02:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/28973
|
|
|
|
description: Added `privateKeyIdentifier` and `privateKeyEngine` options
|
|
|
|
to get private key from an OpenSSL engine.
|
2019-09-25 00:45:45 +02:00
|
|
|
- version: v12.11.0
|
2019-09-18 16:48:44 +02:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/29598
|
|
|
|
description: Added `sigalgs` option to override supported signature
|
|
|
|
algorithms.
|
2019-03-22 13:19:46 +00:00
|
|
|
- version: v12.0.0
|
tls: support TLSv1.3
This introduces TLS1.3 support and makes it the default max protocol,
but also supports CLI/NODE_OPTIONS switches to disable it if necessary.
TLS1.3 is a major update to the TLS protocol, with many security
enhancements. It should be preferred over TLS1.2 whenever possible.
TLS1.3 is different enough that even though the OpenSSL APIs are
technically API/ABI compatible, that when TLS1.3 is negotiated, the
timing of protocol records and of callbacks broke assumptions hard-coded
into the 'tls' module.
This change introduces no API incompatibilities when TLS1.2 is
negotiated. It is the intention that it be backported to current and LTS
release lines with the default maximum TLS protocol reset to 'TLSv1.2'.
This will allow users of those lines to explicitly enable TLS1.3 if they
want.
API incompatibilities between TLS1.2 and TLS1.3 are:
- Renegotiation is not supported by TLS1.3 protocol, attempts to call
`.renegotiate()` will always fail.
- Compiling against a system OpenSSL lower than 1.1.1 is no longer
supported (OpenSSL-1.1.0 used to be supported with configure flags).
- Variations of `conn.write('data'); conn.destroy()` have undefined
behaviour according to the streams API. They may or may not send the
'data', and may or may not cause a ERR_STREAM_DESTROYED error to be
emitted. This has always been true, but conditions under which the write
suceeds is slightly but observably different when TLS1.3 is negotiated
vs when TLS1.2 or below is negotiated.
- If TLS1.3 is negotiated, and a server calls `conn.end()` in its
'secureConnection' listener without any data being written, the client
will not receive session tickets (no 'session' events will be emitted,
and `conn.getSession()` will never return a resumable session).
- The return value of `conn.getSession()` API may not return a resumable
session if called right after the handshake. The effect will be that
clients using the legacy `getSession()` API will resume sessions if
TLS1.2 is negotiated, but will do full handshakes if TLS1.3 is
negotiated. See https://github.com/nodejs/node/pull/25831 for more
information.
PR-URL: https://github.com/nodejs/node/pull/26209
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
2018-11-28 17:58:08 -08:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/26209
|
|
|
|
description: TLSv1.3 support added.
|
2018-12-18 01:00:49 +00:00
|
|
|
- version: v11.5.0
|
2018-12-17 12:16:13 -05:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/24733
|
2018-11-30 11:20:55 -08:00
|
|
|
description: The `ca:` option now supports `BEGIN TRUSTED CERTIFICATE`.
|
2020-04-24 18:43:06 +02:00
|
|
|
- version:
|
|
|
|
- v11.4.0
|
|
|
|
- v10.16.0
|
2018-11-30 10:53:30 -08:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/24405
|
|
|
|
description: The `minVersion` and `maxVersion` can be used to restrict
|
|
|
|
the allowed TLS protocol versions.
|
2018-09-19 19:40:44 +02:00
|
|
|
- version: v10.0.0
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/19794
|
|
|
|
description: The `ecdhCurve` cannot be set to `false` anymore due to a
|
|
|
|
change in OpenSSL.
|
2017-12-12 03:09:37 -05:00
|
|
|
- version: v9.3.0
|
2017-12-12 04:18:02 -05:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/14903
|
2017-08-17 13:54:05 -07:00
|
|
|
description: The `options` parameter can now include `clientCertEngine`.
|
2019-01-14 12:11:49 -08:00
|
|
|
- version: v9.0.0
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/15206
|
|
|
|
description: The `ecdhCurve` option can now be multiple `':'` separated
|
|
|
|
curve names or `'auto'`.
|
2017-02-21 23:38:49 +01:00
|
|
|
- version: v7.3.0
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/10294
|
|
|
|
description: If the `key` option is an array, individual entries do not
|
2018-04-29 20:46:41 +03:00
|
|
|
need a `passphrase` property anymore. `Array` entries can also
|
2017-02-21 23:38:49 +01:00
|
|
|
just be `string`s or `Buffer`s now.
|
|
|
|
- version: v5.2.0
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/4099
|
|
|
|
description: The `ca` option can now be a single string containing multiple
|
|
|
|
CA certificates.
|
2016-05-27 10:33:17 -04:00
|
|
|
-->
|
2013-01-23 15:17:04 -08:00
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
* `options` {Object}
|
2024-09-05 16:31:24 +02:00
|
|
|
* `allowPartialTrustChain` {boolean} Treat intermediate (non-self-signed)
|
|
|
|
certificates in the trust CA certificate list as trusted.
|
2021-10-10 21:55:04 -07:00
|
|
|
* `ca` {string|string\[]|Buffer|Buffer\[]} Optionally override the trusted CA
|
2025-03-06 18:16:27 +01:00
|
|
|
certificates. If not specified, the CA certificates trusted by default are
|
|
|
|
the same as the ones returned by [`tls.getCACertificates()`][] using the
|
|
|
|
`default` type. If specified, the default list would be completely replaced
|
|
|
|
(instead of being concatenated) by the certificates in the `ca` option.
|
|
|
|
Users need to concatenate manually if they wish to add additional certificates
|
|
|
|
instead of completely overriding the default.
|
|
|
|
The value can be a string or `Buffer`, or an `Array` of
|
2018-04-29 20:46:41 +03:00
|
|
|
strings and/or `Buffer`s. Any string or `Buffer` can contain multiple PEM
|
|
|
|
CAs concatenated together. The peer's certificate must be chainable to a CA
|
2018-04-02 08:38:48 +03:00
|
|
|
trusted by the server for the connection to be authenticated. When using
|
2016-12-21 09:33:13 -08:00
|
|
|
certificates that are not chainable to a well-known CA, the certificate's CA
|
|
|
|
must be explicitly specified as a trusted or the connection will fail to
|
|
|
|
authenticate.
|
|
|
|
If the peer uses a certificate that doesn't match or chain to one of the
|
|
|
|
default CAs, use the `ca` option to provide a CA certificate that the peer's
|
|
|
|
certificate can match or chain to.
|
|
|
|
For self-signed certificates, the certificate is its own CA, and must be
|
|
|
|
provided.
|
2018-11-30 11:20:55 -08:00
|
|
|
For PEM encoded certificates, supported types are "TRUSTED CERTIFICATE",
|
|
|
|
"X509 CERTIFICATE", and "CERTIFICATE".
|
2021-10-10 21:55:04 -07:00
|
|
|
* `cert` {string|string\[]|Buffer|Buffer\[]} Cert chains in PEM format. One
|
|
|
|
cert chain should be provided per private key. Each cert chain should
|
|
|
|
consist of the PEM formatted certificate for a provided private `key`,
|
|
|
|
followed by the PEM formatted intermediate certificates (if any), in order,
|
|
|
|
and not including the root CA (the root CA must be pre-known to the peer,
|
|
|
|
see `ca`). When providing multiple cert chains, they do not have to be in
|
|
|
|
the same order as their private keys in `key`. If the intermediate
|
|
|
|
certificates are not provided, the peer will not be able to validate the
|
|
|
|
certificate, and the handshake will fail.
|
2019-09-23 16:57:03 +03:00
|
|
|
* `sigalgs` {string} Colon-separated list of supported signature algorithms.
|
2019-09-18 16:48:44 +02:00
|
|
|
The list can contain digest algorithms (`SHA256`, `MD5` etc.), public key
|
|
|
|
algorithms (`RSA-PSS`, `ECDSA` etc.), combination of both (e.g
|
|
|
|
'RSA+SHA384') or TLS v1.3 scheme names (e.g. `rsa_pss_pss_sha512`).
|
2021-10-30 15:40:34 -07:00
|
|
|
See [OpenSSL man pages](https://www.openssl.org/docs/man1.1.1/man3/SSL_CTX_set1_sigalgs_list.html)
|
2019-09-18 16:48:44 +02:00
|
|
|
for more info.
|
2018-08-26 19:12:53 -07:00
|
|
|
* `ciphers` {string} Cipher suite specification, replacing the default. For
|
2022-02-22 16:26:52 +01:00
|
|
|
more information, see [Modifying the default TLS cipher suite][]. Permitted
|
2018-08-26 19:12:53 -07:00
|
|
|
ciphers can be obtained via [`tls.getCiphers()`][]. Cipher names must be
|
|
|
|
uppercased in order for OpenSSL to accept them.
|
|
|
|
* `clientCertEngine` {string} Name of an OpenSSL engine which can provide the
|
2024-06-07 17:10:47 +01:00
|
|
|
client certificate. **Deprecated.**
|
2021-10-10 21:55:04 -07:00
|
|
|
* `crl` {string|string\[]|Buffer|Buffer\[]} PEM formatted CRLs (Certificate
|
2018-08-26 19:12:53 -07:00
|
|
|
Revocation Lists).
|
2023-03-12 19:35:55 +01:00
|
|
|
* `dhparam` {string|Buffer} `'auto'` or custom Diffie-Hellman parameters,
|
|
|
|
required for non-ECDHE [perfect forward secrecy][]. If omitted or invalid,
|
|
|
|
the parameters are silently discarded and DHE ciphers will not be available.
|
|
|
|
[ECDHE][]-based [perfect forward secrecy][] will still be available.
|
2018-06-04 12:23:26 -07:00
|
|
|
* `ecdhCurve` {string} A string describing a named curve or a colon separated
|
|
|
|
list of curve NIDs or names, for example `P-521:P-384:P-256`, to use for
|
2018-09-19 19:40:44 +02:00
|
|
|
ECDH key agreement. Set to `auto` to select the
|
2018-06-04 12:23:26 -07:00
|
|
|
curve automatically. Use [`crypto.getCurves()`][] to obtain a list of
|
|
|
|
available curve names. On recent releases, `openssl ecparam -list_curves`
|
|
|
|
will also display the name and description of each available elliptic curve.
|
2019-10-02 00:31:57 -04:00
|
|
|
**Default:** [`tls.DEFAULT_ECDH_CURVE`][].
|
2018-06-04 12:23:26 -07:00
|
|
|
* `honorCipherOrder` {boolean} Attempt to use the server's cipher suite
|
|
|
|
preferences instead of the client's. When `true`, causes
|
|
|
|
`SSL_OP_CIPHER_SERVER_PREFERENCE` to be set in `secureOptions`, see
|
|
|
|
[OpenSSL Options][] for more information.
|
2021-10-10 21:55:04 -07:00
|
|
|
* `key` {string|string\[]|Buffer|Buffer\[]|Object\[]} Private keys in PEM
|
|
|
|
format. PEM allows the option of private keys being encrypted. Encrypted
|
|
|
|
keys will be decrypted with `options.passphrase`. Multiple keys using
|
|
|
|
different algorithms can be provided either as an array of unencrypted key
|
|
|
|
strings or buffers, or an array of objects in the form
|
2019-08-30 00:10:19 -04:00
|
|
|
`{pem: <string|buffer>[, passphrase: <string>]}`. The object form can only
|
|
|
|
occur in an array. `object.passphrase` is optional. Encrypted keys will be
|
|
|
|
decrypted with `object.passphrase` if provided, or `options.passphrase` if
|
|
|
|
it is not.
|
2019-08-05 12:03:23 +02:00
|
|
|
* `privateKeyEngine` {string} Name of an OpenSSL engine to get private key
|
2024-06-07 17:10:47 +01:00
|
|
|
from. Should be used together with `privateKeyIdentifier`. **Deprecated.**
|
2019-08-05 12:03:23 +02:00
|
|
|
* `privateKeyIdentifier` {string} Identifier of a private key managed by
|
|
|
|
an OpenSSL engine. Should be used together with `privateKeyEngine`.
|
|
|
|
Should not be set together with `key`, because both options define a
|
2024-06-07 17:10:47 +01:00
|
|
|
private key in different ways. **Deprecated.**
|
2018-05-06 13:52:34 +09:00
|
|
|
* `maxVersion` {string} Optionally set the maximum TLS version to allow. One
|
2019-10-04 04:07:49 +02:00
|
|
|
of `'TLSv1.3'`, `'TLSv1.2'`, `'TLSv1.1'`, or `'TLSv1'`. Cannot be specified
|
2021-04-11 07:38:14 -07:00
|
|
|
along with the `secureProtocol` option; use one or the other.
|
2019-03-07 14:51:33 -08:00
|
|
|
**Default:** [`tls.DEFAULT_MAX_VERSION`][].
|
2018-05-06 13:52:34 +09:00
|
|
|
* `minVersion` {string} Optionally set the minimum TLS version to allow. One
|
2019-10-04 04:07:49 +02:00
|
|
|
of `'TLSv1.3'`, `'TLSv1.2'`, `'TLSv1.1'`, or `'TLSv1'`. Cannot be specified
|
2021-04-11 07:38:14 -07:00
|
|
|
along with the `secureProtocol` option; use one or the other. Avoid
|
|
|
|
setting to less than TLSv1.2, but it may be required for
|
2024-07-10 20:41:34 +10:00
|
|
|
interoperability. Versions before TLSv1.2 may require downgrading the [OpenSSL Security Level][].
|
2019-03-07 14:51:33 -08:00
|
|
|
**Default:** [`tls.DEFAULT_MIN_VERSION`][].
|
2018-08-26 19:12:53 -07:00
|
|
|
* `passphrase` {string} Shared passphrase used for a single private key and/or
|
|
|
|
a PFX.
|
2021-10-10 21:55:04 -07:00
|
|
|
* `pfx` {string|string\[]|Buffer|Buffer\[]|Object\[]} PFX or PKCS12 encoded
|
2018-08-26 19:12:53 -07:00
|
|
|
private key and certificate chain. `pfx` is an alternative to providing
|
|
|
|
`key` and `cert` individually. PFX is usually encrypted, if it is,
|
2018-06-04 12:23:26 -07:00
|
|
|
`passphrase` will be used to decrypt it. Multiple PFX can be provided either
|
|
|
|
as an array of unencrypted PFX buffers, or an array of objects in the form
|
|
|
|
`{buf: <string|buffer>[, passphrase: <string>]}`. The object form can only
|
|
|
|
occur in an array. `object.passphrase` is optional. Encrypted PFX will be
|
|
|
|
decrypted with `object.passphrase` if provided, or `options.passphrase` if
|
|
|
|
it is not.
|
2017-05-26 13:51:15 -04:00
|
|
|
* `secureOptions` {number} Optionally affect the OpenSSL protocol behavior,
|
2016-11-23 14:14:34 -08:00
|
|
|
which is not usually necessary. This should be used carefully if at all!
|
|
|
|
Value is a numeric bitmask of the `SSL_OP_*` options from
|
|
|
|
[OpenSSL Options][].
|
tls: support TLSv1.3
This introduces TLS1.3 support and makes it the default max protocol,
but also supports CLI/NODE_OPTIONS switches to disable it if necessary.
TLS1.3 is a major update to the TLS protocol, with many security
enhancements. It should be preferred over TLS1.2 whenever possible.
TLS1.3 is different enough that even though the OpenSSL APIs are
technically API/ABI compatible, that when TLS1.3 is negotiated, the
timing of protocol records and of callbacks broke assumptions hard-coded
into the 'tls' module.
This change introduces no API incompatibilities when TLS1.2 is
negotiated. It is the intention that it be backported to current and LTS
release lines with the default maximum TLS protocol reset to 'TLSv1.2'.
This will allow users of those lines to explicitly enable TLS1.3 if they
want.
API incompatibilities between TLS1.2 and TLS1.3 are:
- Renegotiation is not supported by TLS1.3 protocol, attempts to call
`.renegotiate()` will always fail.
- Compiling against a system OpenSSL lower than 1.1.1 is no longer
supported (OpenSSL-1.1.0 used to be supported with configure flags).
- Variations of `conn.write('data'); conn.destroy()` have undefined
behaviour according to the streams API. They may or may not send the
'data', and may or may not cause a ERR_STREAM_DESTROYED error to be
emitted. This has always been true, but conditions under which the write
suceeds is slightly but observably different when TLS1.3 is negotiated
vs when TLS1.2 or below is negotiated.
- If TLS1.3 is negotiated, and a server calls `conn.end()` in its
'secureConnection' listener without any data being written, the client
will not receive session tickets (no 'session' events will be emitted,
and `conn.getSession()` will never return a resumable session).
- The return value of `conn.getSession()` API may not return a resumable
session if called right after the handshake. The effect will be that
clients using the legacy `getSession()` API will resume sessions if
TLS1.2 is negotiated, but will do full handshakes if TLS1.3 is
negotiated. See https://github.com/nodejs/node/pull/25831 for more
information.
PR-URL: https://github.com/nodejs/node/pull/26209
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
2018-11-28 17:58:08 -08:00
|
|
|
* `secureProtocol` {string} Legacy mechanism to select the TLS protocol
|
|
|
|
version to use, it does not support independent control of the minimum and
|
2020-06-20 16:46:33 -07:00
|
|
|
maximum version, and does not support limiting the protocol to TLSv1.3. Use
|
|
|
|
`minVersion` and `maxVersion` instead. The possible values are listed as
|
2021-10-10 21:55:04 -07:00
|
|
|
[SSL\_METHODS][SSL_METHODS], use the function names as strings. For example,
|
|
|
|
use `'TLSv1_1_method'` to force TLS version 1.1, or `'TLS_method'` to allow
|
|
|
|
any TLS protocol version up to TLSv1.3. It is not recommended to use TLS
|
tls: support TLSv1.3
This introduces TLS1.3 support and makes it the default max protocol,
but also supports CLI/NODE_OPTIONS switches to disable it if necessary.
TLS1.3 is a major update to the TLS protocol, with many security
enhancements. It should be preferred over TLS1.2 whenever possible.
TLS1.3 is different enough that even though the OpenSSL APIs are
technically API/ABI compatible, that when TLS1.3 is negotiated, the
timing of protocol records and of callbacks broke assumptions hard-coded
into the 'tls' module.
This change introduces no API incompatibilities when TLS1.2 is
negotiated. It is the intention that it be backported to current and LTS
release lines with the default maximum TLS protocol reset to 'TLSv1.2'.
This will allow users of those lines to explicitly enable TLS1.3 if they
want.
API incompatibilities between TLS1.2 and TLS1.3 are:
- Renegotiation is not supported by TLS1.3 protocol, attempts to call
`.renegotiate()` will always fail.
- Compiling against a system OpenSSL lower than 1.1.1 is no longer
supported (OpenSSL-1.1.0 used to be supported with configure flags).
- Variations of `conn.write('data'); conn.destroy()` have undefined
behaviour according to the streams API. They may or may not send the
'data', and may or may not cause a ERR_STREAM_DESTROYED error to be
emitted. This has always been true, but conditions under which the write
suceeds is slightly but observably different when TLS1.3 is negotiated
vs when TLS1.2 or below is negotiated.
- If TLS1.3 is negotiated, and a server calls `conn.end()` in its
'secureConnection' listener without any data being written, the client
will not receive session tickets (no 'session' events will be emitted,
and `conn.getSession()` will never return a resumable session).
- The return value of `conn.getSession()` API may not return a resumable
session if called right after the handshake. The effect will be that
clients using the legacy `getSession()` API will resume sessions if
TLS1.2 is negotiated, but will do full handshakes if TLS1.3 is
negotiated. See https://github.com/nodejs/node/pull/25831 for more
information.
PR-URL: https://github.com/nodejs/node/pull/26209
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
2018-11-28 17:58:08 -08:00
|
|
|
versions less than 1.2, but it may be required for interoperability.
|
|
|
|
**Default:** none, see `minVersion`.
|
2018-08-26 19:12:53 -07:00
|
|
|
* `sessionIdContext` {string} Opaque identifier used by servers to ensure
|
|
|
|
session state is not shared between applications. Unused by clients.
|
2021-04-10 22:23:34 -07:00
|
|
|
* `ticketKeys`: {Buffer} 48-bytes of cryptographically strong pseudorandom
|
2020-06-19 18:41:00 +02:00
|
|
|
data. See [Session Resumption][] for more information.
|
|
|
|
* `sessionTimeout` {number} The number of seconds after which a TLS session
|
|
|
|
created by the server will no longer be resumable. See
|
|
|
|
[Session Resumption][] for more information. **Default:** `300`.
|
2017-05-20 16:15:58 -04:00
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
[`tls.createServer()`][] sets the default value of the `honorCipherOrder` option
|
|
|
|
to `true`, other APIs that create secure contexts leave it unset.
|
2017-05-20 16:15:58 -04:00
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
[`tls.createServer()`][] uses a 128 bit truncated SHA1 hash value generated
|
|
|
|
from `process.argv` as the default value of the `sessionIdContext` option, other
|
|
|
|
APIs that create secure contexts have no default value.
|
2016-05-23 12:46:10 -07:00
|
|
|
|
2019-03-25 12:12:17 -07:00
|
|
|
The `tls.createSecureContext()` method creates a `SecureContext` object. It is
|
2023-01-17 17:53:41 -08:00
|
|
|
usable as an argument to several `tls` APIs, such as [`server.addContext()`][],
|
|
|
|
but has no public methods. The [`tls.Server`][] constructor and the
|
|
|
|
[`tls.createServer()`][] method do not support the `secureContext` option.
|
2016-05-23 12:46:10 -07:00
|
|
|
|
2021-10-10 21:55:04 -07:00
|
|
|
A key is _required_ for ciphers that use certificates. Either `key` or
|
2016-11-23 14:14:34 -08:00
|
|
|
`pfx` can be used to provide it.
|
|
|
|
|
2019-07-06 10:46:48 -04:00
|
|
|
If the `ca` option is not given, then Node.js will default to using
|
|
|
|
[Mozilla's publicly trusted list of CAs][].
|
2011-08-11 17:13:13 +09:00
|
|
|
|
2023-03-12 19:35:55 +01:00
|
|
|
Custom DHE parameters are discouraged in favor of the new `dhparam: 'auto'`
|
|
|
|
option. When set to `'auto'`, well-known DHE parameters of sufficient strength
|
|
|
|
will be selected automatically. Otherwise, if necessary, `openssl dhparam` can
|
|
|
|
be used to create custom parameters. The key length must be greater than or
|
|
|
|
equal to 1024 bits or else an error will be thrown. Although 1024 bits is
|
|
|
|
permissible, use 2048 bits or larger for stronger security.
|
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
## `tls.createServer([options][, secureConnectionListener])`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.3.2
|
2017-02-21 23:38:49 +01:00
|
|
|
changes:
|
2024-07-19 15:32:30 +02:00
|
|
|
- version:
|
|
|
|
- v22.4.0
|
|
|
|
- v20.16.0
|
2024-06-07 17:10:47 +01:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/53329
|
|
|
|
description: The `clientCertEngine` option depends on custom engine
|
|
|
|
support in OpenSSL which is deprecated in OpenSSL 3.
|
2023-11-27 12:19:49 +01:00
|
|
|
- version:
|
|
|
|
- v20.4.0
|
|
|
|
- v18.19.0
|
2023-06-28 15:30:30 +01:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/45190
|
|
|
|
description: The `options` parameter can now include `ALPNCallback`.
|
2022-09-13 12:53:52 -03:00
|
|
|
- version: v19.0.0
|
2022-08-13 09:25:23 +02:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/44031
|
|
|
|
description: If `ALPNProtocols` is set, incoming connections that send an
|
|
|
|
ALPN extension with no supported protocols are terminated with
|
|
|
|
a fatal `no_application_protocol` alert.
|
2019-05-21 13:49:35 +02:00
|
|
|
- version: v12.3.0
|
2019-05-13 09:07:56 +02:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/27665
|
|
|
|
description: The `options` parameter now supports `net.createServer()`
|
|
|
|
options.
|
2017-12-12 03:09:37 -05:00
|
|
|
- version: v9.3.0
|
2017-12-12 04:18:02 -05:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/14903
|
2017-08-17 13:54:05 -07:00
|
|
|
description: The `options` parameter can now include `clientCertEngine`.
|
2017-03-15 20:26:14 -07:00
|
|
|
- version: v8.0.0
|
2017-03-22 07:42:04 +01:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/11984
|
2018-10-01 22:52:30 -04:00
|
|
|
description: The `ALPNProtocols` option can be a `TypedArray` or
|
|
|
|
`DataView` now.
|
2017-02-21 23:38:49 +01:00
|
|
|
- version: v5.0.0
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/2564
|
|
|
|
description: ALPN options are supported now.
|
2016-05-27 10:33:17 -04:00
|
|
|
-->
|
2011-08-11 17:13:13 +09:00
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
* `options` {Object}
|
2021-10-10 21:55:04 -07:00
|
|
|
* `ALPNProtocols`: {string\[]|Buffer\[]|TypedArray\[]|DataView\[]|Buffer|
|
2018-10-01 22:52:30 -04:00
|
|
|
TypedArray|DataView}
|
2022-05-08 02:24:05 +02:00
|
|
|
An array of strings, `Buffer`s, `TypedArray`s, or `DataView`s, or a single
|
|
|
|
`Buffer`, `TypedArray`, or `DataView` containing the supported ALPN
|
2018-10-01 22:52:30 -04:00
|
|
|
protocols. `Buffer`s should have the format `[len][name][len][name]...`
|
|
|
|
e.g. `0x05hello0x05world`, where the first byte is the length of the next
|
|
|
|
protocol name. Passing an array is usually much simpler, e.g.
|
|
|
|
`['hello', 'world']`. (Protocols should be ordered by their priority.)
|
2023-06-28 15:30:30 +01:00
|
|
|
* `ALPNCallback`: {Function} If set, this will be called when a
|
|
|
|
client opens a connection using the ALPN extension. One argument will
|
|
|
|
be passed to the callback: an object containing `servername` and
|
|
|
|
`protocols` fields, respectively containing the server name from
|
|
|
|
the SNI extension (if any) and an array of ALPN protocol name strings. The
|
|
|
|
callback must return either one of the strings listed in
|
|
|
|
`protocols`, which will be returned to the client as the selected
|
|
|
|
ALPN protocol, or `undefined`, to reject the connection with a fatal alert.
|
|
|
|
If a string is returned that does not match one of the client's ALPN
|
|
|
|
protocols, an error will be thrown. This option cannot be used with the
|
|
|
|
`ALPNProtocols` option, and setting both options will throw an error.
|
2018-08-26 19:12:53 -07:00
|
|
|
* `clientCertEngine` {string} Name of an OpenSSL engine which can provide the
|
2024-06-07 17:10:47 +01:00
|
|
|
client certificate. **Deprecated.**
|
2019-02-13 14:54:07 -08:00
|
|
|
* `enableTrace` {boolean} If `true`, [`tls.TLSSocket.enableTrace()`][] will be
|
|
|
|
called on new connections. Tracing can be enabled after the secure
|
|
|
|
connection is established, but this option must be used to trace the secure
|
|
|
|
connection setup. **Default:** `false`.
|
2016-05-23 12:46:10 -07:00
|
|
|
* `handshakeTimeout` {number} Abort the connection if the SSL/TLS handshake
|
2018-04-02 04:44:32 +03:00
|
|
|
does not finish in the specified number of milliseconds.
|
|
|
|
A `'tlsClientError'` is emitted on the `tls.Server` object whenever
|
|
|
|
a handshake times out. **Default:** `120000` (120 seconds).
|
2016-03-27 16:09:08 +03:00
|
|
|
* `rejectUnauthorized` {boolean} If not `false` the server will reject any
|
2016-05-23 12:46:10 -07:00
|
|
|
connection which is not authorized with the list of supplied CAs. This
|
2018-04-02 04:44:32 +03:00
|
|
|
option only has an effect if `requestCert` is `true`. **Default:** `true`.
|
2018-06-04 12:23:26 -07:00
|
|
|
* `requestCert` {boolean} If `true` the server will request a certificate from
|
|
|
|
clients that connect and attempt to verify that certificate. **Default:**
|
|
|
|
`false`.
|
2018-12-21 14:16:19 -08:00
|
|
|
* `sessionTimeout` {number} The number of seconds after which a TLS session
|
|
|
|
created by the server will no longer be resumable. See
|
|
|
|
[Session Resumption][] for more information. **Default:** `300`.
|
2020-06-28 09:50:10 +02:00
|
|
|
* `SNICallback(servername, callback)` {Function} A function that will be
|
|
|
|
called if the client supports SNI TLS extension. Two arguments will be
|
|
|
|
passed when called: `servername` and `callback`. `callback` is an
|
|
|
|
error-first callback that takes two optional arguments: `error` and `ctx`.
|
|
|
|
`ctx`, if provided, is a `SecureContext` instance.
|
|
|
|
[`tls.createSecureContext()`][] can be used to get a proper `SecureContext`.
|
|
|
|
If `callback` is called with a falsy `ctx` argument, the default secure
|
|
|
|
context of the server will be used. If `SNICallback` wasn't provided the
|
|
|
|
default callback with high-level API will be used (see below).
|
2021-04-10 22:23:34 -07:00
|
|
|
* `ticketKeys`: {Buffer} 48-bytes of cryptographically strong pseudorandom
|
2018-12-21 14:16:19 -08:00
|
|
|
data. See [Session Resumption][] for more information.
|
2024-05-25 20:33:34 +02:00
|
|
|
* `pskCallback` {Function} For TLS-PSK negotiation, see [Pre-shared keys][].
|
2018-10-29 10:38:43 +02:00
|
|
|
* `pskIdentityHint` {string} optional hint to send to a client to help
|
|
|
|
with selecting the identity during TLS-PSK negotiation. Will be ignored
|
|
|
|
in TLS 1.3. Upon failing to set pskIdentityHint `'tlsClientError'` will be
|
2024-09-20 13:59:22 -04:00
|
|
|
emitted with `'ERR_TLS_PSK_SET_IDENTITY_HINT_FAILED'` code.
|
2018-06-04 12:23:26 -07:00
|
|
|
* ...: Any [`tls.createSecureContext()`][] option can be provided. For
|
2022-05-08 02:24:05 +02:00
|
|
|
servers, the identity options (`pfx`, `key`/`cert`, or `pskCallback`)
|
2018-10-29 10:38:43 +02:00
|
|
|
are usually required.
|
2019-05-13 09:07:56 +02:00
|
|
|
* ...: Any [`net.createServer()`][] option can be provided.
|
2016-05-23 12:46:10 -07:00
|
|
|
* `secureConnectionListener` {Function}
|
2018-10-31 16:53:38 +08:00
|
|
|
* Returns: {tls.Server}
|
2014-02-04 01:32:13 +04:00
|
|
|
|
2018-04-29 20:46:41 +03:00
|
|
|
Creates a new [`tls.Server`][]. The `secureConnectionListener`, if provided, is
|
2016-05-23 12:46:10 -07:00
|
|
|
automatically set as a listener for the [`'secureConnection'`][] event.
|
2014-02-04 01:32:13 +04:00
|
|
|
|
2022-04-20 10:23:41 +02:00
|
|
|
The `ticketKeys` options is automatically shared between `node:cluster` module
|
2018-02-05 21:55:16 -08:00
|
|
|
workers.
|
2017-05-20 16:15:58 -04:00
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
The following illustrates a simple echo server:
|
2011-10-26 21:12:23 +09:00
|
|
|
|
2024-12-13 14:09:28 -03:00
|
|
|
```mjs
|
|
|
|
import { createServer } from 'node:tls';
|
|
|
|
import { readFileSync } from 'node:fs';
|
2016-01-17 18:39:07 +01:00
|
|
|
|
|
|
|
const options = {
|
2024-12-13 14:09:28 -03:00
|
|
|
key: readFileSync('server-key.pem'),
|
|
|
|
cert: readFileSync('server-cert.pem'),
|
2016-01-17 18:39:07 +01:00
|
|
|
|
2018-11-07 14:18:10 -08:00
|
|
|
// This is necessary only if using client certificate authentication.
|
2016-01-17 18:39:07 +01:00
|
|
|
requestCert: true,
|
|
|
|
|
2018-11-07 14:18:10 -08:00
|
|
|
// This is necessary only if the client uses a self-signed certificate.
|
2024-12-13 14:09:28 -03:00
|
|
|
ca: [ readFileSync('client-cert.pem') ],
|
2016-01-17 18:39:07 +01:00
|
|
|
};
|
|
|
|
|
2024-12-13 14:09:28 -03:00
|
|
|
const server = createServer(options, (socket) => {
|
2016-01-17 18:39:07 +01:00
|
|
|
console.log('server connected',
|
|
|
|
socket.authorized ? 'authorized' : 'unauthorized');
|
|
|
|
socket.write('welcome!\n');
|
|
|
|
socket.setEncoding('utf8');
|
|
|
|
socket.pipe(socket);
|
|
|
|
});
|
|
|
|
server.listen(8000, () => {
|
|
|
|
console.log('server bound');
|
|
|
|
});
|
|
|
|
```
|
2011-10-26 21:12:23 +09:00
|
|
|
|
2024-12-13 14:09:28 -03:00
|
|
|
```cjs
|
|
|
|
const { createServer } = require('node:tls');
|
|
|
|
const { readFileSync } = require('node:fs');
|
|
|
|
|
|
|
|
const options = {
|
|
|
|
key: readFileSync('server-key.pem'),
|
|
|
|
cert: readFileSync('server-cert.pem'),
|
|
|
|
|
|
|
|
// This is necessary only if using client certificate authentication.
|
|
|
|
requestCert: true,
|
|
|
|
|
|
|
|
// This is necessary only if the client uses a self-signed certificate.
|
|
|
|
ca: [ readFileSync('client-cert.pem') ],
|
|
|
|
};
|
|
|
|
|
|
|
|
const server = createServer(options, (socket) => {
|
|
|
|
console.log('server connected',
|
|
|
|
socket.authorized ? 'authorized' : 'unauthorized');
|
|
|
|
socket.write('welcome!\n');
|
|
|
|
socket.setEncoding('utf8');
|
|
|
|
socket.pipe(socket);
|
|
|
|
});
|
|
|
|
server.listen(8000, () => {
|
|
|
|
console.log('server bound');
|
|
|
|
});
|
|
|
|
```
|
|
|
|
|
|
|
|
To generate the certificate and key for this example, run:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
openssl req -x509 -newkey rsa:2048 -nodes -sha256 -subj '/CN=localhost' \
|
|
|
|
-keyout server-key.pem -out server-cert.pem
|
|
|
|
```
|
|
|
|
|
|
|
|
Then, to generate the `client-cert.pem` certificate for this example, run:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
openssl pkcs12 -certpbe AES-256-CBC -export -out client-cert.pem \
|
|
|
|
-inkey server-key.pem -in server-cert.pem
|
|
|
|
```
|
|
|
|
|
2018-11-07 14:18:10 -08:00
|
|
|
The server can be tested by connecting to it using the example client from
|
|
|
|
[`tls.connect()`][].
|
2015-11-05 15:04:26 -05:00
|
|
|
|
2025-03-06 18:16:27 +01:00
|
|
|
## `tls.getCACertificates([type])`
|
|
|
|
|
|
|
|
<!-- YAML
|
2025-04-23 10:59:33 +02:00
|
|
|
added:
|
2025-04-11 17:38:28 -03:00
|
|
|
- v23.10.0
|
|
|
|
- v22.15.0
|
2025-03-06 18:16:27 +01:00
|
|
|
-->
|
|
|
|
|
|
|
|
* `type` {string|undefined} The type of CA certificates that will be returned. Valid values
|
|
|
|
are `"default"`, `"system"`, `"bundled"` and `"extra"`.
|
|
|
|
**Default:** `"default"`.
|
|
|
|
* Returns: {string\[]} An array of PEM-encoded certificates. The array may contain duplicates
|
|
|
|
if the same certificate is repeatedly stored in multiple sources.
|
|
|
|
|
|
|
|
Returns an array containing the CA certificates from various sources, depending on `type`:
|
|
|
|
|
|
|
|
* `"default"`: return the CA certificates that will be used by the Node.js TLS clients by default.
|
|
|
|
* When [`--use-bundled-ca`][] is enabled (default), or [`--use-openssl-ca`][] is not enabled,
|
|
|
|
this would include CA certificates from the bundled Mozilla CA store.
|
|
|
|
* When [`--use-system-ca`][] is enabled, this would also include certificates from the system's
|
|
|
|
trusted store.
|
|
|
|
* When [`NODE_EXTRA_CA_CERTS`][] is used, this would also include certificates loaded from the specified
|
|
|
|
file.
|
|
|
|
* `"system"`: return the CA certificates that are loaded from the system's trusted store, according
|
|
|
|
to rules set by [`--use-system-ca`][]. This can be used to get the certificates from the system
|
|
|
|
when [`--use-system-ca`][] is not enabled.
|
|
|
|
* `"bundled"`: return the CA certificates from the bundled Mozilla CA store. This would be the same
|
|
|
|
as [`tls.rootCertificates`][].
|
|
|
|
* `"extra"`: return the CA certificates loaded from [`NODE_EXTRA_CA_CERTS`][]. It's an empty array if
|
|
|
|
[`NODE_EXTRA_CA_CERTS`][] is not set.
|
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
## `tls.getCiphers()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2016-05-27 10:33:17 -04:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.10.2
|
|
|
|
-->
|
2015-11-05 15:04:26 -05:00
|
|
|
|
2021-10-10 21:55:04 -07:00
|
|
|
* Returns: {string\[]}
|
2018-04-11 21:07:14 +03:00
|
|
|
|
tls: support TLSv1.3
This introduces TLS1.3 support and makes it the default max protocol,
but also supports CLI/NODE_OPTIONS switches to disable it if necessary.
TLS1.3 is a major update to the TLS protocol, with many security
enhancements. It should be preferred over TLS1.2 whenever possible.
TLS1.3 is different enough that even though the OpenSSL APIs are
technically API/ABI compatible, that when TLS1.3 is negotiated, the
timing of protocol records and of callbacks broke assumptions hard-coded
into the 'tls' module.
This change introduces no API incompatibilities when TLS1.2 is
negotiated. It is the intention that it be backported to current and LTS
release lines with the default maximum TLS protocol reset to 'TLSv1.2'.
This will allow users of those lines to explicitly enable TLS1.3 if they
want.
API incompatibilities between TLS1.2 and TLS1.3 are:
- Renegotiation is not supported by TLS1.3 protocol, attempts to call
`.renegotiate()` will always fail.
- Compiling against a system OpenSSL lower than 1.1.1 is no longer
supported (OpenSSL-1.1.0 used to be supported with configure flags).
- Variations of `conn.write('data'); conn.destroy()` have undefined
behaviour according to the streams API. They may or may not send the
'data', and may or may not cause a ERR_STREAM_DESTROYED error to be
emitted. This has always been true, but conditions under which the write
suceeds is slightly but observably different when TLS1.3 is negotiated
vs when TLS1.2 or below is negotiated.
- If TLS1.3 is negotiated, and a server calls `conn.end()` in its
'secureConnection' listener without any data being written, the client
will not receive session tickets (no 'session' events will be emitted,
and `conn.getSession()` will never return a resumable session).
- The return value of `conn.getSession()` API may not return a resumable
session if called right after the handshake. The effect will be that
clients using the legacy `getSession()` API will resume sessions if
TLS1.2 is negotiated, but will do full handshakes if TLS1.3 is
negotiated. See https://github.com/nodejs/node/pull/25831 for more
information.
PR-URL: https://github.com/nodejs/node/pull/26209
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
2018-11-28 17:58:08 -08:00
|
|
|
Returns an array with the names of the supported TLS ciphers. The names are
|
|
|
|
lower-case for historical reasons, but must be uppercased to be used in
|
|
|
|
the `ciphers` option of [`tls.createSecureContext()`][].
|
|
|
|
|
2022-02-22 16:26:52 +01:00
|
|
|
Not all supported ciphers are enabled by default. See
|
|
|
|
[Modifying the default TLS cipher suite][].
|
|
|
|
|
tls: support TLSv1.3
This introduces TLS1.3 support and makes it the default max protocol,
but also supports CLI/NODE_OPTIONS switches to disable it if necessary.
TLS1.3 is a major update to the TLS protocol, with many security
enhancements. It should be preferred over TLS1.2 whenever possible.
TLS1.3 is different enough that even though the OpenSSL APIs are
technically API/ABI compatible, that when TLS1.3 is negotiated, the
timing of protocol records and of callbacks broke assumptions hard-coded
into the 'tls' module.
This change introduces no API incompatibilities when TLS1.2 is
negotiated. It is the intention that it be backported to current and LTS
release lines with the default maximum TLS protocol reset to 'TLSv1.2'.
This will allow users of those lines to explicitly enable TLS1.3 if they
want.
API incompatibilities between TLS1.2 and TLS1.3 are:
- Renegotiation is not supported by TLS1.3 protocol, attempts to call
`.renegotiate()` will always fail.
- Compiling against a system OpenSSL lower than 1.1.1 is no longer
supported (OpenSSL-1.1.0 used to be supported with configure flags).
- Variations of `conn.write('data'); conn.destroy()` have undefined
behaviour according to the streams API. They may or may not send the
'data', and may or may not cause a ERR_STREAM_DESTROYED error to be
emitted. This has always been true, but conditions under which the write
suceeds is slightly but observably different when TLS1.3 is negotiated
vs when TLS1.2 or below is negotiated.
- If TLS1.3 is negotiated, and a server calls `conn.end()` in its
'secureConnection' listener without any data being written, the client
will not receive session tickets (no 'session' events will be emitted,
and `conn.getSession()` will never return a resumable session).
- The return value of `conn.getSession()` API may not return a resumable
session if called right after the handshake. The effect will be that
clients using the legacy `getSession()` API will resume sessions if
TLS1.2 is negotiated, but will do full handshakes if TLS1.3 is
negotiated. See https://github.com/nodejs/node/pull/25831 for more
information.
PR-URL: https://github.com/nodejs/node/pull/26209
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
2018-11-28 17:58:08 -08:00
|
|
|
Cipher names that start with `'tls_'` are for TLSv1.3, all the others are for
|
|
|
|
TLSv1.2 and below.
|
2015-11-05 15:04:26 -05:00
|
|
|
|
2016-05-23 12:46:10 -07:00
|
|
|
```js
|
tls: support TLSv1.3
This introduces TLS1.3 support and makes it the default max protocol,
but also supports CLI/NODE_OPTIONS switches to disable it if necessary.
TLS1.3 is a major update to the TLS protocol, with many security
enhancements. It should be preferred over TLS1.2 whenever possible.
TLS1.3 is different enough that even though the OpenSSL APIs are
technically API/ABI compatible, that when TLS1.3 is negotiated, the
timing of protocol records and of callbacks broke assumptions hard-coded
into the 'tls' module.
This change introduces no API incompatibilities when TLS1.2 is
negotiated. It is the intention that it be backported to current and LTS
release lines with the default maximum TLS protocol reset to 'TLSv1.2'.
This will allow users of those lines to explicitly enable TLS1.3 if they
want.
API incompatibilities between TLS1.2 and TLS1.3 are:
- Renegotiation is not supported by TLS1.3 protocol, attempts to call
`.renegotiate()` will always fail.
- Compiling against a system OpenSSL lower than 1.1.1 is no longer
supported (OpenSSL-1.1.0 used to be supported with configure flags).
- Variations of `conn.write('data'); conn.destroy()` have undefined
behaviour according to the streams API. They may or may not send the
'data', and may or may not cause a ERR_STREAM_DESTROYED error to be
emitted. This has always been true, but conditions under which the write
suceeds is slightly but observably different when TLS1.3 is negotiated
vs when TLS1.2 or below is negotiated.
- If TLS1.3 is negotiated, and a server calls `conn.end()` in its
'secureConnection' listener without any data being written, the client
will not receive session tickets (no 'session' events will be emitted,
and `conn.getSession()` will never return a resumable session).
- The return value of `conn.getSession()` API may not return a resumable
session if called right after the handshake. The effect will be that
clients using the legacy `getSession()` API will resume sessions if
TLS1.2 is negotiated, but will do full handshakes if TLS1.3 is
negotiated. See https://github.com/nodejs/node/pull/25831 for more
information.
PR-URL: https://github.com/nodejs/node/pull/26209
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
2018-11-28 17:58:08 -08:00
|
|
|
console.log(tls.getCiphers()); // ['aes128-gcm-sha256', 'aes128-sha', ...]
|
2016-05-23 12:46:10 -07:00
|
|
|
```
|
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
## `tls.rootCertificates`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2019-05-20 11:09:02 +02:00
|
|
|
<!-- YAML
|
2019-05-21 13:49:35 +02:00
|
|
|
added: v12.3.0
|
2019-05-20 11:09:02 +02:00
|
|
|
-->
|
|
|
|
|
2021-10-10 21:55:04 -07:00
|
|
|
* {string\[]}
|
2019-05-20 11:09:02 +02:00
|
|
|
|
|
|
|
An immutable array of strings representing the root certificates (in PEM format)
|
2022-04-08 12:40:05 +02:00
|
|
|
from the bundled Mozilla CA store as supplied by the current Node.js version.
|
2020-05-08 07:37:50 -07:00
|
|
|
|
|
|
|
The bundled CA store, as supplied by Node.js, is a snapshot of Mozilla CA store
|
|
|
|
that is fixed at release time. It is identical on all supported platforms.
|
2019-05-20 11:09:02 +02:00
|
|
|
|
2025-03-06 18:16:27 +01:00
|
|
|
To get the actual CA certificates used by the current Node.js instance, which
|
|
|
|
may include certificates loaded from the system store (if `--use-system-ca` is used)
|
|
|
|
or loaded from a file indicated by `NODE_EXTRA_CA_CERTS`, use
|
|
|
|
[`tls.getCACertificates()`][].
|
2025-01-28 15:54:50 +00:00
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
## `tls.DEFAULT_ECDH_CURVE`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2017-01-24 14:04:08 -08:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.13
|
2019-01-14 12:11:49 -08:00
|
|
|
changes:
|
|
|
|
- version: v10.0.0
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/16853
|
|
|
|
description: Default value changed to `'auto'`.
|
2017-01-24 14:04:08 -08:00
|
|
|
-->
|
2015-04-23 19:33:38 +09:00
|
|
|
|
|
|
|
The default curve name to use for ECDH key agreement in a tls server. The
|
2019-10-02 00:31:57 -04:00
|
|
|
default value is `'auto'`. See [`tls.createSecureContext()`][] for further
|
2018-02-12 02:31:55 -05:00
|
|
|
information.
|
2015-04-23 19:33:38 +09:00
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
## `tls.DEFAULT_MAX_VERSION`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2019-03-07 14:51:33 -08:00
|
|
|
<!-- YAML
|
|
|
|
added: v11.4.0
|
|
|
|
-->
|
|
|
|
|
|
|
|
* {string} The default value of the `maxVersion` option of
|
|
|
|
[`tls.createSecureContext()`][]. It can be assigned any of the supported TLS
|
2019-10-04 04:07:49 +02:00
|
|
|
protocol versions, `'TLSv1.3'`, `'TLSv1.2'`, `'TLSv1.1'`, or `'TLSv1'`.
|
2019-03-07 14:51:33 -08:00
|
|
|
**Default:** `'TLSv1.3'`, unless changed using CLI options. Using
|
2020-06-20 16:46:33 -07:00
|
|
|
`--tls-max-v1.2` sets the default to `'TLSv1.2'`. Using `--tls-max-v1.3` sets
|
2019-03-07 14:51:33 -08:00
|
|
|
the default to `'TLSv1.3'`. If multiple of the options are provided, the
|
|
|
|
highest maximum is used.
|
|
|
|
|
2019-12-24 15:15:58 -08:00
|
|
|
## `tls.DEFAULT_MIN_VERSION`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
2019-03-07 14:51:33 -08:00
|
|
|
<!-- YAML
|
|
|
|
added: v11.4.0
|
|
|
|
-->
|
|
|
|
|
|
|
|
* {string} The default value of the `minVersion` option of
|
|
|
|
[`tls.createSecureContext()`][]. It can be assigned any of the supported TLS
|
2019-10-15 23:04:56 +08:00
|
|
|
protocol versions, `'TLSv1.3'`, `'TLSv1.2'`, `'TLSv1.1'`, or `'TLSv1'`.
|
2024-07-10 20:41:34 +10:00
|
|
|
Versions before TLSv1.2 may require downgrading the [OpenSSL Security Level][].
|
2019-03-07 14:51:33 -08:00
|
|
|
**Default:** `'TLSv1.2'`, unless changed using CLI options. Using
|
|
|
|
`--tls-min-v1.0` sets the default to `'TLSv1'`. Using `--tls-min-v1.1` sets
|
|
|
|
the default to `'TLSv1.1'`. Using `--tls-min-v1.3` sets the default to
|
|
|
|
`'TLSv1.3'`. If multiple of the options are provided, the lowest minimum is
|
|
|
|
used.
|
|
|
|
|
2023-02-23 16:34:36 +00:00
|
|
|
## `tls.DEFAULT_CIPHERS`
|
|
|
|
|
|
|
|
<!-- YAML
|
2023-04-10 23:02:28 -04:00
|
|
|
added:
|
|
|
|
- v19.8.0
|
|
|
|
- v18.16.0
|
2023-02-23 16:34:36 +00:00
|
|
|
-->
|
|
|
|
|
|
|
|
* {string} The default value of the `ciphers` option of
|
|
|
|
[`tls.createSecureContext()`][]. It can be assigned any of the supported
|
|
|
|
OpenSSL ciphers. Defaults to the content of
|
|
|
|
`crypto.constants.defaultCoreCipherList`, unless changed using CLI options
|
|
|
|
using `--tls-default-ciphers`.
|
|
|
|
|
tls: drop support for URI alternative names
Previously, Node.js incorrectly accepted uniformResourceIdentifier (URI)
subject alternative names in checkServerIdentity regardless of the
application protocol. This was incorrect even in the most common cases.
For example, RFC 2818 specifies (and RFC 6125 confirms) that HTTP over
TLS only uses dNSName and iPAddress subject alternative names, but not
uniformResourceIdentifier subject alternative names.
Additionally, name constrained certificate authorities might not be
constrained to specific URIs, allowing them to issue certificates for
URIs that specify hosts that they would not be allowed to issue dNSName
certificates for.
Even for application protocols that make use of URI subject alternative
names (such as SIP, see RFC 5922), Node.js did not implement the
required checks correctly, for example, because checkServerIdentity
ignores the URI scheme.
As a side effect, this also fixes an edge case. When a hostname is not
an IP address and no dNSName subject alternative name exists, the
subject's Common Name should be considered even when an iPAddress
subject alternative name exists.
It remains possible for users to pass a custom checkServerIdentity
function to the TLS implementation in order to implement custom identity
verification logic.
This addresses CVE-2021-44531.
CVE-ID: CVE-2021-44531
PR-URL: https://github.com/nodejs-private/node-private/pull/300
Reviewed-By: Michael Dawson <midawson@redhat.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
2021-12-07 02:14:49 +00:00
|
|
|
[CVE-2021-44531]: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44531
|
2020-09-17 18:53:37 +02:00
|
|
|
[Chrome's 'modern cryptography' setting]: https://www.chromium.org/Home/chromium-security/education/tls#TOC-Cipher-Suites
|
|
|
|
[DHE]: https://en.wikipedia.org/wiki/Diffie%E2%80%93Hellman_key_exchange
|
|
|
|
[ECDHE]: https://en.wikipedia.org/wiki/Elliptic_curve_Diffie%E2%80%93Hellman
|
2022-02-22 16:26:52 +01:00
|
|
|
[Modifying the default TLS cipher suite]: #modifying-the-default-tls-cipher-suite
|
2020-09-17 18:53:37 +02:00
|
|
|
[Mozilla's publicly trusted list of CAs]: https://hg.mozilla.org/mozilla-central/raw-file/tip/security/nss/lib/ckfw/builtins/certdata.txt
|
|
|
|
[OCSP request]: https://en.wikipedia.org/wiki/OCSP_stapling
|
2021-07-04 20:39:17 -07:00
|
|
|
[OpenSSL Options]: crypto.md#openssl-options
|
2024-07-10 20:41:34 +10:00
|
|
|
[OpenSSL Security Level]: #openssl-security-level
|
|
|
|
[OpenSSL documentation on security levels]: https://www.openssl.org/docs/manmaster/man3/SSL_CTX_set_security_level.html#DEFAULT-CALLBACK-BEHAVIOUR
|
2024-05-25 20:33:34 +02:00
|
|
|
[Pre-shared keys]: #pre-shared-keys
|
2020-09-17 18:53:37 +02:00
|
|
|
[RFC 2246]: https://www.ietf.org/rfc/rfc2246.txt
|
|
|
|
[RFC 4086]: https://tools.ietf.org/html/rfc4086
|
|
|
|
[RFC 4279]: https://tools.ietf.org/html/rfc4279
|
|
|
|
[RFC 5077]: https://tools.ietf.org/html/rfc5077
|
|
|
|
[RFC 5929]: https://tools.ietf.org/html/rfc5929
|
|
|
|
[SSL_METHODS]: https://www.openssl.org/docs/man1.1.1/man7/ssl.html#Dealing-with-Protocol-Methods
|
2021-07-04 20:39:17 -07:00
|
|
|
[Session Resumption]: #session-resumption
|
|
|
|
[Stream]: stream.md#stream
|
2020-09-17 18:53:37 +02:00
|
|
|
[TLS recommendations]: https://wiki.mozilla.org/Security/Server_Side_TLS
|
2021-07-04 20:39:17 -07:00
|
|
|
[`'newSession'`]: #event-newsession
|
|
|
|
[`'resumeSession'`]: #event-resumesession
|
|
|
|
[`'secureConnect'`]: #event-secureconnect
|
|
|
|
[`'secureConnection'`]: #event-secureconnection
|
|
|
|
[`'session'`]: #event-session
|
|
|
|
[`--tls-cipher-list`]: cli.md#--tls-cipher-listlist
|
2025-03-06 18:16:27 +01:00
|
|
|
[`--use-bundled-ca`]: cli.md#--use-bundled-ca---use-openssl-ca
|
|
|
|
[`--use-openssl-ca`]: cli.md#--use-bundled-ca---use-openssl-ca
|
|
|
|
[`--use-system-ca`]: cli.md#--use-system-ca
|
2021-07-04 20:39:17 -07:00
|
|
|
[`Duplex`]: stream.md#class-streamduplex
|
2025-03-06 18:16:27 +01:00
|
|
|
[`NODE_EXTRA_CA_CERTS`]: cli.md#node_extra_ca_certsfile
|
2021-07-04 20:39:17 -07:00
|
|
|
[`NODE_OPTIONS`]: cli.md#node_optionsoptions
|
2020-02-15 18:55:59 +01:00
|
|
|
[`SSL_export_keying_material`]: https://www.openssl.org/docs/man1.1.1/man3/SSL_export_keying_material.html
|
2019-07-06 10:46:48 -04:00
|
|
|
[`SSL_get_version`]: https://www.openssl.org/docs/man1.1.1/man3/SSL_get_version.html
|
2021-07-04 20:39:17 -07:00
|
|
|
[`crypto.getCurves()`]: crypto.md#cryptogetcurves
|
2022-07-15 16:44:58 +02:00
|
|
|
[`import()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/import
|
2021-07-04 20:39:17 -07:00
|
|
|
[`net.Server.address()`]: net.md#serveraddress
|
|
|
|
[`net.Server`]: net.md#class-netserver
|
|
|
|
[`net.Socket`]: net.md#class-netsocket
|
|
|
|
[`net.createServer()`]: net.md#netcreateserveroptions-connectionlistener
|
|
|
|
[`server.addContext()`]: #serveraddcontexthostname-context
|
|
|
|
[`server.getTicketKeys()`]: #servergetticketkeys
|
|
|
|
[`server.listen()`]: net.md#serverlisten
|
|
|
|
[`server.setTicketKeys()`]: #serversetticketkeyskeys
|
|
|
|
[`socket.connect()`]: net.md#socketconnectoptions-connectlistener
|
|
|
|
[`tls.DEFAULT_ECDH_CURVE`]: #tlsdefault_ecdh_curve
|
|
|
|
[`tls.DEFAULT_MAX_VERSION`]: #tlsdefault_max_version
|
|
|
|
[`tls.DEFAULT_MIN_VERSION`]: #tlsdefault_min_version
|
|
|
|
[`tls.Server`]: #class-tlsserver
|
|
|
|
[`tls.TLSSocket.enableTrace()`]: #tlssocketenabletrace
|
|
|
|
[`tls.TLSSocket.getPeerCertificate()`]: #tlssocketgetpeercertificatedetailed
|
2022-08-04 01:46:23 +02:00
|
|
|
[`tls.TLSSocket.getProtocol()`]: #tlssocketgetprotocol
|
2021-07-04 20:39:17 -07:00
|
|
|
[`tls.TLSSocket.getSession()`]: #tlssocketgetsession
|
|
|
|
[`tls.TLSSocket.getTLSTicket()`]: #tlssocketgettlsticket
|
|
|
|
[`tls.TLSSocket`]: #class-tlstlssocket
|
|
|
|
[`tls.connect()`]: #tlsconnectoptions-callback
|
|
|
|
[`tls.createSecureContext()`]: #tlscreatesecurecontextoptions
|
|
|
|
[`tls.createServer()`]: #tlscreateserveroptions-secureconnectionlistener
|
2025-03-06 18:16:27 +01:00
|
|
|
[`tls.getCACertificates()`]: #tlsgetcacertificatestype
|
2021-07-04 20:39:17 -07:00
|
|
|
[`tls.getCiphers()`]: #tlsgetciphers
|
|
|
|
[`tls.rootCertificates`]: #tlsrootcertificates
|
2022-03-29 19:55:41 +02:00
|
|
|
[`x509.checkHost()`]: crypto.md#x509checkhostname-options
|
2018-07-14 15:10:10 +03:00
|
|
|
[asn1.js]: https://www.npmjs.com/package/asn1.js
|
2021-07-04 20:39:17 -07:00
|
|
|
[certificate object]: #certificate-object
|
tls: support TLSv1.3
This introduces TLS1.3 support and makes it the default max protocol,
but also supports CLI/NODE_OPTIONS switches to disable it if necessary.
TLS1.3 is a major update to the TLS protocol, with many security
enhancements. It should be preferred over TLS1.2 whenever possible.
TLS1.3 is different enough that even though the OpenSSL APIs are
technically API/ABI compatible, that when TLS1.3 is negotiated, the
timing of protocol records and of callbacks broke assumptions hard-coded
into the 'tls' module.
This change introduces no API incompatibilities when TLS1.2 is
negotiated. It is the intention that it be backported to current and LTS
release lines with the default maximum TLS protocol reset to 'TLSv1.2'.
This will allow users of those lines to explicitly enable TLS1.3 if they
want.
API incompatibilities between TLS1.2 and TLS1.3 are:
- Renegotiation is not supported by TLS1.3 protocol, attempts to call
`.renegotiate()` will always fail.
- Compiling against a system OpenSSL lower than 1.1.1 is no longer
supported (OpenSSL-1.1.0 used to be supported with configure flags).
- Variations of `conn.write('data'); conn.destroy()` have undefined
behaviour according to the streams API. They may or may not send the
'data', and may or may not cause a ERR_STREAM_DESTROYED error to be
emitted. This has always been true, but conditions under which the write
suceeds is slightly but observably different when TLS1.3 is negotiated
vs when TLS1.2 or below is negotiated.
- If TLS1.3 is negotiated, and a server calls `conn.end()` in its
'secureConnection' listener without any data being written, the client
will not receive session tickets (no 'session' events will be emitted,
and `conn.getSession()` will never return a resumable session).
- The return value of `conn.getSession()` API may not return a resumable
session if called right after the handshake. The effect will be that
clients using the legacy `getSession()` API will resume sessions if
TLS1.2 is negotiated, but will do full handshakes if TLS1.3 is
negotiated. See https://github.com/nodejs/node/pull/25831 for more
information.
PR-URL: https://github.com/nodejs/node/pull/26209
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
2018-11-28 17:58:08 -08:00
|
|
|
[cipher list format]: https://www.openssl.org/docs/man1.1.1/man1/ciphers.html#CIPHER-LIST-FORMAT
|
2020-09-17 18:53:37 +02:00
|
|
|
[forward secrecy]: https://en.wikipedia.org/wiki/Perfect_forward_secrecy
|
2021-07-04 20:39:17 -07:00
|
|
|
[perfect forward secrecy]: #perfect-forward-secrecy
|