编辑/dede/media_add.php文件,搜索到以下代码,大约在第69行左右
$fullfilename = $cfg_basedir.$filename;
替换成
if (preg_match('#\.(php|pl|cgi|asp|aspx|jsp|php5|php4|php3|shtm|shtml)[^a-zA-Z0-9]+$#i', trim($filename))) { ShowMsg("你指定的文件名被系统禁止!",'javascript:;'); exit(); } $fullfilename = $cfg_basedir.$filename;
发表回复