Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

XXE Vulnerability #2924

Open
dahua966 opened this issue Sep 21, 2020 · 1 comment
Open

XXE Vulnerability #2924

dahua966 opened this issue Sep 21, 2020 · 1 comment

Comments

@dahua966
Copy link

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.

@Idan-D
Copy link

Idan-D commented Nov 1, 2021

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants