mirror of
https://github.com/php/php-src.git
synced 2026-03-28 18:22:42 +01:00
21 lines
384 B
PHP
21 lines
384 B
PHP
--TEST--
|
|
Bug #73147: Use After Free in PHP7 unserialize()
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded("curl")) {
|
|
exit("skip curl extension not loaded");
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
$poc = 'a:1:{i:0;O:8:"CURLFile":1:{s:4:"name";R:1;}}';
|
|
try {
|
|
var_dump(unserialize($poc));
|
|
} catch(Exception $e) {
|
|
echo $e->getMessage();
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
Unserialization of CURLFile instances is not allowed
|