-
A XML External Entity is a technique where a XML file contains a statement which leads the XML parser to include results from an external source into the XML file. The benign idea is for example to replace a string multiple times with a predefined value: <!DOCTYPE data [<!ELEMENT data ANY ><!ENTITY name "Olaf">]><data>...<name>&name;</name>...</data> Important: data…