GitSquared/edex-ui:src/package.json

Vulnerabilities

8 via 8 paths

Dependencies

107

Source

GitHub

Commit

04a00c40

Find, fix and prevent vulnerabilities in your code.

Severity
  • 1
  • 2
  • 5
Status
  • 8
  • 0
  • 0

critical severity

Arbitrary Command Injection

  • Vulnerable module: systeminformation
  • Introduced through: systeminformation@5.9.7

Detailed paths

  • Introduced through: edex-ui@GitSquared/edex-ui#04a00c4079908788b371c6ecdefff96d0d9950f8 systeminformation@5.9.7
    Remediation: Upgrade to systeminformation@5.21.7.

Overview

systeminformation is a simple system and OS information library.

Affected versions of this package are vulnerable to Arbitrary Command Injection via the wifiConnections() and wifiNetworks() functions. An attacker can inject malicious commands by crafting detected SSIDs.

Workaround

This vulnerability can be mitigated by ensuring to check or sanitize parameter strings that are passed to wifiConnections(), wifiNetworks() functions.

Remediation

Upgrade systeminformation to version 5.21.7 or higher.

References

high severity

Arbitrary Code Injection

  • Vulnerable module: pdfjs-dist
  • Introduced through: pdfjs-dist@2.11.338

Detailed paths

  • Introduced through: edex-ui@GitSquared/edex-ui#04a00c4079908788b371c6ecdefff96d0d9950f8 pdfjs-dist@2.11.338
    Remediation: Upgrade to pdfjs-dist@4.2.67.

Overview

pdfjs-dist is a Portable Document Format (PDF) library that is built with HTML5.

Affected versions of this package are vulnerable to Arbitrary Code Injection in font_loader.js, which passes input to the eval() function when the default isEvalSupported option is in use. An attacker can execute code by convincing a user to open a malicious PDF file.

Workaround

This vulnerability can be avoided by setting isEvalSupported to false.

Remediation

Upgrade pdfjs-dist to version 4.2.67 or higher.

References

high severity

Denial of Service (DoS)

  • Vulnerable module: ws
  • Introduced through: ws@7.5.5

Detailed paths

  • Introduced through: edex-ui@GitSquared/edex-ui#04a00c4079908788b371c6ecdefff96d0d9950f8 ws@7.5.5
    Remediation: Upgrade to ws@7.5.10.

Overview

ws is a simple to use websocket client, server and console for node.js.

Affected versions of this package are vulnerable to Denial of Service (DoS) when the number of received headers exceed the server.maxHeadersCount or request.maxHeadersCount threshold.

Workaround

This issue can be mitigating by following these steps:

  1. Reduce the maximum allowed length of the request headers using the --max-http-header-size=size and/or the maxHeaderSize options so that no more headers than the server.maxHeadersCount limit can be sent.

  2. Set server.maxHeadersCount to 0 so that no limit is applied.

PoC


const http = require('http');
const WebSocket = require('ws');

const server = http.createServer();

const wss = new WebSocket.Server({ server });

server.listen(function () {
  const chars = "!#$%&'*+-.0123456789abcdefghijklmnopqrstuvwxyz^_`|~".split('');
  const headers = {};
  let count = 0;

  for (let i = 0; i < chars.length; i++) {
    if (count === 2000) break;

    for (let j = 0; j < chars.length; j++) {
      const key = chars[i] + chars[j];
      headers[key] = 'x';

      if (++count === 2000) break;
    }
  }

  headers.Connection = 'Upgrade';
  headers.Upgrade = 'websocket';
  headers['Sec-WebSocket-Key'] = 'dGhlIHNhbXBsZSBub25jZQ==';
  headers['Sec-WebSocket-Version'] = '13';

  const request = http.request({
    headers: headers,
    host: '127.0.0.1',
    port: server.address().port
  });

  request.end();
});

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade ws to version 5.2.4, 6.2.3, 7.5.10, 8.17.1 or higher.

References

medium severity

Improper Input Validation

  • Vulnerable module: nanoid
  • Introduced through: nanoid@3.1.30

Detailed paths

  • Introduced through: edex-ui@GitSquared/edex-ui#04a00c4079908788b371c6ecdefff96d0d9950f8 nanoid@3.1.30
    Remediation: Upgrade to nanoid@3.3.8.

Overview

Affected versions of this package are vulnerable to Improper Input Validation due to the mishandling of fractional values in the nanoid function. By exploiting this vulnerability, an attacker can achieve an infinite loop.

Remediation

Upgrade nanoid to version 3.3.8, 5.0.9 or higher.

References

medium severity

Arbitrary Code Injection

  • Vulnerable module: systeminformation
  • Introduced through: systeminformation@5.9.7

