热搜词
发表于 2014-3-26 09:49:13 | 显示全部楼层 |阅读模式
修改Discuz X 开启防CC攻击后,不影响搜索引擎收录
在config_global.php文件中有如下代码:

// -------------------------  CONFIG SECURITY  -------------------------- //
$_config['security']['authkey'] = '3e1e5cWE0YXwaKRt';
$_config['security']['urlxssdefend'] = 1;
$_config['security']['attackevasive'] = '0';


可以设置的值有:
        0表示关闭此功能
        1表示cookie刷新限制
        2表示限制代理访问
        4表示二次请求
        8表示回答问题(第一次访问时需要回答问题)


同时也可以设置为组合的方式,如1|2表示同时启用cookie刷新限制和限制代理访问。

在source/include/misc/misc_security.php文件中可以找到如下代码(默认第46~50行)
if($attackevasive & 4) {
        if(empty($lastrequest) || TIMESTAMP - $lastrequest > 300) {
                securitymessage('attackevasive_4_subject', 'attackevasive_4_message');
        }
}


修改为:
if($attackevasive & 4) {
        if(empty($lastrequest) || TIMESTAMP - $lastrequest > 300) {
        $kw_spiders        = 'Bot|Crawl|Spider';
                        // keywords regular expression of search engine spiders
        if(preg_match("/($kw_spiders)/i", $_SERVER['HTTP_USER_AGENT'])) {
                        // match search engine spiders
        }else{
                securitymessage('attackevasive_4_subject', 'attackevasive_4_message');
        }
}



全部评论0
回复
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|Archiver|手机版|小黑屋|管理员之家 ( 苏ICP备2023053177号-2 )

GMT+8, 2024-12-23 05:44 , Processed in 0.207321 second(s), 22 queries .

Powered by Discuz! X3.5

Cpoyright © 2001-2024 Discuz! Team