XML parsing vulnerable to XXE for XML Reader

Cette page n'est pas encore disponible en français, sa traduction est en cours.
Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.

Metadata

ID: java-security/xml-parsing-xxe-xmlreader

Language: Java

Severity: Warning

Category: Security

Description

Your code may be vulnerable XML if you process XML from an untrusted source. Make sure to enable secure processing when you process XML data.

This rule is to check XML Readers.

For DocumentBuilderFactory, make sure you set XMLConstants.FEATURE_SECURE_PROCESSING to true.

Learn More

Non-Compliant Code Examples

class MyClass {

    public void test() {
        XMLReader reader = XMLReaderFactory.createXMLReader();
        reader.setContentHandler(customHandler);
        reader.parse(new InputSource(inputStream));
    }
}

Compliant Code Examples

class MyClass {

    public void test() {
        XMLReader reader = XMLReaderFactory.createXMLReader();
        reader.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, true);
        reader.setContentHandler(customHandler);

        reader.parse(new InputSource(inputStream));
    }
}
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Analysis