Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[求助] 退出清理痕迹出现问题

[复制链接]
xiuse 发表于 2013-11-23 09:30:32 | 显示全部楼层 |阅读模式
登陆后一退出登陆,点击清除痕迹的话就会出现上图BUG






本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
ifre 发表于 2013-11-23 10:22:29 | 显示全部楼层
昨天官网升级了补丁好像也木有解决这个问题.
现在退出登录还是会报错的.官网就这样!
回复

使用道具 举报

小林在线 发表于 2013-11-23 10:36:03 | 显示全部楼层
131122   source\class\discuz\discuz_application.php    private function _xss_check()

350行左右
  1. private function _xss_check() {

  2. static $check = array('"', '>', '<', '\'', '(', ')', 'CONTENT-TRANSFER-ENCODING');

  3. if(isset($_GET['formhash']) && $_GET['formhash'] !== formhash()) {
  4. system_error('request_tainting');
  5. }

  6. if($_SERVER['REQUEST_METHOD'] == 'GET' ) {
  7. $temp = $_SERVER['REQUEST_URI'];
  8. } elseif(empty ($_GET['formhash'])) {
  9. $temp = $_SERVER['REQUEST_URI'].file_get_contents('php://input');
  10. } else {
  11. $temp = '';
  12. }

  13. if(!empty($temp)) {
  14. $temp = strtoupper(urldecode(urldecode($temp)));
  15. foreach ($check as $str) {
  16. if(strpos($temp, $str) !== false) {
  17. system_error('request_tainting');
  18. }
  19. }
  20. }

  21. return true;
  22. }
复制代码


131011   source\class\discuz\iscuz_application.php    private function _xss_check()

350行左右
  1. private function _xss_check() {
  2. $temp = strtoupper(urldecode(urldecode($_SERVER['REQUEST_URI'])));
  3. if(strpos($temp, '<') !== false || strpos($temp, '"') !== false || strpos($temp, 'CONTENT-TRANSFER-ENCODING') !== false) {
  4. system_error('request_tainting');
  5. }
  6. return true;
  7. }
复制代码

暂时修改回去就ok了


来自潮儿布童(孩儿帮)论坛的临时处理方案:http://bbs.chaoerbutong.com





回复

使用道具 举报

┾音乐_新秀 发表于 2013-11-24 13:24:12 | 显示全部楼层
小林在线 发表于 2013-11-23 10:36
131122   source\class\discuz\discuz_application.php    private function _xss_check()

350行左右

试了不行,要把你把改好的文件让我们下载吧
回复

使用道具 举报

seess 发表于 2013-11-24 14:08:17 | 显示全部楼层
\source\class\discuz的discuz_application.php
查找
        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;
        }


替换为:
        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;
        }
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-16 11:27 , Processed in 0.051060 second(s), 4 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表