Normally when parsing XML in java, it's possible to avoid falling victim to entity expansion attacks by using
dbf.setFeature(javax.xml.XMLConstants.FEATURE_SECURE_PROCESSING, true);
Where dbf is a DocumentBuilderFactory used to create DocumentBuilders for XML parsing.
However, suppose I am unmarshalling some XML using JAXB, e.g. like this:
final JAXBContext context = JAXBContext.newInstance(MyClass.class);
final Unmarshaller unmarshaller = context.createUnmarshaller();
final MyClass result = (MyClass) unmarshaller.unmarshal(input);
How can I configure JAXB to use FEATURE_SECURE_PROCESSING on the underlying XML parser?
Googling for answers brings up the following as the best result: http://forums.java.net/node/699983
However, I don't want to have to bring in implementations of XMLStreamFactory and the like just to make entity expansion configurable. Is there a way to solve this problem using just the JAXB API?