Detailed paths

  • Introduced through: edex-ui@GitSquared/edex-ui#04a00c4079908788b371c6ecdefff96d0d9950f8 systeminformation@5.9.7
    Remediation: Upgrade to systeminformation@5.23.8.

Overview

systeminformation is a simple system and OS information library.

Affected versions of this package are vulnerable to Arbitrary Code Injection through the getWindowsIEEE8021x() function. An attacker can execute arbitrary commands on the system by injecting malicious commands into an SSID and convincing a user to connect to it. The function then passes this value to the command line without proper sanitization.

Note: This is only exploitable on Windows.

Remediation

Upgrade systeminformation to version 5.23.8 or higher.

References

medium severity

Missing Release of Resource after Effective Lifetime

  • Vulnerable module: inflight
  • Introduced through: geolite2-redist@2.0.4

Detailed paths

  • Introduced through: edex-ui@GitSquared/edex-ui#04a00c4079908788b371c6ecdefff96d0d9950f8 geolite2-redist@2.0.4 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

Cross-site Scripting (XSS)

  • Vulnerable module: smoothie
  • Introduced through: smoothie@1.35.0

Detailed paths

  • Introduced through: edex-ui@GitSquared/edex-ui#04a00c4079908788b371c6ecdefff96d0d9950f8 smoothie@1.35.0
    Remediation: Upgrade to smoothie@1.36.1.

Overview

smoothie is a Smoothie Charts: smooooooth JavaScript charts for realtime streaming data

Affected versions of this package are vulnerable to Cross-site Scripting (XSS) due to improper user input sanitization in strokeStyle and tooltipLabel properties. Exploiting this vulnerability is possible when the user can control these properties.

PoC

// Your payload
const player1Name = 'Nagibator';

// Example of the website's code
const smoothie = new SmoothieChart({
tooltip: true
});
smoothie.streamTo(document.getElementById("chart"));
const player1Score = new TimeSeries();
setInterval(() => {
player1Score.append(Date.now(), Math.random());
}, 1000);
smoothie.addTimeSeries(player1Score, {
tooltipLabel: player1Name,
});

Details

A cross-site scripting attack occurs when the attacker tricks a legitimate web-based application or site to accept a request as originating from a trusted source.

This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.

Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.

Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, < can be coded as &lt; and > can be coded as &gt; in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses < and > as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.

The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.

Types of attacks

There are a few methods by which XSS can be manipulated:

Type Origin Description
Stored Server The malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link.
Reflected Server The attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser.
DOM-based Client The attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data.
Mutated The attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters.

Affected environments

The following environments are susceptible to an XSS attack:

  • Web servers
  • Application servers
  • Web application environments

How to prevent

This section describes the top best practices designed to specifically protect your code:

  • Sanitize data input in an HTTP request before reflecting it back, ensuring all data is validated, filtered or escaped before echoing anything back to the user, such as the values of query parameters during searches.
  • Convert special characters such as ?, &, /, <, > and spaces to their respective HTML or URL encoded equivalents.
  • Give users the option to disable client-side scripts.
  • Redirect invalid requests.
  • Detect simultaneous logins, including those from two separate IP addresses, and invalidate those sessions.
  • Use and enforce a Content Security Policy (source: Wikipedia) to disable any features that might be manipulated for an XSS attack.
  • Read the documentation for any of the libraries referenced in your code to understand which elements allow for embedded HTML.

Remediation

Upgrade smoothie to version 1.36.1 or higher.

References

medium severity

Information Exposure

  • Vulnerable module: nanoid
  • Introduced through: nanoid@3.1.30

Detailed paths

  • Introduced through: edex-ui@GitSquared/edex-ui#04a00c4079908788b371c6ecdefff96d0d9950f8 nanoid@3.1.30
    Remediation: Upgrade to nanoid@3.1.31.

Overview

Affected versions of this package are vulnerable to Information Exposure via the valueOf() function which allows to reproduce the last id generated.

PoC

import { nanoid } from 'nanoid';

const makeProxyNumberToReproducePreviousID = () => {
  let step = 0;
  return {
    valueOf() {
      // // if (!pool || pool.length < bytes) {
      if (step === 0) {
        step++;
        return 0;
      }

      // } else if (poolOffset + bytes > pool.length) {
      if (step === 1) {
        step++;
        return -Infinity;
      }

      // poolOffset += bytes
      if (step === 2) {
        step++;
        return 0;
      }

      return 21;
    },
  };
};

const ID1 = nanoid();
const ID2 = nanoid(makeProxyNumberToReproducePreviousID());
console.log({ ID1, ID2, isIDsEqual: ID1 === ID2 });

Remediation

Upgrade nanoid to version 3.1.31 or higher.

References