Skip to content

Commit

Permalink
Allow '..' segment in photo/album paths through file_proxy (as is not…
Browse files Browse the repository at this point in the history
… forbidden in other places like add album/item) and explitely look for /../ instead

Note: directory path can't end in '.' forcibly so this shall be fine
Fixes Ticket #1518
  • Loading branch information
Joe7 committed Jan 7, 2011
1 parent d74aad0 commit 9364f0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/gallery/controllers/file_proxy.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function __call($function, $args) {
$file_uri = substr($request_uri, strlen($var_uri));

// Make sure that we don't leave the var dir
if (strpos($file_uri, "..") !== false) {
if (strpos($file_uri, "/../") !== false) {
throw new Kohana_404_Exception();
}

Expand Down

0 comments on commit 9364f0d

Please sign in to comment.