我想从浏览器窗口上传图片到服务器。
我使用此功能进行图像上传。图像由GD库上传
您对此代码有何看法?
我想知道是否仍有上传恶意文件的方法?
<?php
function imageUpload($name, $thumb = false, $max_size = 5242880, $height = null, $width = null, $T__height = 100, $T__width = 100)
{
if(!isset($_FILES[$name]))
{
return false;
}
$allowedTypes = array('image/gif', 'image/jpeg', 'image/png', 'image/wbmp');
$image = &$_FILES[$name];
if ($image['error'] == 0 && in_array($image['type'], $allowedTypes) && $image['size'] <= $max_size)
{
$in = '';
switch ($image['type'])
{
case 'image/gif':
$in = 'imagecreatefromgif';
break;
case 'image/jpeg':
$in = 'imagecreatefromjpeg';
break;
case 'image/png':
$in = 'imagecreatefrompng';
break;
case 'image/wbmp':
$in = 'imagecreatefromwbmp';
break;
}
if ($in == '')
{
return false;
}
$src = $in($image['tmp_name']);
$height = ($height == null || $height <= 0 ? imagesy($src) : $height);
$width = ($width == null || $width <= 0 ? imagesx($src) : $width);
$dst = imagecreatetruecolor($width, $height);
imagecopyresized($dst, $src, 0, 0, 0, 0, $width, $height, imagesx($src), imagesy($src));
$fileName = '';
do
{
$fileName = makeHash(mt_rand(0, mt_getrandmax()) . microtime(true), $image['tmp_name']);
}
while(file_exists('/image/' . $fileName . '.jpg') || ($thumb && file_exists('/thumb/' . $fileName . '.jpg')));
if ($fileName == '')
{
return false;
}
imagejpeg($dst, '/image/' . $fileName . '.jpg', 75);
if ($thumb)
{
$dst = imagecreatetruecolor($T__width, $T__height);
imagecopyresized($dst, $src, 0, 0, 0, 0, $T__width, $T__height, imagesx($src), imagesy($src));
imagejpeg($dst, '/thumb/' . $fileName . '.jpg', 75);
}
imagedestroy($src);
imagedestroy($dst);
return $fileName . '.jpg';
}
}
?>
答案 0 :(得分:1)
首先,任何类型的安全机制都不应该依赖mimetypes,因为攻击者可以完全控制该字段(他们可以上传一个带有图像/ gif类型的.php文件检查)。然后,如果它们在文件名%00
或\00
中包含空字节,则可以绕过将.jpg扩展添加到图像的条件,如此evil.php\00.jpg
所以到时候文件命中磁盘它只是evil.php。很难在没有看到所有功能的情况下完全评估您的代码,因为取决于他们所做的一切可能会打开漏洞。 (例如,它们不清楚存储文件的位置,调用它们的内容,加载它们等)。