tags:

views:

69

answers:

2

Is multiple upload secure in php? How can I prevent security holes? Thanks in advance

+3  A: 

Here is a good manual to how to protect uploaded files using php including protection from GIF images exploit.

antyrat
I have found this link too:http://www.mysql-apache-php.com/fileupload-security.htm
phpExe
+1  A: 

If your really paranoid you can re-create the image after upload (with imageMagick for example) and save the newly created image on the server. Then it will definitely be secure.

YuriKolovsky