blob: 69793fde1b23ba1c101321b66f3a0fc8bf0d9d8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
--TEST--
Testing: suhosin.server.encode=Off
--DESCRIPTION--
This test is incomplete but at the moment we cannot do better with the standard test framework.
--INI--
suhosin.log.syslog=0
suhosin.log.sapi=0
suhosin.log.stdout=255
suhosin.log.script=0
suhosin.server.encode=Off
--SKIPIF--
<?php include('../skipif.inc'); ?>
--ENV--
return <<<END
REQUEST_URI=AAA<>"'`!AAA
END;
--COOKIE--
--GET--
BBB<>"'`!BBB
--POST--
--FILE--
<?php
// THIS TEST IS INCOMPLETE!!! SEE DESCRIPTION
var_dump($_SERVER['REQUEST_URI']);
var_dump($_SERVER['QUERY_STRING']);
?>
--EXPECTF--
string(12) "AAA<>"'`!AAA"
string(12) "BBB<>"'`!BBB"
|