關(guān)于Discuz!中“您當(dāng)前的訪問請(qǐng)求當(dāng)中含有非法字符,已經(jīng)被系統(tǒng)拒絕”的問題,在添加或更新文章的時(shí)候經(jīng)常出現(xiàn),經(jīng)測(cè)試發(fā)現(xiàn)出現(xiàn)這種情況更多的在使用工具(如火車頭采集器)批量發(fā)布文章時(shí)出現(xiàn),仔細(xì)分析發(fā)現(xiàn),當(dāng)發(fā)布的正文內(nèi)容出現(xiàn)特殊符號(hào)(&,/,<,>等)時(shí)出現(xiàn)這樣的錯(cuò)誤提示。
出現(xiàn)這樣的錯(cuò)誤主要是因?yàn)镈iscuz!系統(tǒng)的_xss_check()函數(shù)原本的意義是為了論壇安全,防止XSS攻擊,一般網(wǎng)站使用是不會(huì)出現(xiàn)什么問題的,但是有些網(wǎng)站要接入第三方接口,當(dāng)?shù)谌浇涌谙虮菊緋ost數(shù)據(jù)的時(shí)候就會(huì)報(bào)”您當(dāng)前的訪問請(qǐng)求當(dāng)中含有非法字符,已經(jīng)被系統(tǒng)拒絕”,本文介紹一種簡(jiǎn)單的修改方法避免此錯(cuò)誤。
解決方案如下:
\source\class\discuz的discuz_application.php
查找如下代碼(在360行左右),并替換
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; }