Vulnerabilities

3 via 3 paths

Dependencies

389

Source

GitHub

Commit

94c3c699

Find, fix and prevent vulnerabilities in your code.

Issue type
  • 3
  • 2
Severity
  • 3
  • 2
Status
  • 5
  • 0
  • 0

high severity

Server-side Request Forgery (SSRF)

  • Vulnerable module: axios
  • Introduced through: node-ical@0.18.0

Detailed paths

  • Introduced through: magicmirror@MagicMirrorOrg/MagicMirror#94c3c699e8bf89e0466580960d5d32b745dd940c node-ical@0.18.0 axios@1.6.7
    Remediation: Upgrade to node-ical@0.19.0.

Overview

axios is a promise-based HTTP client for the browser and Node.js.

Affected versions of this package are vulnerable to Server-side Request Forgery (SSRF) through unexpected behavior where requests for path-relative URLs get processed as protocol-relative URLs. An attacker can manipulate the server to make unauthorized requests by exploiting this behavior.

PoC


const axios = require('axios');

this.axios = axios.create({
  baseURL: 'https://userapi.example.com',
});

//userId = '12345';
userId = '/google.com'

this.axios.get(`/${userId}`).then(function (response) {
  console.log(`config.baseURL:  ${response.config.baseURL}`);
  console.log(`config.method:   ${response.config.method}`);
  console.log(`config.url:      ${response.config.url}`);
  console.log(`res.responseUrl: ${response.request.res.responseUrl}`);
});

Output:

config.baseURL:  https://userapi.example.com
config.method:   get
config.url:      //google.com
res.responseUrl: http://www.google.com/

Remediation

Upgrade axios to version 1.7.4 or higher.

References

high severity

AGPL-3.0 license

  • Module: @pm2/agent
  • Introduced through: pm2@5.4.3

Detailed paths

  • Introduced through: magicmirror@MagicMirrorOrg/MagicMirror#94c3c699e8bf89e0466580960d5d32b745dd940c pm2@5.4.3 @pm2/agent@2.0.4

AGPL-3.0 license

high severity

AGPL-3.0 license

  • Module: pm2
  • Introduced through: pm2@5.4.3

Detailed paths

  • Introduced through: magicmirror@MagicMirrorOrg/MagicMirror#94c3c699e8bf89e0466580960d5d32b745dd940c pm2@5.4.3

AGPL-3.0 license

medium severity

Server-Side Request Forgery (SSRF)

  • Vulnerable module: ip
  • Introduced through: express-ipfilter@1.3.2

Detailed paths

  • Introduced through: magicmirror@MagicMirrorOrg/MagicMirror#94c3c699e8bf89e0466580960d5d32b745dd940c express-ipfilter@1.3.2 ip@2.0.1

Overview

ip is a Node library.

Affected versions of this package are vulnerable to Server-Side Request Forgery (SSRF) via the isPublic function, which identifies some private IP addresses as public addresses due to improper parsing of the input. An attacker can manipulate a system that uses isLoopback(), isPrivate() and isPublic functions to guard outgoing network requests to treat certain IP addresses as globally routable by supplying specially crafted IP addresses.

Note

This vulnerability derived from an incomplete fix for CVE-2023-42282

Remediation

There is no fixed version for ip.

References

medium severity
new

Cross-site Scripting (XSS)

  • Vulnerable module: axios
  • Introduced through: node-ical@0.18.0

Detailed paths

  • Introduced through: magicmirror@MagicMirrorOrg/MagicMirror#94c3c699e8bf89e0466580960d5d32b745dd940c node-ical@0.18.0 axios@1.6.7
    Remediation: Upgrade to node-ical@0.20.1.

Overview

axios is a promise-based HTTP client for the browser and Node.js.

Affected versions of this package are vulnerable to Cross-site Scripting (XSS) via setAttribute('href' href) in /axios/dist/axios.js due to improper input sanitization.

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 axios to version 1.7.8 or higher.

References