-
Notifications
You must be signed in to change notification settings - Fork 38.6k
Closed
Labels
in: dataIssues in data modules (jdbc, orm, oxm, tx)Issues in data modules (jdbc, orm, oxm, tx)status: backportedAn issue that has been backported to maintenance branchesAn issue that has been backported to maintenance branchestype: enhancementA general enhancementA general enhancement
Milestone
Description
Muminur Choudhury opened SPR-11737 and commented
We are currently using spring 4.0.1.
Updated to 4.0.2 (also tried latest 4.0.3) , got unexpected unmarshalling issues with XMLBeansMarshaller for any XSD that uses the "extension" element.
Work-round we had to apply :
XmlBeansMarshaller xmlBeansMarshaller = new XmlBeansMarshaller() {
// work-round for spring 4.0.2
protected Object unmarshalStreamSourceNoExternalEntitities(StreamSource streamSource) throws XmlMappingException, IOException {
return unmarshalStreamSource(streamSource);
}
};
Affects: 3.2.8, 4.0.2
Issue Links:
- Jaxb2RootElementHttpMessageConverter is susceptible to XXE vulnerability [SPR-11376] #16003 Jaxb2RootElementHttpMessageConverter is susceptible to XXE vulnerability
Backported to: 3.2.9
Metadata
Metadata
Assignees
Labels
in: dataIssues in data modules (jdbc, orm, oxm, tx)Issues in data modules (jdbc, orm, oxm, tx)status: backportedAn issue that has been backported to maintenance branchesAn issue that has been backported to maintenance branchestype: enhancementA general enhancementA general enhancement