- ReDoS in
index.vuln.jsline30
const regex1 = RegExp('(x+x+)+y','g');
const str1 = req.body.msg;
let matchedStrings = regex1.exec(str1);
res.end(matchedStrings)- ReDoS in
index.vuln.jsline39
const regex1 = RegExp(req.body.word,'g');
const str1 = 'table football, foosball';
let matchedStrings = regex1.exec(str1);
res.end(matchedStrings)- ReDoS in
index.vuln.jsline48
const regex1 = RegExp('(x+x+)+y','g');
const str1 = 'table football, foosball';
let matchedStrings = regex1.exec(str1);
res.end(matchedStrings)- ReDoS in
index.vuln.tsline29
const regex1 = RegExp('(x+x+)+y','g');
const str1 = req.body.msg;
let matchedStrings = regex1.exec(str1);
res.end(matchedStrings)- ReDoS in
index.vuln.tsline38
const regex1 = RegExp(req.body.word,'g');
const str1 = 'table football, foosball';
let matchedStrings = regex1.exec(str1);
res.end(matchedStrings)- ReDoS in
index.vuln.tsline47
const regex1 = RegExp('(x+x+)+y','g');
const str1 = 'table football, foosball';
let matchedStrings = regex1.exec(str1);
res.end(matchedStrings)