Skip to content

deps(dev): update dependency ws to v8.21.3 - #463

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/ws-8.x-lockfile
Open

deps(dev): update dependency ws to v8.21.3#463
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/ws-8.x-lockfile

Conversation

@renovate

@renovate renovate Bot commented Apr 28, 2024

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
ws 8.16.08.21.3 age confidence

Release Notes

websockets/ws (ws)

v8.21.3

Compare Source

Bug fixes

  • The server now correctly rejects permessage-deflate offers if the incoming
    client_max_window_bits parameter value is smaller than its configured
    clientMaxWindowBits (e97a20e).

v8.21.2

Compare Source

Bug fixes

v8.21.1

Compare Source

Bug fixes

  • Empty fragments are now counted toward the limit (a2f4e7c).
  • The default values of the maxBufferedChunks and maxFragments options have
    been reduced (f197ac6).

v8.21.0

Compare Source

Features
  • Introduced the maxBufferedChunks and maxFragments options (2b2abd4).
Bug fixes
  • Fixed a remote memory exhaustion DoS vulnerability (2b2abd4).

A high volume of tiny fragments and data chunks could be sent by a peer, using
modest network traffic, to crash a ws server or client due to OOM.

import { WebSocket, WebSocketServer } from 'ws';

const wss = new WebSocketServer({ port: 0 }, function () {
  const data = Buffer.alloc(1);
  const options = { fin: false };
  const { port } = wss.address();
  const ws = new WebSocket(`ws://localhost:${port}`);

  ws.on('open', function () {
    (function send() {
      ws.send(data, options, function (err) {
        if (err) return;
        send();
      });
    })();
  });

  ws.on('error', console.error);
  ws.on('close', function (code, reason) {
    console.log(`client close - code: ${code} reason: ${reason.toString()}`);
  });
});

wss.on('connection', function (ws) {
  ws.on('error', console.error);
  ws.on('close', function (code, reason) {
    console.log(`server close - code: ${code} reason: ${reason.toString()}`);
  });
});

The vulnerability was responsibly disclosed and fixed by Nadav Magier.

In vulnerable versions, the issue can be mitigated by lowering the value of the
maxPayload option if possible.

v8.20.1

Compare Source

Bug fixes
  • Fixed an uninitialized memory disclosure issue in websocket.close()
    (c0327ec).

Providing a TypedArray (e.g. Float32Array) as the reason argument for
websocket.close(), rather than the supported string or Buffer types, caused
uninitialized memory to be disclosed to the remote peer.

import { deepStrictEqual } from 'node:assert';
import { WebSocket, WebSocketServer } from 'ws';

const wss = new WebSocketServer(
  { port: 0, skipUTF8Validation: true },
  function () {
    const { port } = wss.address();
    const ws = new WebSocket(`ws://localhost:${port}`, {
      skipUTF8Validation: true
    });

    ws.on('close', function (code, reason) {
      deepStrictEqual(reason, Buffer.alloc(80));
    });
  }
);

wss.on('connection', function (ws) {
  ws.close(1000, new Float32Array(20));
});

The issue was privately reported by Nikita Skovoroda.

v8.20.0

Compare Source

Features
  • Added exports for the PerMessageDeflate class and utilities for the
    Sec-WebSocket-Extensions and Sec-WebSocket-Protocol headers (d3503c1).

v8.19.0

Compare Source

