Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:Backports:SLE-15-SP4:SLECandidates
jdom
CVE-2021-33813.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File CVE-2021-33813.patch of Package jdom
--- libjdom1-java-1.1.3.orig/src/java/org/jdom/input/SAXBuilder.java +++ libjdom1-java-1.1.3/src/java/org/jdom/input/SAXBuilder.java @@ -442,6 +442,11 @@ public class SAXBuilder { public void setFeature(String name, boolean value) { // Save the specified feature for later. features.put(name, value ? Boolean.TRUE : Boolean.FALSE); + if (name.equals("http://xml.org/sax/features/external-general-entities")) { + // See issue https://github.com/hunterhacker/jdom/issues/189 + // And PR https://github.com/hunterhacker/jdom/pull/188 + setExpandEntities(value); + } } /** @@ -766,13 +771,6 @@ public class SAXBuilder { internalSetFeature(parser, name, value.booleanValue(), name); } - // Set any user-specified properties on the parser. - iter = properties.keySet().iterator(); - while (iter.hasNext()) { - String name = (String)iter.next(); - internalSetProperty(parser, name, properties.get(name), name); - } - if (coreFeatures) { // Set validation. try { @@ -810,6 +808,13 @@ public class SAXBuilder { } catch (SAXNotRecognizedException e) { /* Ignore... */ } catch (SAXNotSupportedException e) { /* Ignore... */ } + + // Set any user-specified properties on the parser. + iter = properties.keySet().iterator(); + while (iter.hasNext()) { + String name = (String)iter.next(); + internalSetProperty(parser, name, properties.get(name), name); + } } /**
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor