From: Christoph M. Becker Date: Tue, 21 Jul 2020 09:07:43 +0000 (+0200) Subject: Fix #79877: getimagesize function silently truncates after a null byte X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=05c5c9370537ff2fc8d37629beb6ae8e354500c8;p=php Fix #79877: getimagesize function silently truncates after a null byte We have to check for NUL bytes if `getimagesize()` has been called. --- diff --git a/ext/standard/image.c b/ext/standard/image.c index 73e1776a3a..5c87c9a49a 100644 --- a/ext/standard/image.c +++ b/ext/standard/image.c @@ -1475,6 +1475,11 @@ static void php_getimagesize_from_any(INTERNAL_FUNCTION_PARAMETERS, int mode) { Z_PARAM_ZVAL(info) ZEND_PARSE_PARAMETERS_END(); + if (mode == FROM_PATH && CHECK_NULL_PATH(input, input_len)) { + php_error_docref(NULL, E_WARNING, "Invalid path"); + return; + } + if (argc == 2) { info = zend_try_array_init(info); if (!info) { diff --git a/ext/standard/tests/image/bug79877.phpt b/ext/standard/tests/image/bug79877.phpt new file mode 100644 index 0000000000..92e93e59e5 --- /dev/null +++ b/ext/standard/tests/image/bug79877.phpt @@ -0,0 +1,9 @@ +--TEST-- +Bug #79877 (getimagesize function silently truncates after a null byte) +--FILE-- + +--EXPECTF-- +Warning: getimagesize(): Invalid path in %s on line %d +NULL