1--TEST--
2Testing null byte injection in imagewbmp
3--CLEAN--
4$tempdir = sys_get_temp_dir(). '/php-gdtest';
5foreach (glob($tempdir . "/test*") as $file ) { unlink($file); }
6rmdir($tempdir);
7--SKIPIF--
8<?php
9if(!extension_loaded('gd')){ die('skip gd extension not available'); }
10$support = gd_info();
11if (!isset($support['WBMP Support']) || $support['WBMP Support'] === false) {
12	print 'skip wbmp support not available';
13}
14?>
15--FILE--
16<?php
17$image = imagecreate(1,1);// 1px image
18
19
20$tempdir = sys_get_temp_dir(). '/php-gdtest';
21if (!file_exists($tempdir) && !is_dir($tempdir)) {
22	mkdir ($tempdir, 0777, true);
23}
24
25$userinput = "1\0"; // from post or get data
26$temp = $tempdir. "/test" . $userinput .".tmp";
27
28echo "\nimagewbmp TEST\n";
29imagewbmp($image, $temp);
30var_dump(file_exists($tempdir. "/test1"));
31var_dump(file_exists($tempdir. "/test1.tmp"));
32foreach (glob($tempdir . "/test*") as $file ) { unlink($file); }
33
34--EXPECTF--
35imagewbmp TEST
36
37Warning: imagewbmp(): Invalid 2nd parameter, filename must not contain null bytes in %s on line %d
38bool(false)
39bool(false)
40