Files
php-src/sapi/cgi/tests/bug81518a.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

15 lines
315 B
PHP

--TEST--
Bug #81518 (Header injection via default_mimetype / default_charset)
--CGI--
--FILE--
<?php
ini_set(
"default_mimetype",
"text/html;charset=ISO-8859-1\r\nContent-Length: 31\r\n\r\n" .
"Lets smuggle a HTTP response.\r\n"
);
?>
--EXPECTHEADERS--
Content-type: text/html; charset=UTF-8
--EXPECT--