We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d4d91f commit 6764f81Copy full SHA for 6764f81
src/main/java/com/github/underscore/lodash/Xml.java
@@ -1366,6 +1366,7 @@ private static org.w3c.dom.Document createDocument() {
1366
final javax.xml.parsers.DocumentBuilderFactory factory =
1367
javax.xml.parsers.DocumentBuilderFactory.newInstance();
1368
factory.setNamespaceAware(true);
1369
+ factory.setFeature(javax.xml.XMLConstants.FEATURE_SECURE_PROCESSING, true);
1370
final javax.xml.parsers.DocumentBuilder builder = factory.newDocumentBuilder();
1371
return builder.newDocument();
1372
} catch (javax.xml.parsers.ParserConfigurationException ex) {
0 commit comments