Uploaded image for project: 'Batik'
  1. Batik
  2. BATIK-1189

XML External Entity Injection

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Open
    • Critical
    • Resolution: Unresolved
    • 1.9
    • None
    • None
    • None

    Description

      XML parser/transformers does not prevent nor limit external entities resolution. This can expose the parser to an XML External Entities attack.

      Following places:

      1. ImageIODebugUtil.dumpNode (TransformerFactory)
      2. NodePickerPanel.parseXml (DocumentBuilderFactory)
      3. SAXSVGDocumentFactory.resolveEntity (line 374 returns null, which fallbacks to default resolver)
        #XMLInputHandler.handle (both Transormer and Document Factory)

      For DocumentBuilderFactory you probably need to set:

      				factory.setFeature("http://xml.org/sax/features/external-general-entities", false);
      				factory.setFeature("http://xml.org/sax/features/external-parameter-entities", false);
      

      For TransformFactory:

      factory.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, true);
      

      Explanation:

      XML External Entities attacks benefit from an XML feature to build documents dynamically at the time of processing. An XML entity allows inclusion of data dynamically from a given resource. External entities allow an XML document to include data from an external URI. Unless configured to do otherwise, external entities force the XML parser to access the resource specified by the URI, e.g., a file on the local machine or on a remote system. This behavior exposes the application to XML External Entity (XXE) attacks, which can be used to perform denial of service of the local system, gain unauthorized access to files on the local machine, scan remote machines, and perform denial of service of remote systems.

      The following XML document shows an example of an XXE attack.

      <?xml version="1.0" encoding="ISO-8859-1"?>
       <!DOCTYPE foo [
        <!ELEMENT foo ANY >
        <!ENTITY xxe SYSTEM "file:///dev/random" >]><foo>&xxe;</foo>
      

      This example could crash the server (on a UNIX system), if the XML parser attempts to substitute the entity with the contents of the /dev/random file.

      Attachments

        Activity

          People

            Unassigned Unassigned
            dkwakkel Donald Kwakkel
            Votes:
            0 Vote for this issue
            Watchers:
            6 Start watching this issue

            Dates

              Created:
              Updated: