I am implementing a simple directory listing script in PHP.

I want to ensure that the passed path is safe before opening directory handles and echoing the results willy-nilly.

$f = $_GET["f"];
if(! $f) {
    $f = "/";
}
// make sure $f is safe
$farr = explode("/",$f);
$unsafe = false;
foreach($farr as $farre) {
    // protect against directory traversal
    if(strpos($farre,"..") != false) {
        $unsafe = true;
        break;
    }
    if(end($farr) != $farre) {
        // make sure no dots are present (except after the last slash in the file path)
        if(strpos($farre,".") != false) {
            $unsafe = true;
            break;
        }
    }
}

Is this enough to make sure a path sent by the user is safe, or are there other things I should do to protected against attack?

link|improve this question

1  
You have your variables switched in the foreach() – Greg May 11 '09 at 9:17
:O Thanks for picking that up... – Charlie Somerville May 11 '09 at 9:18
feedback

1 Answer

up vote 5 down vote accepted

It may be that realpath() is helpful to you.

realpath() expands all symbolic links and resolves references to '/./', '/../' and extra '/' characters in the input path, and returns the canonicalized absolute pathname.

However, this function assumes that the path in question actually exists. It will not perform canonization for a non-existing path. In this case FALSE is returned.

link|improve this answer
So I perform realpath() on the passed path, and check if it is underneath my 'safe' directory? – Charlie Somerville May 11 '09 at 9:26
Exactly. Since you get a no-nonsense path back (or FALSE), you can do a simple substring compare as the check. – Tomalak May 11 '09 at 9:29
Sounds good to me. Thanks! – Charlie Somerville May 12 '09 at 8:41
feedback

Your Answer

 
or
required, but never shown

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