Skip to content

Commit bd1e9e0

Browse files
authored
Fix ReDoS (#593)
Fix 6 ReDoS-vulnerable regexes with pattern `\d*\.?\d+`. Fix strategy: Replace `\d*\.?\d+` with `(d+|\d*\.\d+)`
1 parent 209adf9 commit bd1e9e0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

index.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -799,7 +799,7 @@ var QUERIES = [
799799
select: sinceQuery
800800
},
801801
{
802-
regexp: /^(>=?|<=?)\s*(\d*\.?\d+)%$/,
802+
regexp: /^(>=?|<=?)\s*(d+|\d*\.\d+)%$/,
803803
select: function (context, sign, popularity) {
804804
popularity = parseFloat(popularity)
805805
var usage = browserslist.usage.global
@@ -824,7 +824,7 @@ var QUERIES = [
824824
}
825825
},
826826
{
827-
regexp: /^(>=?|<=?)\s*(\d*\.?\d+)%\s+in\s+my\s+stats$/,
827+
regexp: /^(>=?|<=?)\s*(d+|\d*\.\d+)%\s+in\s+my\s+stats$/,
828828
select: function (context, sign, popularity) {
829829
popularity = parseFloat(popularity)
830830
if (!context.customUsage) {
@@ -852,7 +852,7 @@ var QUERIES = [
852852
}
853853
},
854854
{
855-
regexp: /^(>=?|<=?)\s*(\d*\.?\d+)%\s+in\s+(\S+)\s+stats$/,
855+
regexp: /^(>=?|<=?)\s*(d+|\d*\.\d+)%\s+in\s+(\S+)\s+stats$/,
856856
select: function (context, sign, popularity, name) {
857857
popularity = parseFloat(popularity)
858858
var stats = env.loadStat(context, name, browserslist.data)
@@ -887,7 +887,7 @@ var QUERIES = [
887887
}
888888
},
889889
{
890-
regexp: /^(>=?|<=?)\s*(\d*\.?\d+)%\s+in\s+((alt-)?\w\w)$/,
890+
regexp: /^(>=?|<=?)\s*(d+|\d*\.\d+)%\s+in\s+((alt-)?\w\w)$/,
891891
select: function (context, sign, popularity, place) {
892892
popularity = parseFloat(popularity)
893893
if (place.length === 2) {
@@ -918,11 +918,11 @@ var QUERIES = [
918918
}
919919
},
920920
{
921-
regexp: /^cover\s+(\d*\.?\d+)%$/,
921+
regexp: /^cover\s+(d+|\d*\.\d+)%$/,
922922
select: coverQuery
923923
},
924924
{
925-
regexp: /^cover\s+(\d*\.?\d+)%\s+in\s+(my\s+stats|(alt-)?\w\w)$/,
925+
regexp: /^cover\s+(d+|\d*\.\d+)%\s+in\s+(my\s+stats|(alt-)?\w\w)$/,
926926
select: coverQuery
927927
},
928928
{

0 commit comments

Comments
 (0)