开发者

Security flaw in this code approach

Am wondering if there would be any security flaw in this approach. I am writing a piece of code which allows users to upload files and another set to download those files. These files can be anything.

  1. User uploads the file (any file including .php files), it is renamed to an md5 开发者_JAVA技巧hash (extension removed) and stored on server. A corresponding mySQL entry is made.
  2. The user trying to download the file, uses say download.php to download the file where the md5 file is sent (with the original name).

Is there someway in which anyone can exploit the above scenario?


Well, in theory no. There shouldn't be way to exploit that system. However, there are several things I would like to point out to you that you may not have thought of.

First, since the files are downloaded through a PHP file (assuming readfile() with appropriate headers), you should place the files in a place that is inaccessible to the users. On apache servers, generally the easiest approach is just to put a .htaccess file into the upload directory with "deny from all" in it to prevent external access. If users don't have access to the files externally in the first place, then there isn't really any worry about file extensions causing trouble (though, renaming for storage purposes is still a good idea)

Secondly, naming the files by the hash may not be such a brilliant idea, since you might get collisions eventually. What if two files happen to have the same hash? Not to mention, computing the hash is a bit on the slow side, especially for bigger files (if computed from the file contents, and not the name). Since you store an entry to the database, I would assume you have some sort of primary key there (like an auto_increment field). I would recommend simply using that ID number as the file name for storage to avoid collisions (in case you don't know, you can get the ID generated by last insert via mysql_last_insert_id())

Of course, there may always be problems with files containing viruses, which can infect the machine downloading the files, but that's really outside the scope of this question and doesn't affect the server itself in any way.


If they can include/require local files because of a separate hole and the hash is predictable, then yes.

So, basically, no. :-)


As long as nobody will execute those files on the server it seems to be pretty secure.


In order for the download to work as expected you probably need to store the mime-type and generate a filename with an appropriate extension in the Content-Disposition header. Which also means that these downloads need to be mediated by PHP (so you can't put them outside the open_base_dir).

You should review your code to see if there's any way the uploaded files might be included.

C.


If it is different extension that is not made default executable and has a random hash to it, guaranteed not going to be exploitable. Just make sure you do not assign PHP to the extension.


I would suggest that you rename the file extensions to a non executable one so that even if there is a loophole in security and some one is able to access the file they will not be able to execute it. Other than that I don't see any way how some one could compromise the security.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