I have found a way of forcing a site to return content-type XML to the user's browser even though the content is HTML. The browser then interprets this site as XML and throws an error since the HTML contains Javascript that doesn't decode to valid XML. Different levels of information is returned by the main browsers, but FF shows me:
XML Parsing Error: not well-formed Location: http://www.example.com/return_xml
Line Number 30, Column 1: var y= (a && a.b ...
The second &
symbol breaks the XML parser. What type of attacks could be executed from this (if any)?
My first thought was XXE but I believe browsers disable that by default. Does this sound like a non-vulnerability?