discuz出现syntax srror,unexpected end off file问题的解决方法

[复制链接]
树苗收集系 发表于 2019-11-26 22:06:12 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题
discuz打开出现 syntax srror,unexpected end off file

打开文件[color=#ff0000]\source\class\discuz\discuz_application.php[/color]修改这个文件
文件修改
[code]private function _xss_check() {
    static $check = array('"', '>', '<', '\'', '(', ')', 'CONTENT-TRANSFER-ENCODING');
    if(isset($_GET['formhash']) && $_GET['formhash'] !== formhash()) {
        system_error('request_tainting');
    }
    if($_SERVER['REQUEST_METHOD'] == 'GET' ) {
        $temp = $_SERVER['REQUEST_URI'];
    } elseif(empty ($_GET['formhash'])) {
        $temp = $_SERVER['REQUEST_URI'].file_get_contents('php://input');
    } else {
        $temp = '';
    }
    if(!empty($temp)) {
        $temp = strtoupper(urldecode(urldecode($temp)));
        foreach ($check as $str) {
            if(strpos($temp, $str) !== false) {
                system_error('request_tainting');
            }
        }
    }
    return true;
}[/code]修改为:
[code]private function _xss_check() {
    $temp = strtoupper(urldecode(urldecode($_SERVER['REQUEST_URI'])));
    if(strpos($temp, '<') !== false || strpos($temp, '"') !== false || strpos($temp, 'CONTENT-TRANSFER-ENCODING') !== false) {
        system_error('request_tainting');
    }
    return true;
}[/code]


回复

使用道具 举报

精彩评论2

我是月亮无太阳 发表于 2021-3-8 07:35:28 | 显示全部楼层
非常不错,感谢分享!
回复

使用道具 举报

红颜纷扰红尘 发表于 2022-6-18 17:04:43 | 显示全部楼层
抢楼了,前排第一次啊
回复

使用道具 举报

发布主题
推荐阅读 更多
阅读排行 更多
广告位
全国统一客服电话
400-1234-5678

24x7小时免费咨询

  • 官方在线客服

    QQ客服:小西

    点击交谈

    QQ客服:良子

    点击交谈

    QQ客服:闵月

    点击交谈
  • 安徽省合肥市高新区创新产业园

  • 手机扫码查看手机版

    手机查找资源更方便

  • 扫一扫关注官方微信

    加入官方微信群