Vulnerabilities

2 via 3 paths

Dependencies

144

Source

GitHub

Commit

5a0eea20

Find, fix and prevent vulnerabilities in your code.

Severity
  • 2
Status
  • 2
  • 0
  • 0

medium severity

Missing Release of Resource after Effective Lifetime

  • Vulnerable module: inflight
  • Introduced through: puppeteer@2.1.1 and puppeteer-extra-plugin-stealth@2.11.2

Detailed paths

  • Introduced through: se-scraper@NikolaiT/se-scraper#5a0eea201dbeac7c9db4163eaa485bf4cd64f47d puppeteer@2.1.1 rimraf@2.7.1 glob@7.2.3 inflight@1.0.6
  • Introduced through: se-scraper@NikolaiT/se-scraper#5a0eea201dbeac7c9db4163eaa485bf4cd64f47d puppeteer-extra-plugin-stealth@2.11.2 puppeteer-extra-plugin-user-preferences@2.4.1 puppeteer-extra-plugin-user-data-dir@2.4.1 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

Open Redirect

  • Vulnerable module: got
  • Introduced through: got@9.6.0

Detailed paths

  • Introduced through: se-scraper@NikolaiT/se-scraper#5a0eea201dbeac7c9db4163eaa485bf4cd64f47d got@9.6.0
    Remediation: Upgrade to got@11.8.5.

Overview

Affected versions of this package are vulnerable to Open Redirect due to missing verification of requested URLs. It allowed a victim to be redirected to a UNIX socket.

Remediation

Upgrade got to version 11.8.5, 12.1.0 or higher.

References