symphonycms icon indicating copy to clipboard operation
symphonycms copied to clipboard

XXE Vulnerability

Open dahua966 opened this issue 4 years ago • 1 comments

https://github.com/symphonycms/symphonycms/blob/master/symphony/lib/toolkit/class.xmlelement.php

public static function convertFromXMLString($root_element, $xml)
{
    $doc = new DOMDocument('1.0', 'utf-8');
    $doc->loadXML($xml);

    return self::convertFromDOMDocument($root_element, $doc);
}

Crafted user input could lead to XXE vulnerability as the external entity is not disabled here.

dahua966 avatar Sep 21 '20 02:09 dahua966

Hey, Was this issue already fixed? if yes, in which version?

Idan-D avatar Nov 01 '21 12:11 Idan-D