Features
  • Added the closeTimeout option (#​2308).
Bug fixes
  • Handled a forthcoming breaking change in Node.js core (1998485).

v8.18.3

Compare Source

Bug fixes
  • Fixed a spec violation where the Sec-WebSocket-Version header was not added
    to the HTTP response if the client requested version was either invalid or
    unacceptable (#​2291).

v8.18.2

Compare Source

Bug fixes
  • Fixed an issue that, during message decompression when the maximum size was
    exceeded, led to the emission of an inaccurate error and closure of the
    connection with an improper close code (#​2285).

v8.18.1

Compare Source

Bug fixes
  • The length of the UNIX domain socket paths in the tests has been shortened to
    make them work when run via CITGM (021f7b8).

v8.18.0

Compare Source

Features

v8.17.1

Compare Source

Bug fixes

A request with a number of headers exceeding theserver.maxHeadersCount
threshold could be used to crash a ws server.

const http = require('http');
const WebSocket = require('ws');

const wss = new WebSocket.Server({ port: 0 }, function () {
  const chars = "!#$%&'*+-.0123456789abcdefghijklmnopqrstuvwxyz^_`|~".split('');
  const headers = {};
  let count = 0;

  for (let i = 0; i < chars.length; i++) {
    if (count === 2000) break;

    for (let j = 0; j < chars.length; j++) {
      const key = chars[i] + chars[j];
      headers[key] = 'x';

      if (++count === 2000) break;
    }
  }

  headers.Connection = 'Upgrade';
  headers.Upgrade = 'websocket';
  headers['Sec-WebSocket-Key'] = 'dGhlIHNhbXBsZSBub25jZQ==';
  headers['Sec-WebSocket-Version'] = '13';

  const request = http.request({
    headers: headers,
    host: '127.0.0.1',
    port: wss.address().port
  });

  request.end();
});

The vulnerability was reported by Ryan LaPointe in #​2230.

In vulnerable versions of ws, the issue can be mitigated in the following ways:

  1. Reduce the maximum allowed length of the request headers using the
    --max-http-header-size=size and/or the maxHeaderSize options so
    that no more headers than the server.maxHeadersCount limit can be sent.
  2. Set server.maxHeadersCount to 0 so that no limit is applied.

v8.17.0

Compare Source

Features

  • The WebSocket constructor now accepts the createConnection option (#​2219).

Other notable changes

  • The default value of the allowSynchronousEvents option has been changed to
    true (#​2221).

This is a breaking change in a patch release. The assumption is that the option
is not widely used.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate

renovate Bot commented Apr 28, 2024

Copy link
Copy Markdown
Contributor Author

Branch automerge failure

This PR was configured for branch automerge. However, this is not possible, so it has been raised as a PR instead.


  • Branch has one or more failed status checks

@renovate renovate Bot changed the title deps(dev): update dependency ws to v8.17.0 deps(dev): update dependency ws to v8.17.1 Jun 16, 2024
@renovate renovate Bot changed the title deps(dev): update dependency ws to v8.17.1 deps(dev): update dependency ws to v8.18.0 Jul 3, 2024
@renovate
renovate Bot force-pushed the renovate/ws-8.x-lockfile branch from f1aee08 to 2df78dd Compare January 23, 2025 21:50
@renovate renovate Bot changed the title deps(dev): update dependency ws to v8.18.0 deps(dev): update dependency ws to v8.18.1 Feb 21, 2025
@renovate
renovate Bot force-pushed the renovate/ws-8.x-lockfile branch from 2df78dd to 56d5f61 Compare February 21, 2025 10:35
@renovate
renovate Bot force-pushed the renovate/ws-8.x-lockfile branch from 56d5f61 to 59473ac Compare March 22, 2025 21:43
@renovate
renovate Bot force-pushed the renovate/ws-8.x-lockfile branch from 59473ac to 1189b1b Compare May 3, 2025 06:49
@renovate renovate Bot changed the title deps(dev): update dependency ws to v8.18.1 deps(dev): update dependency ws to v8.18.2 May 3, 2025
@renovate renovate Bot changed the title deps(dev): update dependency ws to v8.18.2 deps(dev): update dependency ws to v8.18.3 Jun 28, 2025
@renovate
renovate Bot force-pushed the renovate/ws-8.x-lockfile branch from 1189b1b to f67df5c Compare June 28, 2025 16:53
@renovate
renovate Bot force-pushed the renovate/ws-8.x-lockfile branch from f67df5c to 47b06e0 Compare October 21, 2025 16:44
@renovate
renovate Bot force-pushed the renovate/ws-8.x-lockfile branch from 47b06e0 to bc02243 Compare January 5, 2026 20:38
@renovate renovate Bot changed the title deps(dev): update dependency ws to v8.18.3 deps(dev): update dependency ws to v8.19.0 Jan 5, 2026
@renovate
renovate Bot force-pushed the renovate/ws-8.x-lockfile branch from bc02243 to dceaaac Compare March 21, 2026 21:19
@renovate renovate Bot changed the title deps(dev): update dependency ws to v8.19.0 deps(dev): update dependency ws to v8.20.0 Mar 21, 2026
@renovate
renovate Bot force-pushed the renovate/ws-8.x-lockfile branch from dceaaac to 99f7d13 Compare April 29, 2026 11:57
@renovate
renovate Bot force-pushed the renovate/ws-8.x-lockfile branch 2 times, most recently from 2871247 to 60ce25c Compare May 12, 2026 18:40
@renovate renovate Bot changed the title deps(dev): update dependency ws to v8.20.0 deps(dev): update dependency ws to v8.20.1 May 12, 2026
@renovate
renovate Bot force-pushed the renovate/ws-8.x-lockfile branch from 60ce25c to be5eea0 Compare May 22, 2026 21:49
@renovate renovate Bot changed the title deps(dev): update dependency ws to v8.20.1 deps(dev): update dependency ws to v8.21.0 May 22, 2026
@renovate
renovate Bot force-pushed the renovate/ws-8.x-lockfile branch from be5eea0 to cd20282 Compare May 28, 2026 18:51
@renovate
renovate Bot force-pushed the renovate/ws-8.x-lockfile branch from cd20282 to c211ad0 Compare July 14, 2026 19:39
@renovate renovate Bot changed the title deps(dev): update dependency ws to v8.21.0 deps(dev): update dependency ws to v8.21.1 Jul 14, 2026
@renovate renovate Bot changed the title deps(dev): update dependency ws to v8.21.1 deps(dev): update dependency ws to v8.21.2 Aug 3, 2026
@renovate
renovate Bot force-pushed the renovate/ws-8.x-lockfile branch from c211ad0 to f40fd3c Compare August 3, 2026 22:53
@renovate
renovate Bot force-pushed the renovate/ws-8.x-lockfile branch from f40fd3c to fbcc579 Compare August 7, 2026 15:07
@renovate renovate Bot changed the title deps(dev): update dependency ws to v8.21.2 deps(dev): update dependency ws to v8.21.3 Aug 7, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants