mirror of
https://github.com/php/php-src.git
synced 2024-11-27 11:53:33 +08:00
a375d54785
Cf. PR #6787. Closes GH-6994.
23 lines
461 B
PHP
23 lines
461 B
PHP
--TEST--
|
|
Testing null byte injection in imagepng
|
|
--EXTENSIONS--
|
|
gd
|
|
--SKIPIF--
|
|
<?php
|
|
$support = gd_info();
|
|
if (!isset($support['PNG Support']) || $support['PNG Support'] === false) {
|
|
print 'skip png support not available';
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$image = imagecreate(1,1);// 1px image
|
|
try {
|
|
imagepng($image, "./foo\0bar");
|
|
} catch (TypeError $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
imagepng(): Argument #2 ($file) must not contain null bytes
|