Vulnerabilities

3 via 13 paths

Dependencies

290

Source

GitHub

Commit

28044193

Find, fix and prevent vulnerabilities in your code.

Severity
  • 2
  • 1
Status
  • 3
  • 0
  • 0

high severity
new

Uncontrolled resource consumption

  • Vulnerable module: braces
  • Introduced through: @oclif/core@1.26.2 and @salesforce/command@5.3.9

Detailed paths

  • Introduced through: bbmutation@keirbowden/bbmutation#2804419370776006d35106c1b47d62416404639e @oclif/core@1.26.2 globby@11.1.0 fast-glob@3.3.2 micromatch@4.0.5 braces@3.0.2
  • Introduced through: bbmutation@keirbowden/bbmutation#2804419370776006d35106c1b47d62416404639e @salesforce/command@5.3.9 @oclif/core@1.26.2 globby@11.1.0 fast-glob@3.3.2 micromatch@4.0.5 braces@3.0.2
  • Introduced through: bbmutation@keirbowden/bbmutation#2804419370776006d35106c1b47d62416404639e @salesforce/command@5.3.9 @oclif/test@2.5.6 @oclif/core@2.16.0 globby@11.1.0 fast-glob@3.3.2 micromatch@4.0.5 braces@3.0.2

Overview

braces is a Bash-like brace expansion, implemented in JavaScript.

Affected versions of this package are vulnerable to Uncontrolled resource consumption due to failing to limit the number of characters it can handle, through the parse function. An attacker can cause the application to allocate excessive memory and potentially crash by sending imbalanced braces as input.

Remediation

There is no fixed version for braces.

References

high severity
new

Inefficient Regular Expression Complexity

  • Vulnerable module: micromatch
  • Introduced through: @oclif/core@1.26.2 and @salesforce/command@5.3.9

Detailed paths

  • Introduced through: bbmutation@keirbowden/bbmutation#2804419370776006d35106c1b47d62416404639e @oclif/core@1.26.2 globby@11.1.0 fast-glob@3.3.2 micromatch@4.0.5
  • Introduced through: bbmutation@keirbowden/bbmutation#2804419370776006d35106c1b47d62416404639e @salesforce/command@5.3.9 @oclif/core@1.26.2 globby@11.1.0 fast-glob@3.3.2 micromatch@4.0.5
  • Introduced through: bbmutation@keirbowden/bbmutation#2804419370776006d35106c1b47d62416404639e @salesforce/command@5.3.9 @oclif/test@2.5.6 @oclif/core@2.16.0 globby@11.1.0 fast-glob@3.3.2 micromatch@4.0.5

Overview

Affected versions of this package are vulnerable to Inefficient Regular Expression Complexity due to the use of unsafe pattern configurations that allow greedy matching through the micromatch.braces() function. An attacker can cause the application to hang or slow down by passing a malicious payload that triggers extensive backtracking in regular expression processing.

Remediation

A fix was pushed into the master branch but not yet published.

References

medium severity

Missing Release of Resource after Effective Lifetime

  • Vulnerable module: inflight
  • Introduced through: @salesforce/core@3.36.2 and @salesforce/command@5.3.9

Detailed paths

  • Introduced through: bbmutation@keirbowden/bbmutation#2804419370776006d35106c1b47d62416404639e @salesforce/core@3.36.2 archiver@5.3.2 archiver-utils@2.1.0 glob@7.2.3 inflight@1.0.6
  • Introduced through: bbmutation@keirbowden/bbmutation#2804419370776006d35106c1b47d62416404639e @salesforce/core@3.36.2 @salesforce/kit@1.9.2 shx@0.3.4 shelljs@0.8.5 glob@7.2.3 inflight@1.0.6
  • Introduced through: bbmutation@keirbowden/bbmutation#2804419370776006d35106c1b47d62416404639e @salesforce/command@5.3.9 @salesforce/kit@1.9.2 shx@0.3.4 shelljs@0.8.5 glob@7.2.3 inflight@1.0.6
  • Introduced through: bbmutation@keirbowden/bbmutation#2804419370776006d35106c1b47d62416404639e @salesforce/command@5.3.9 @salesforce/core@3.36.2 archiver@5.3.2 archiver-utils@2.1.0 glob@7.2.3 inflight@1.0.6
  • Introduced through: bbmutation@keirbowden/bbmutation#2804419370776006d35106c1b47d62416404639e @salesforce/core@3.36.2 archiver@5.3.2 zip-stream@4.1.1 archiver-utils@3.0.4 glob@7.2.3 inflight@1.0.6
  • Introduced through: bbmutation@keirbowden/bbmutation#2804419370776006d35106c1b47d62416404639e @salesforce/command@5.3.9 @salesforce/core@3.36.2 @salesforce/kit@1.9.2 shx@0.3.4 shelljs@0.8.5 glob@7.2.3 inflight@1.0.6
  • Introduced through: bbmutation@keirbowden/bbmutation#2804419370776006d35106c1b47d62416404639e @salesforce/command@5.3.9 @salesforce/core@3.36.2 archiver@5.3.2 zip-stream@4.1.1 archiver-utils@3.0.4 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