这个PHP函数是否可以防止文件遍历?

时间:2012-05-08 05:16:04

标签: php security file codeigniter

我有一个URL,它会向我的用户提供受保护的文件。

文件名在上传文件时由我的应用程序重写,无论名称如何,都存储在我的数据库中。所以我知道它永远不会包含“/”或“..”

文件名为:“USER_ID”_“RANDOMMD5”.FILE_EXT “USER_ID”=当前登录的用户ID和“RANDOM MD5”完全相同。

即。 5_ji3uc237uckj92d0jf3932t09ut93f2.pdf

这是我提供文件的功能:

function user_file($file_name = "")
{
    if ($file_name)
    {
         // Ensure no funny business names:
         $file_name = str_replace ('..', '', $file_name);
         $file_name = str_replace ('/', '', $file_name);

         // Check if the user is allowed to access this file
     $user_id = substr($file_name, 0, strpos($file_name, "_"));

         // now do the logic to check user is logged in, and user is owner of file
         (($this->ion_auth->logged_in()) && (($user_id === $this->user->id))
         {
                // Serve file via readfile()
         }
    }
}

问题:这是一种安全的方法,可以确保此人没有其他方式横向目录,访问其他文件等吗?

编辑1: ion_auth是我的身份验证库,“$ this-> user-> id”是我的构造中存储的用户ID

编辑2:用户文件存储在public_html之外 - 因此只能通过我的应用程序访问AFAIK

编辑3:我改进的代码,使用下面的Amber的想法,考虑到我需要适应不同文件扩展名的事实,我将尝试避免数据库命中:

function user_files($file_name = "")
{
    // for security reasons, check the filename is correct
    // This checks for a 32bit md5 value, followed by a single "." followed by a 3-4 extension (of only a-z)
    if (preg_match('^[A-Za-z0-9]{32}+[.]{1}[A-Za-z]{3,4}$^', $file_name))
    {
        // Now check the user is logged in
        if ($this->ion_auth->logged_in())
        {
            // Rewrite the request to the path on my server - and append the user_id onto the filename
            // This ensures that users can only ever access their own file which they uploaded
            // As their userid was appended to the filename during the upload!
            $file = MY_SECURE_FOLDER.$this->user->id.'_'.$file_name;

            // Now check if file exists
            if (file_exists($file))
            {
                // Serve the file
                header('Content-Type: '.get_mime_by_extension($file));
                readfile($file);
            }
        }
    }
}

2 个答案:

答案 0 :(得分:2)

更好的想法:让用户提供MD5,并自己构建文件名。这样您就不必对用户输入与文件名进行各种疯狂检查 - 您只需确保MD5只是一个40个字符的[0-9a-f]字符串,然后就可以了。

答案 1 :(得分:2)

我可以遍历任何目录,但我将仅限于以我的用户ID开头的文件名。

考虑

$file_name = '/./.\\1234_anything.anything';
         $file_name = str_replace ('..', '', $file_name);
         echo $file_name = str_replace ('/', '', $file_name);

就文件路径分隔符而言,/和\通常是等价的。