php upload risk
hacker can upload php shells in many types like
.php like this example http://www.exploit-db.com/exploits/16058/
.php.jpg like this example http://www.exploit-db.com/exploits/17303/
and there is other ways by editing the http headers like
you can upload php file but edit the header and make the file in image type
example
$allowed = array("image/jpg","image/png","image/gif");
$file = $_FILES['file']['type'] ;
if(in_array($allowed , $file) { upload this file}
else{ not allowed msg }
here when tried to upload php file header will sent like Content-type: application/octstream
you can edit it using example tamper data in fire fox addons
and just edit contents type to Content-type: image/gif
like http://www.exploit-db.com/exploits/16181/
or you can use .htacces file if php is not alloweed
$deny = ".php|.pl|.html|.asp";
$filename = $_FILES['file']['name']
$ext = strrchr($filenae , ".");
if(preg_match("/($ext)/", $deny)){
deny msg there is php word or others
}
you can here upload .htaccess file contain this
<FilesMatch ".gif">
SetHandler application/x-httpd-php
</FilesMatch>
here you told appache server to work with this files type "gif" as php file
like this http://www.exploit-db.com/exploits/17644/
and there is many ways with this risks :)
regards