[更新]修改文件上传检查

This commit is contained in:
Anyon 2019-04-17 12:33:59 +08:00
parent f9a41ea986
commit 4b60541092

View File

@ -55,7 +55,13 @@ class Plugs extends BasicAdmin
*/ */
public function upload() public function upload()
{ {
if (!session('user')) {
$this->error('只有登录后才能上传文件哦!');
}
$file = $this->request->file('file'); $file = $this->request->file('file');
if ($file->checkExt('php')) {
$this->error('可执行文件禁止上传到本地服务器!');
}
if (!$file->checkExt(strtolower(sysconf('storage_local_exts')))) { if (!$file->checkExt(strtolower(sysconf('storage_local_exts')))) {
return json(['code' => 'ERROR', 'msg' => '文件上传类型受限']); return json(['code' => 'ERROR', 'msg' => '文件上传类型受限']);
} }