QuackatronHQ / Gigarepo

XML parsing may be vulnerable to XXE attacks JS-D022
Security
Major
a month ago2 years old
medium priority
Found unsafe XML parsing
 18// insecure XML parse
 19const xmlDoc = libxmljs.parseXmlString(xml, {
 20  noblanks: true,
 21  noent: true, 22  nocdata: true,
 23});
 24console.log(xmlDoc);