Update Upload.php

This commit is contained in:
邹景立 2021-05-28 10:26:55 +08:00
parent eb3be52849
commit 37ad2cb16d

View File

@ -223,7 +223,7 @@ class Upload extends Controller
if (is_resource($source)) fclose($source);
$bins = hex2bin($hexs);
/* 匹配十六进制中的 <% ( ) %> 或 <? ( ) ?> 或 <script | /script> */
foreach (['<?', '<%', '<script'] as $key) if (stripos($bins, $key) !== false) return true;
foreach (['<?php ', '<% ', '<script '] as $key) if (stripos($bins, $key) !== false) return true;
return preg_match("/(3c25.*?28.*?29.*?253e)|(3c3f.*?28.*?29.*?3f3e)|(3C534352495054)|(2F5343524950543E)|(3C736372697074)|(2F7363726970743E)/is", $hexs);
}