18 lines
376 B
PHP
18 lines
376 B
PHP
--TEST--
|
|
Testing null byte injection in imagexbm
|
|
--SKIPIF--
|
|
<?php
|
|
if(!extension_loaded('gd')) die('skip gd extension not available');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$image = imagecreate(1,1);// 1px image
|
|
try {
|
|
imagexbm($image, "./foo\0bar");
|
|
} catch (ValueError $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
imagexbm(): Argument #2 ($filename) must not contain any null bytes
|