Vulnerabilities

2 via 3 paths

Dependencies

43

Source

GitHub

Commit

26760397

Find, fix and prevent vulnerabilities in your code.

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

high severity
new

Uncaught Exception

  • Vulnerable module: fast-xml-parser
  • Introduced through: @aurahelper/languages@2.1.6

Detailed paths

  • Introduced through: @aurahelper/metadata-factory@JJLongoria/aura-helper-metadata-factory#26760397db92ed79fe9170d79016b19965f9202b @aurahelper/languages@2.1.6 fast-xml-parser@4.5.3

Overview

fast-xml-parser is a Validate XML, Parse XML, Build XML without C/C++ based libraries

Affected versions of this package are vulnerable to Uncaught Exception in the numeric entity processing when parsing XML containing out-of-range entity code points. An attacker can cause the application to crash by submitting specially crafted XML input that triggers an uncaught exception.

Remediation

Upgrade fast-xml-parser to version 5.3.4 or higher.

References

high severity

GPL-3.0 license

  • Module: @aurahelper/core
  • Introduced through: @aurahelper/core@2.7.0 and @aurahelper/languages@2.1.6

Detailed paths

  • Introduced through: @aurahelper/metadata-factory@JJLongoria/aura-helper-metadata-factory#26760397db92ed79fe9170d79016b19965f9202b @aurahelper/core@2.7.0
  • Introduced through: @aurahelper/metadata-factory@JJLongoria/aura-helper-metadata-factory#26760397db92ed79fe9170d79016b19965f9202b @aurahelper/languages@2.1.6 @aurahelper/core@2.7.0

GPL-3.0 license

high severity

GPL-3.0 license

  • Module: @aurahelper/languages
  • Introduced through: @aurahelper/languages@2.1.6

Detailed paths

  • Introduced through: @aurahelper/metadata-factory@JJLongoria/aura-helper-metadata-factory#26760397db92ed79fe9170d79016b19965f9202b @aurahelper/languages@2.1.6

GPL-3.0 license

medium severity

Missing Release of Resource after Effective Lifetime

  • Vulnerable module: inflight
  • Introduced through: @aurahelper/core@2.7.0 and @aurahelper/languages@2.1.6

Detailed paths

  • Introduced through: @aurahelper/metadata-factory@JJLongoria/aura-helper-metadata-factory#26760397db92ed79fe9170d79016b19965f9202b @aurahelper/core@2.7.0 unzipper@0.10.14 fstream@1.0.12 rimraf@2.7.1 glob@7.2.3 inflight@1.0.6
  • Introduced through: @aurahelper/metadata-factory@JJLongoria/aura-helper-metadata-factory#26760397db92ed79fe9170d79016b19965f9202b @aurahelper/languages@2.1.6 @aurahelper/core@2.7.0 unzipper@0.10.14 fstream@1.0.12 rimraf@2.7.1 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