I need to make a website that will allow registered users to upload audio files. I wonder is there any bullet proof practice regarding security. The site is built in PHP
feedback
|
|
Check mime type of uploading file
| |||
|
feedback
|
|
You will want to check the file type carefully. This means not just doing a substring on the file name to get the extension. The extension is not a concrete indicator of what the file actually is. As Danzan said, you will want to check the MIME type of the file, using some code like this:
This reduces the chances of a user uploading, say, malicious PHP code into your upload directory to basically zero. | |||
|
feedback
|
|
Bullet-proof file type check is provided via combination of getimagesize, fileinfo extension and mime_content_type function (Nette Framework property):
You can not trust any data coming from the client, because they can be easily forged. | |||||
feedback
|
|
You can upload anything with PHP. Here's an example: http://www.tizag.com/phpT/fileupload.php Regarding security, you have to verify that only certain people are allowed to upload stuff and that you verify the contents of what they're uploading (file size, file type, etc). | |||
|
feedback
|