关于Discuz!中“您当前的访问请求当中含有非法字符,已经被系统拒绝”的问题,在添加或更新文章的时候经常出现,经测试发现出现这种情况更多的在使用工具(如火车头采集器)批量发布文章时出现,仔细分析发现,当发布的正文内容出现特殊符号(&,/,<,>等)时出现这样的错误提示。
出现这样的错误主要是因为Discuz!系统的_xss_check()函数原本的意义是为了论坛安全,防止XSS攻击,一般网站使用是不会出现什么问题的,但是有些网站要接入第三方接口,当第三方接口向本站post数据的时候就会报”您当前的访问请求当中含有非法字符,已经被系统拒绝”,本文介绍一种简单的修改方法避免此错误。
解决方案如下:
\source\class\discuz的discuz_application.php
查找如下代码(在360行左右),并替换
| 
					 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22  | 
						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; }  | 
					
替换为:
| 
					 1 2 3 4 5 6 7  | 
						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; }  |