aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/symfony_request.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2014-11-02 00:24:02 +0100
committerNils Adermann <naderman@naderman.de>2014-11-02 00:24:02 +0100
commitb6a4f83c412d4db7596ad677eca5551a5fc715d8 (patch)
tree552dfa7830a2ffa7bec9437a921d9958fbec1830 /phpBB/phpbb/symfony_request.php
parentc980402a4cb6cb3457ad685cc7e88e8b37ee6f60 (diff)
parentf534503a66fc81e7bbe589b883167d2343871134 (diff)
downloadforums-b6a4f83c412d4db7596ad677eca5551a5fc715d8.tar
forums-b6a4f83c412d4db7596ad677eca5551a5fc715d8.tar.gz
forums-b6a4f83c412d4db7596ad677eca5551a5fc715d8.tar.bz2
forums-b6a4f83c412d4db7596ad677eca5551a5fc715d8.tar.xz
forums-b6a4f83c412d4db7596ad677eca5551a5fc715d8.zip
Merge remote-tracking branch 'github-security/ticket/security-164-alt' into prep-release-3.1.1
* github-security/ticket/security-164-alt: [ticket/security-164] Correctly format page_name [ticket/security-164] Sanitize all global variables in symfony_request class
Diffstat (limited to 'phpBB/phpbb/symfony_request.php')
-rw-r--r--phpBB/phpbb/symfony_request.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/phpBB/phpbb/symfony_request.php b/phpBB/phpbb/symfony_request.php
index bf9ddec493..ad949a35f2 100644
--- a/phpBB/phpbb/symfony_request.php
+++ b/phpBB/phpbb/symfony_request.php
@@ -38,6 +38,9 @@ class symfony_request extends Request
array_walk_recursive($get_parameters, $sanitizer);
array_walk_recursive($post_parameters, $sanitizer);
+ array_walk_recursive($server_parameters, $sanitizer);
+ array_walk_recursive($files_parameters, $sanitizer);
+ array_walk_recursive($cookie_parameters, $sanitizer);
parent::__construct($get_parameters, $post_parameters, array(), $cookie_parameters, $files_parameters, $server_parameters);
}