
## Review A dedicated reviewer checked the rule description successfully for: - [ ] logical errors and incorrect information - [ ] information gaps and missing content - [ ] text style and tone - [ ] PR summary and labels follow [the guidelines](https://github.com/SonarSource/rspec/#to-modify-an-existing-rule)
24 lines
515 B
Plaintext
24 lines
515 B
Plaintext
== How to fix it in Jdom2
|
|
|
|
=== Code examples
|
|
|
|
==== Noncompliant code example
|
|
|
|
[source,java,diff-id=3,diff-type=noncompliant]
|
|
----
|
|
import org.jdom2.input.SAXBuilder;
|
|
|
|
SAXBuilder builder = new SAXBuilder();
|
|
builder.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, false); // Noncompliant
|
|
----
|
|
|
|
==== Compliant solution
|
|
|
|
[source,java,diff-id=3,diff-type=compliant]
|
|
----
|
|
import org.jdom2.input.SAXBuilder;
|
|
|
|
SAXBuilder builder = new SAXBuilder();
|
|
builder.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, true);
|
|
----
|