i'm working on a script to allow users to browse a given directory, which is not the directory this file is sitting in, but set in a variable.

 define('FOLDER', '../_files/');

Now, the rendred html allows to navigate subfolders inside that folder. I use a "dir" GET variable to tell my script which subfolder's content to display and a ".." link allowing to go upwards, using that same dir variable.

I've set a check that if $_GET['dir'] is equals to FOLDER, it should not display that ".." link. But it's easy enough to mess with that variable sitting in the url and wherever i do that, my script allows to browse above the authorized folder. Not exactly a safe situation...

So i'm thinking i should check the full local path of the authorized directory against the requested directory and if the latter is not inside the authorized one, not display the "..".

But i don't know how to do that. Any hints or pointer would be appreciated. Thanks

link|improve this question

Even though the title doesn't give it away, this is basically the same question as stackoverflow.com/questions/1066930/… – deceze Aug 26 '09 at 8:44
Yep, similar problem/solution. – Alix Axel Aug 26 '09 at 8:46
feedback

2 Answers

up vote 1 down vote accepted

You might want to look at realpath().

$foo = realpath($foo);
if (substr($foo, 0, 8) != '/my/path') {
    return false;
}

...or something like that.

Copied from this answer, since I think this question is better.

link|improve this answer
thanks you. $foo is the requested directory ,and /my/path/ the authorized one, right? – pixeline Aug 26 '09 at 8:57
That's right. :) – deceze Aug 26 '09 at 8:58
feedback

or you could use regex

$requested = realpath($foo);
$allowedpath = '/path/to/allowed';

$regex = '/^'.addslashes($allowedpath).'\/?.*$/';

if (!preg_match($regex, $requested)) {
    return false;
}
link|improve this answer
You should use preg_quote() instead of addslashes(). – Alix Axel Aug 26 '09 at 9:34
preg_quote() won't replace my slashes since the regex start and end chars could be almost anything, but you can add it additionally to addslashes() – stefita Aug 26 '09 at 10:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.