mirror of
https://github.com/php/php-src.git
synced 2026-04-27 10:16:41 +02:00
18 lines
324 B
PHP
18 lines
324 B
PHP
--TEST--
|
|
Bug #66783 (UAF when appending DOMDocument to element)
|
|
--EXTENSIONS--
|
|
dom
|
|
--FILE--
|
|
<?php
|
|
$doc = new DomDocument;
|
|
$doc->loadXML('<root></root>');
|
|
$e = $doc->createElement('e');
|
|
try {
|
|
$e->appendChild($doc);
|
|
} catch (DOMException $ex) {
|
|
echo $ex->getMessage(), PHP_EOL;
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
Hierarchy Request Error
|