Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-11-25 17:42:34 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2013-11-25 17:42:34 +0400
commitb9fed935b455d06ef943c562093c87171b71e4fc (patch)
tree6686f24988233abf51f49d5371039d93fb0625db /lib/private/request.php
parenta0a665ea459fe96a0006766cc0d0b25e5cd258df (diff)
in case uri and script name don't match we better throw an exception
Diffstat (limited to 'lib/private/request.php')
-rwxr-xr-xlib/private/request.php12
1 files changed, 10 insertions, 2 deletions
diff --git a/lib/private/request.php b/lib/private/request.php
index 9cf09ac7343..7a75bf25208 100755
--- a/lib/private/request.php
+++ b/lib/private/request.php
@@ -138,8 +138,16 @@ class OC_Request {
public static function getRawPathInfo() {
$requestUri = $_SERVER['REQUEST_URI'];
// remove too many leading slashes - can be caused by reverse proxy configuration
- $requestUri = '/' . ltrim($requestUri, '/');
- $path_info = substr($requestUri, strlen($_SERVER['SCRIPT_NAME']));
+ if (strpos($requestUri, '/') === 0) {
+ $requestUri = '/' . ltrim($requestUri, '/');
+ }
+
+ $scriptName = $_SERVER['SCRIPT_NAME'];
+ // in case uri and script name don't match we better throw an exception
+ if (strpos($requestUri, $scriptName) !== 0) {
+ throw new Exception("REQUEST_URI($requestUri) does not start with the SCRIPT_NAME($scriptName)");
+ }
+ $path_info = substr($requestUri, strlen($scriptName));
// Remove the query string from REQUEST_URI
if ($pos = strpos($path_info, '?')) {
$path_info = substr($path_info, 0, $pos);