您的位置 首页 资源分享

kangle 智能0误封防CC攻击设置教程,防御一切CC攻击

首先进去3311后台,不用说了吧。
进入请求控制
点击插入,选择标记模块anti_cc,勾选white list(白名单)、fix_url(地址栏显示优化)、skip_cache(忽略高速缓存)

注:防护攻击模块没有黑名单,不存在任何误封行为。

下面这段使用的是js 200跳转防护模式,现在效果还是不错的

  1. HTTP/1.1 200 OK
  2. Content-Type: text/html; charset=utf-8
  3. Connection: keep-alive
  4. Cache-Control: no-cache,no-store
  5. Recaptcha: sakura
  6. <html><body><script language=”javascript”>window.location=”{{url}}”;</script><a href=”{{url}}”><div class=”notice”>
  7. <div class=”title”>You have verified successfully</div>
  8. <div class=”description”>Please wait, you are being redirected …</div>
  9. </div></a></body></html>

根据按照图上设置,10秒内8次请求启用CC防护,能完美防护大量常见CC模式,(如果因为攻击太小,有漏的就启用0 0模式,完美0漏CC验证),并且不会出现网址上带一串链接的情况,上面规则已经测试非常好用了。

原地址:https://bbs.itzmx.com/thread-7047-1-1.html

kangle cc防护 点击继续访问,一个美化css的界面

  1. HTTP/1.1 200 OK
  2. Content-Type: text/html; charset=utf-8
  3. Connection: keep-alive
  4. Cache-Control: no-cache,no-store
  5. Recaptcha: sakura
  6. <!DOCTYPE html>
  7. <meta charset=”utf-8″>
  8. <style>
  9. body,h1,h2,h3,h4,p,form,ol,ul{margin:0;}
  10. ol,ul{padding:0;}
  11. body,textarea,input,option,button{font:1.5em “PT Serif”,\5FAE\8EDF\6B63\9ED1\9AD4,\5FAE\8F6F\96C5\9ED1,\534E\6587\7EC6\9ED1,Georgia,Times,”Times New Roman”,serif;color:#222;}
  12. h1,h2,h3,h4{font-weight:300;}
  13. textarea:focus,input:focus{outline:none;}
  14. ::selection{background:rgba(0,149,255,0.1);}
  15. ul{list-style-type:none;}
  16. a{color:#333;text-decoration:none;}
  17. html{overflow:auto;overflow-y:scroll;}
  18. img{border:0 none;width:55px;height:54px;}
  19. .o{overflow:hidden;zoom:1;}
  20. .l{float:left;}
  21. .r{float:right;}
  22. html{text-align:center;}
  23. h1{font-size:3em;padding:1em 0;}
  24. p{padding:10px 0;}
  25. .footer{padding:3em;color:#999;}
  26. </style>
  27. <title>CDN 安全防护系统</title>
  28. <script>
  29. function addZero(str,lenght){
  30. return (Array(lenght).join(0) + str).slice(-lenght);
  31. }
  32. function goto()
  33. {
  34. s1=2268322/151;
  35. s2=6585-151;s1=addZero(s1,5);s2=addZero(s2,5);se=s1+s2;
  36. location.href=”{{murl}}”;}</script><h1>CDN 安全防护系统</h1><p>该网站可能遇到CC攻击,正在对您的身份进行鉴定,单击下方按钮跳转至该网站</p><p><input type=”button” onclick=”goto();” value=”-> 继续访问 <-” /></p><div class=”footer”>&#169; CDN 安全防护系统</div><!–theme by sakura–>

复制代码

 

 

返回顶部