Skip to content

Commit ec16bb7

Browse files
authored
Merge pull request #1851 from kleros/fix/regex-dos
Fix: regex vulnerable to super-linear runtime due to excessive backtracking
2 parents e18c73c + f191315 commit ec16bb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/src/utils/commify.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export function commify(value: string | number): string {
22
const comps = String(value).split(".");
33

4-
if (!String(value).match(/^-?[0-9]*\.?[0-9]*$/)) {
4+
if (!String(value).match(/^-?\d+(\.\d+)?$/)) {
55
return "0";
66
}
77

0 commit comments

Comments
 (0)