搜索
缓存时间13 现在时间13 缓存数据 Stay here,很是意外,方圆几里一半是认真的雪,一半是黄色枫叶。突然我想起你了,我知道你都知道,为了遇见你,我甘愿做个绅士的演员,做个深深爱过你的丑八怪,不管世上有几个你,其实,我们爱过就好。你过的好吗只是句敷衍,我终于成了别人的女人,你还要我怎样。下雨了小孩,等我回家。
查看: 316|回复: 2

Discuz系统错误,含有非法字符登录503

[复制链接]
发表于 2024-9-9 22:08:38 | 显示全部楼层 |阅读模式

马上注册,免受广告困扰,轻松兑换eSIM!

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

×
刚刚群友 @Godtokoo 反馈了无法登录的问题,一开始以为是CDN缓存导致。
结果发现是触发了discuz的xss注入检测机制xss_check和系统错误机制system_error,附上我的解决方式
首先打开 \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;
        }
然后后台清除缓存就解决了。
爱生活,爱奶昔~
发表于 2024-10-30 02:21:13 | 显示全部楼层
新版的文件是这样的
        private function _xss_check() {

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

                if(isset($_GET['formhash']) && $_GET['formhash'] !== formhash()) {
                        if(defined('CURMODULE') && constant('CURMODULE') == 'logging' && isset($_GET['action']) && $_GET['action'] == 'logout') {
                                header("HTTP/1.1 302 Found");
                                header("Location: index.php");
                                exit();
                        } else {
                                system_error('request_tainting');
                        }
                }

                if($_SERVER['REQUEST_METHOD'] == 'GET' ) {
                        $temp = $_SERVER['REQUEST_URI'];
                } elseif(empty ($_GET['formhash'])) {
                        $temp = $_SERVER['REQUEST_URI'].http_build_query($_POST);
                } 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;
        }

也可以直接替换上面的吗
爱生活,爱奶昔~
回复 支持 反对

使用道具 举报

发表于 2024-10-30 02:59:33 | 显示全部楼层
你好,想咨询一下现在奶昔用的是那套模板哈,很喜欢这种简洁风格! @Nyarime
[发帖际遇]: Dream 在论坛发帖时没有注意,被奶昔拿走了 2 点数. 幸运榜 / 衰神榜
爱生活,爱奶昔~
回复 支持 反对

使用道具 举报

Powered by Nyarime. Licensed

GMT+8, 2024-12-23 13:03 , Processed in 0.019640 second(s), 10 queries , Gzip On, Redis On
发帖际遇 ·手机版 ·小黑屋 ·RSS ·奶昔网

登录切换风格
快速回复 返回顶部 返回列表