aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2015-04-11 17:43:06 +0200
committerAndreas Fischer <bantu@phpbb.com>2015-04-25 17:22:10 +0200
commit463c62df1847a3791fb7ec23b72c2f72bed12938 (patch)
treeaa90367dc4217165b93c492984403f3de5681960
parent35d2467c94e8bb4b7c9c4919d5c6a3c98e0c85ed (diff)
downloadforums-463c62df1847a3791fb7ec23b72c2f72bed12938.tar
forums-463c62df1847a3791fb7ec23b72c2f72bed12938.tar.gz
forums-463c62df1847a3791fb7ec23b72c2f72bed12938.tar.bz2
forums-463c62df1847a3791fb7ec23b72c2f72bed12938.tar.xz
forums-463c62df1847a3791fb7ec23b72c2f72bed12938.zip
[ticket/13765] Verify SERVER_PROTOCOL has the expected format before using it.
PHPBB3-13765
-rw-r--r--phpBB/includes/functions.php2
-rw-r--r--phpBB/includes/startup.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index f0657b9016..4ae6e7a018 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -2782,7 +2782,7 @@ function send_status_line($code, $message)
}
else
{
- if (!empty($_SERVER['SERVER_PROTOCOL']))
+ if (!empty($_SERVER['SERVER_PROTOCOL']) && is_string($_SERVER['SERVER_PROTOCOL']) && preg_match('#^HTTP/[0-9]\.[0-9]$#', $_SERVER['SERVER_PROTOCOL']))
{
$version = $_SERVER['SERVER_PROTOCOL'];
}
diff --git a/phpBB/includes/startup.php b/phpBB/includes/startup.php
index 9bbbf4fd4c..008651c236 100644
--- a/phpBB/includes/startup.php
+++ b/phpBB/includes/startup.php
@@ -130,7 +130,7 @@ if (phpbb_has_trailing_path($phpEx))
{
$prefix = 'Status:';
}
- else if (!empty($_SERVER['SERVER_PROTOCOL']))
+ else if (!empty($_SERVER['SERVER_PROTOCOL']) && is_string($_SERVER['SERVER_PROTOCOL']) && preg_match('#^HTTP/[0-9]\.[0-9]$#', $_SERVER['SERVER_PROTOCOL']))
{
$prefix = $_SERVER['SERVER_PROTOCOL'];
}