21 lines
504 B
PHP
21 lines
504 B
PHP
--TEST--
|
|
Bug 73868 (DOS vulnerability in gdImageCreateFromGd2Ctx())
|
|
--EXTENSIONS--
|
|
gd
|
|
--SKIPIF--
|
|
<?php
|
|
if (!GD_BUNDLED && version_compare(GD_VERSION, '2.3.3', '>=')) {
|
|
die("skip test requires GD 2.3.2 or older");
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
var_dump(imagecreatefromgd2(__DIR__ . DIRECTORY_SEPARATOR . 'bug73868.gd2'));
|
|
?>
|
|
--EXPECTF--
|
|
Warning: imagecreatefromgd2(): gd2: EOF while reading
|
|
in %s on line %d
|
|
|
|
Warning: imagecreatefromgd2(): "%s" is not a valid GD2 file in %s on line %d
|
|
bool(false)
|