打開 /dede/media_add.php 找到
$fullfilename = $cfg_basedir.$filename;
大概在70行,在它上面添加
if(preg_match('#\.(php|pl|cgi|asp|aspx|jsp|php5|php4|php3|shtm|shtml)[^a-zA-Z0-9]+$#i', trim($filename)))
{
ShowMsg("你指定的文件名被系統(tǒng)禁止!",'javascript:;');
exit();
}
打開 /dede/file_class.php 找到
else if(preg_match("/\.(".$fileexp.")/i",$filename))
大概在161行
修改為:
else if(substr($filename, -strlen($fileexp))===$fileexp)
]]>