Vulnerabilities

1 via 1 paths

Dependencies

24

Source

GitHub

Commit

85b9d800

Find, fix and prevent vulnerabilities in your code.

Severity
  • 1
Status
  • 1
  • 0
  • 0

medium severity

Arbitrary Code Injection

  • Vulnerable module: underscore
  • Introduced through: react-bootstrap-table-next@3.3.5

Detailed paths

  • Introduced through: groundskeeper@newrelic/nr1-groundskeeper#85b9d80045e80ab64b0ada16f167da3e3626cb09 react-bootstrap-table-next@3.3.5 underscore@1.9.1

Overview

underscore is a JavaScript's functional programming helper library.

Affected versions of this package are vulnerable to Arbitrary Code Injection via the template function, particularly when the variable option is taken from _.templateSettings as it is not sanitized.

PoC

const _ = require('underscore');
_.templateSettings.variable = "a = this.process.mainModule.require('child_process').execSync('touch HELLO')";
const t = _.template("")();

Remediation

Upgrade underscore to version 1.13.0-2, 1.12.1 or higher.

References