CVE-2016-10518: Buffer Overflow

Published May 31, 2018
·
Updated

A vulnerability was found in the ping functionality of the ws module before 1.0.0 which allowed clients to allocate memory by sending a ping frame. The ping functionality by default responds with a pong frame and the previously given payload of the ping frame. This is exactly what you expect, but internally ws always transforms all data that we need to send to a Buffer instance and that is where the vulnerability existed. ws didn't do any checks for the type of data it was sending. With buffers in node when you allocate it when a number instead of a string it will allocate the amount of bytes.

Other sources

Versions of ws prior to 1.0.1 are affected by a remote memory disclosure vulnerability.

In certain rare circumstances, applications which allow users to control the arguments of a client.ping() call will cause ws to send the contents of an allocated but non-zero-filled buffer to the server. This may disclose sensitive information that still exists in memory after previous use of the memory for other tasks.

Proof of Concept var ws = require('ws')

var server = new ws.Server({ port: 9000 }) var client = new ws('ws://localhost:9000')

client.on('open', function () { console.log('open') client.ping(50) // this sends a non-zeroed buffer of 50 bytes

client.on('pong', function (data) { console.log('got pong') console.log(data) // Data from the client. }) })

Recommendation

Update to version 1.0.1 or greater.

Affected Software

2 affected componentsFixes available
npm/ws<1.0.1
1.0.1
Ws Project Ws Node.js<1.0.1

Event History

May 31, 2018
CVE Published
via MITRE·08:00 PM
Data Sourced
via MITRE·08:00 PM
DescriptionWeakness
Feb 18, 2019
Advisory Published
11:56 PM

Frequently Asked Questions

1

What is CVE-2016-10518?

CVE-2016-10518 is a remote memory disclosure vulnerability in the ping functionality of the ws module before version 1.0.1.

2

How does CVE-2016-10518 affect applications using the ws module?

Applications using the ws module versions prior to 1.0.1 are affected by CVE-2016-10518, which can result in the disclosure of memory contents.

3

How can users control the arguments of a client.ping() call to trigger CVE-2016-10518?

Certain rare circumstances allow users to control the arguments of a client.ping() call, triggering the vulnerability in the ws module before version 1.0.1.

4

What is the severity of CVE-2016-10518?

CVE-2016-10518 has a severity rating of 7.5 (high).

5

How can I fix CVE-2016-10518 vulnerability in the ws module?

To fix the CVE-2016-10518 vulnerability, update the ws module to version 1.0.1 or newer.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203