summaryrefslogtreecommitdiff
path: root/ext/gd/tests/imagegd_nullbyte_injection.phpt
blob: 4a77b15ee0dfba24bd4c33c4d5c30d6f1fcc404e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--TEST--
Testing null byte injection in imagegd
--SKIPIF--
<?php
        if(!extension_loaded('gd')){ die('skip gd extension not available'); }
?>
--FILE--
<?php
$image = imagecreate(1,1);// 1px image
try {
    imagegd($image, "./foo\0bar");
} catch (ValueError $e) {
    echo $e->getMessage(), "\n";
}
?>
--EXPECT--
imagegd(): Argument #2 ($to) must not contain any null bytes