The AWS SDK for JavaScript v2 has reached end-of-support. We recommend
that you migrate to AWS SDK for JavaScript v3.
For additional details and information on how to migrate, please refer to this announcement
Enforcing a minimum version of TLS
To add increased security when communicating with AWS services, configure the AWS SDK for JavaScript to use TLS 1.2 or later.
Transport Layer Security (TLS) is a protocol used by web browsers and other applications to ensure the privacy and integrity of data exchanged over a network.
Important
As of June 10, 2024, we announcedhttps.Agent
.
AWS recommends using the current Active LTS version of Node.js.
Verify and enforce TLS in Node.js
When you use the AWS SDK for JavaScript with Node.js, the underlying Node.js security layer is used to set the TLS version.
Node.js 12.0.0 and later use a minimum version of OpenSSL 1.1.1b, which supports TLS 1.3. The AWS SDK for JavaScript v2 defaults to use TLS 1.3 when available, but defaults to a lower version if required.
Verify the version of OpenSSL and TLS
To get the version of OpenSSL used by Node.js on your computer, run the following command.
node -p process.versions
The version of OpenSSL in the list is the version used by Node.js, as shown in the following example.
openssl: '1.1.1b'
To get the version of TLS used by Node.js on your computer, start the Node shell and run the following commands, in order.
>
var tls = require("tls");>
var tlsSocket = new tls.TLSSocket();>
tlsSocket.getProtocol();
The last command outputs the TLS version, as shown in the following example.
'TLSv1.3'
Node.js defaults to use this version of TLS, and tries to negotiate another version of TLS if a call is not successful.
Checking Minimum and Maximum Supported TLS Versions
Developers can check the minimum and maximum supported TLS versions in Node.js using the following script:
var tls = require("tls"); console.log("Supported TLS versions:", tls.DEFAULT_MIN_VERSION + " to " + tls.DEFAULT_MAX_VERSION);
The last command outputs the default minimum and maximum TLS version, as shown in the following example.
Supported TLS versions: TLSv1.2 to TLSv1.3
Enforce a minimum version of TLS
Node.js negotiates a version of TLS when a call fails. You can enforce the minimum allowable TLS version during this negotiation, either when running a script from the command line or per request in your JavaScript code.
To specify the minimum TLS version from the command line, you must use Node.js version
11.4.0 or later. To install a specific Node.js version, first install Node Version Manager
(nvm) using the steps found at Node Version Manager
Installing and Updating
nvm install 11 nvm use 11
Verify and enforce TLS in a browser script
When you use the SDK for JavaScript in a browser script, browser settings control the version of TLS that is used. The version of TLS used by the browser cannot be discovered or set by script and must be configured by the user. To verify and enforce the version of TLS used in a browser script, refer to the instructions for your specific browser.