Files
php-src/sapi/cgi/tests/bug81518b.phpt
Christoph M. Becker 365769366b Fix #81518: Header injection via default_mimetype / default_charset
We forbid setting these INI options to values containing NUL bytes, CR
or LF.

Closes GH-7574.
2021-10-14 12:16:19 +02:00

12 lines
281 B
PHP

--TEST--
Bug #81518 (Header injection via default_mimetype / default_charset)
--CGI--
--FILE--
<?php
ini_set('default_charset', 'ISO-8859-1' . "\r\nHeader-Injection: Works!");
header('Content-Type: text/html');
?>
--EXPECTHEADERS--
Content-type: text/html;charset=UTF-8
--EXPECT--